Skip to content

Commit 826d5d1

Browse files
committed
remove redundant ef from collection params
1 parent c816f95 commit 826d5d1

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

experiments/configurations/weaviate-single-node.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"connection_params": {
66
"timeout_config": 1000
77
},
8-
"collection_params": { "vectorIndexConfig": { "ef": 100, "efConstruction": 100, "maxConnections": 16 } },
8+
"collection_params": { "vectorIndexConfig": { "efConstruction": 100, "maxConnections": 16 } },
99
"search_params": [
1010
{ "parallel": 8, "vectorIndexConfig": { "ef": 128} }
1111
],
@@ -17,7 +17,7 @@
1717
"connection_params": {
1818
"timeout_config": 1000
1919
},
20-
"collection_params": { "vectorIndexConfig": { "ef": 100, "efConstruction": 128, "maxConnections": 16 } },
20+
"collection_params": { "vectorIndexConfig": { "efConstruction": 128, "maxConnections": 16 } },
2121
"search_params": [
2222
{ "parallel": 1, "vectorIndexConfig": { "ef": 64} }, { "parallel": 1, "vectorIndexConfig": { "ef": 128} }, { "parallel": 1, "vectorIndexConfig": { "ef": 256} }, { "parallel": 1, "vectorIndexConfig": { "ef": 512} },
2323
{ "parallel": 2, "vectorIndexConfig": { "ef": 64} }, { "parallel": 2, "vectorIndexConfig": { "ef": 128} }, { "parallel": 2, "vectorIndexConfig": { "ef": 256} }, { "parallel": 2, "vectorIndexConfig": { "ef": 512} },
@@ -33,7 +33,7 @@
3333
"connection_params": {
3434
"timeout_config": 1000
3535
},
36-
"collection_params": { "vectorIndexConfig": { "ef": 100, "efConstruction": 128, "maxConnections": 32 } },
36+
"collection_params": { "vectorIndexConfig": { "efConstruction": 128, "maxConnections": 32 } },
3737
"search_params": [
3838
{ "parallel": 1, "vectorIndexConfig": { "ef": 64} }, { "parallel": 1, "vectorIndexConfig": { "ef": 128} }, { "parallel": 1, "vectorIndexConfig": { "ef": 256} }, { "parallel": 1, "vectorIndexConfig": { "ef": 512} },
3939
{ "parallel": 2, "vectorIndexConfig": { "ef": 64} }, { "parallel": 2, "vectorIndexConfig": { "ef": 128} }, { "parallel": 2, "vectorIndexConfig": { "ef": 256} }, { "parallel": 2, "vectorIndexConfig": { "ef": 512} },
@@ -49,7 +49,7 @@
4949
"connection_params": {
5050
"timeout_config": 1000
5151
},
52-
"collection_params": { "vectorIndexConfig": { "ef": 100, "efConstruction": 256, "maxConnections": 32 } },
52+
"collection_params": { "vectorIndexConfig": { "efConstruction": 256, "maxConnections": 32 } },
5353
"search_params": [
5454
{ "parallel": 1, "vectorIndexConfig": { "ef": 64} }, { "parallel": 1, "vectorIndexConfig": { "ef": 128} }, { "parallel": 1, "vectorIndexConfig": { "ef": 256} }, { "parallel": 1, "vectorIndexConfig": { "ef": 512} },
5555
{ "parallel": 2, "vectorIndexConfig": { "ef": 64} }, { "parallel": 2, "vectorIndexConfig": { "ef": 128} }, { "parallel": 2, "vectorIndexConfig": { "ef": 256} }, { "parallel": 2, "vectorIndexConfig": { "ef": 512} },
@@ -65,7 +65,7 @@
6565
"connection_params": {
6666
"timeout_config": 1000
6767
},
68-
"collection_params": { "vectorIndexConfig": { "ef": 100, "efConstruction": 512, "maxConnections": 32 } },
68+
"collection_params": { "vectorIndexConfig": { "efConstruction": 512, "maxConnections": 32 } },
6969
"search_params": [
7070
{ "parallel": 1, "vectorIndexConfig": { "ef": 64} }, { "parallel": 1, "vectorIndexConfig": { "ef": 128} }, { "parallel": 1, "vectorIndexConfig": { "ef": 256} }, { "parallel": 1, "vectorIndexConfig": { "ef": 512} },
7171
{ "parallel": 2, "vectorIndexConfig": { "ef": 64} }, { "parallel": 2, "vectorIndexConfig": { "ef": 128} }, { "parallel": 2, "vectorIndexConfig": { "ef": 256} }, { "parallel": 2, "vectorIndexConfig": { "ef": 512} },
@@ -81,7 +81,7 @@
8181
"connection_params": {
8282
"timeout_config": 1000
8383
},
84-
"collection_params": { "vectorIndexConfig": { "ef": 100, "efConstruction": 256, "maxConnections": 64 } },
84+
"collection_params": { "vectorIndexConfig": { "efConstruction": 256, "maxConnections": 64 } },
8585
"search_params": [
8686
{ "parallel": 1, "vectorIndexConfig": { "ef": 64} }, { "parallel": 1, "vectorIndexConfig": { "ef": 128} }, { "parallel": 1, "vectorIndexConfig": { "ef": 256} }, { "parallel": 1, "vectorIndexConfig": { "ef": 512} },
8787
{ "parallel": 2, "vectorIndexConfig": { "ef": 64} }, { "parallel": 2, "vectorIndexConfig": { "ef": 128} }, { "parallel": 2, "vectorIndexConfig": { "ef": 256} }, { "parallel": 2, "vectorIndexConfig": { "ef": 512} },
@@ -97,7 +97,7 @@
9797
"connection_params": {
9898
"timeout_config": 1000
9999
},
100-
"collection_params": { "vectorIndexConfig": { "ef": 100, "efConstruction": 512, "maxConnections": 64 } },
100+
"collection_params": { "vectorIndexConfig": { "efConstruction": 512, "maxConnections": 64 } },
101101
"search_params": [
102102
{ "parallel": 1, "vectorIndexConfig": { "ef": 64} }, { "parallel": 1, "vectorIndexConfig": { "ef": 128} }, { "parallel": 1, "vectorIndexConfig": { "ef": 256} }, { "parallel": 1, "vectorIndexConfig": { "ef": 512} },
103103
{ "parallel": 2, "vectorIndexConfig": { "ef": 64} }, { "parallel": 2, "vectorIndexConfig": { "ef": 128} }, { "parallel": 2, "vectorIndexConfig": { "ef": 256} }, { "parallel": 2, "vectorIndexConfig": { "ef": 512} },
@@ -107,4 +107,4 @@
107107
],
108108
"upload_params": { "batch_size": 10000, "parallel": 1 }
109109
}
110-
]
110+
]

0 commit comments

Comments
 (0)