-
Notifications
You must be signed in to change notification settings - Fork 128
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed the ef_search default value for faiss HNSW with filters and updated the perf-tool to include Faiss HNSW tests #926
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"settings": { | ||
"index": { | ||
"knn": true, | ||
"number_of_shards": 24, | ||
"number_of_replicas": 1 | ||
} | ||
}, | ||
"mappings": { | ||
"properties": { | ||
"target_field": { | ||
"type": "knn_vector", | ||
"dimension": 128, | ||
"method": { | ||
"name": "hnsw", | ||
"space_type": "l2", | ||
"engine": "faiss", | ||
"parameters": { | ||
"ef_construction": 256, | ||
"m": 16 | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
"bool": | ||
{ | ||
"should": | ||
[ | ||
{ | ||
"range": | ||
{ | ||
"age": | ||
{ | ||
"gte": 30, | ||
"lte": 70 | ||
} | ||
} | ||
}, | ||
{ | ||
"term": | ||
{ | ||
"color": "green" | ||
} | ||
}, | ||
{ | ||
"term": | ||
{ | ||
"color": "blue" | ||
} | ||
}, | ||
{ | ||
"term": | ||
{ | ||
"color": "yellow" | ||
} | ||
}, | ||
{ | ||
"term": | ||
{ | ||
"color": "sweet" | ||
} | ||
} | ||
] | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
endpoint: [ENDPOINT] | ||
test_name: "Faiss HNSW Relaxed Filter Test" | ||
test_id: "Faiss HNSW Relaxed Filter Test" | ||
num_runs: 10 | ||
show_runs: false | ||
steps: | ||
- name: delete_index | ||
index_name: target_index | ||
- name: create_index | ||
index_name: target_index | ||
index_spec: [INDEX_SPEC_PATH]/relaxed-filter/index.json | ||
- name: ingest_multi_field | ||
index_name: target_index | ||
field_name: target_field | ||
bulk_size: 500 | ||
dataset_format: hdf5 | ||
dataset_path: [DATASET_PATH]/sift-128-euclidean-with-attr.hdf5 | ||
attributes_dataset_name: attributes | ||
attribute_spec: [ { name: 'color', type: 'str' }, { name: 'taste', type: 'str' }, { name: 'age', type: 'int' } ] | ||
- name: refresh_index | ||
index_name: target_index | ||
- name: query_with_filter | ||
k: 100 | ||
r: 1 | ||
calculate_recall: true | ||
index_name: target_index | ||
field_name: target_field | ||
dataset_format: hdf5 | ||
dataset_path: [DATASET_PATH]/sift-128-euclidean-with-attr.hdf5 | ||
neighbors_format: hdf5 | ||
neighbors_path: [DATASET_PATH]/sift-128-euclidean-with-filters.hdf5 | ||
neighbors_dataset: neighbors_filter_5 | ||
filter_spec: [INDEX_SPEC_PATH]/relaxed-filter-spec.json | ||
filter_type: FILTER |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"settings": { | ||
"index": { | ||
"knn": true, | ||
"number_of_shards": 24, | ||
"number_of_replicas": 1 | ||
} | ||
}, | ||
"mappings": { | ||
"properties": { | ||
"target_field": { | ||
"type": "knn_vector", | ||
"dimension": 128, | ||
"method": { | ||
"name": "hnsw", | ||
"space_type": "l2", | ||
"engine": "faiss", | ||
"parameters": { | ||
"ef_construction": 256, | ||
"m": 16 | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{ | ||
"bool": | ||
{ | ||
"must": | ||
[ | ||
{ | ||
"range": | ||
{ | ||
"age": | ||
{ | ||
"gte": 30, | ||
"lte": 60 | ||
} | ||
} | ||
}, | ||
{ | ||
"term": | ||
{ | ||
"taste": "bitter" | ||
} | ||
}, | ||
{ | ||
"bool": | ||
{ | ||
"should": | ||
[ | ||
{ | ||
"term": | ||
{ | ||
"color": "blue" | ||
} | ||
}, | ||
{ | ||
"term": | ||
{ | ||
"color": "green" | ||
} | ||
} | ||
] | ||
} | ||
} | ||
] | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
endpoint: [ENDPOINT] | ||
test_name: "Faiss HNSW Restrictive Filter Test" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We need to add There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. making default value as 9200 |
||
test_id: "Faiss HNSW Restrictive Filter Test" | ||
num_runs: 10 | ||
show_runs: false | ||
steps: | ||
- name: delete_index | ||
index_name: target_index | ||
- name: create_index | ||
index_name: target_index | ||
index_spec: [INDEX_SPEC_PATH]/index.json | ||
- name: ingest_multi_field | ||
index_name: target_index | ||
field_name: target_field | ||
bulk_size: 500 | ||
dataset_format: hdf5 | ||
dataset_path: [DATASET_PATH]/sift-128-euclidean-with-attr.hdf5 | ||
attributes_dataset_name: attributes | ||
attribute_spec: [ { name: 'color', type: 'str' }, { name: 'taste', type: 'str' }, { name: 'age', type: 'int' } ] | ||
- name: refresh_index | ||
index_name: target_index | ||
- name: force_merge | ||
index_name: target_index | ||
max_num_segments: 1 | ||
- name: query_with_filter | ||
k: 100 | ||
r: 1 | ||
calculate_recall: true | ||
index_name: target_index | ||
field_name: target_field | ||
dataset_format: hdf5 | ||
dataset_path: [DATASET_PATH]/sift-128-euclidean-with-attr.hdf5 | ||
neighbors_format: hdf5 | ||
neighbors_path: [DATASET_PATH]/sift-128-euclidean-with-filters.hdf5 | ||
neighbors_dataset: neighbors_filter_4 | ||
filter_spec: [INDEX_SPEC_PATH]/restrictive-filter-spec.json | ||
filter_type: FILTER |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"settings": { | ||
"index": { | ||
"knn": true, | ||
"number_of_shards": 24, | ||
"number_of_replicas": 1 | ||
} | ||
}, | ||
"mappings": { | ||
"properties": { | ||
"target_field": { | ||
"type": "knn_vector", | ||
"dimension": 128, | ||
"method": { | ||
"name": "hnsw", | ||
"space_type": "l2", | ||
"engine": "faiss", | ||
"parameters": { | ||
"ef_construction": 256, | ||
"m": 16 | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If port is configurable we need to update description of test params in benchmarks/perf-tool/README
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ack.