vectordb-bench 0.0.12__py3-none-any.whl → 0.0.13__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (23) hide show
  1. vectordb_bench/backend/clients/__init__.py +22 -0
  2. vectordb_bench/backend/clients/api.py +21 -1
  3. vectordb_bench/backend/clients/memorydb/cli.py +88 -0
  4. vectordb_bench/backend/clients/memorydb/config.py +54 -0
  5. vectordb_bench/backend/clients/memorydb/memorydb.py +254 -0
  6. vectordb_bench/backend/clients/pgvecto_rs/cli.py +154 -0
  7. vectordb_bench/backend/clients/pgvecto_rs/config.py +108 -73
  8. vectordb_bench/backend/clients/pgvecto_rs/pgvecto_rs.py +159 -59
  9. vectordb_bench/backend/clients/pgvectorscale/config.py +111 -0
  10. vectordb_bench/backend/clients/pgvectorscale/pgvectorscale.py +272 -0
  11. vectordb_bench/cli/vectordbbench.py +5 -0
  12. vectordb_bench/frontend/components/check_results/data.py +13 -6
  13. vectordb_bench/frontend/components/run_test/caseSelector.py +10 -0
  14. vectordb_bench/frontend/components/run_test/dbConfigSetting.py +37 -15
  15. vectordb_bench/frontend/components/run_test/initStyle.py +3 -1
  16. vectordb_bench/frontend/config/dbCaseConfigs.py +173 -9
  17. vectordb_bench/models.py +18 -6
  18. {vectordb_bench-0.0.12.dist-info → vectordb_bench-0.0.13.dist-info}/METADATA +11 -3
  19. {vectordb_bench-0.0.12.dist-info → vectordb_bench-0.0.13.dist-info}/RECORD +23 -17
  20. {vectordb_bench-0.0.12.dist-info → vectordb_bench-0.0.13.dist-info}/WHEEL +1 -1
  21. {vectordb_bench-0.0.12.dist-info → vectordb_bench-0.0.13.dist-info}/LICENSE +0 -0
  22. {vectordb_bench-0.0.12.dist-info → vectordb_bench-0.0.13.dist-info}/entry_points.txt +0 -0
  23. {vectordb_bench-0.0.12.dist-info → vectordb_bench-0.0.13.dist-info}/top_level.txt +0 -0
@@ -148,6 +148,7 @@ class InputType(IntEnum):
148
148
  Text = 20001
149
149
  Number = 20002
150
150
  Option = 20003
151
+ Float = 20004
151
152
 
152
153
 
153
154
  class CaseConfigInput(BaseModel):
@@ -169,6 +170,7 @@ CaseConfigParamInput_IndexType = CaseConfigInput(
169
170
  IndexType.IVFFlat.value,
170
171
  IndexType.IVFSQ8.value,
171
172
  IndexType.DISKANN.value,
173
+ IndexType.STREAMING_DISKANN.value,
172
174
  IndexType.Flat.value,
173
175
  IndexType.AUTOINDEX.value,
174
176
  IndexType.GPU_IVF_FLAT.value,
@@ -178,6 +180,104 @@ CaseConfigParamInput_IndexType = CaseConfigInput(
178
180
  },
179
181
  )
180
182
 
183
+
184
+ CaseConfigParamInput_IndexType_PgVectorScale = CaseConfigInput(
185
+ label=CaseConfigParamType.IndexType,
186
+ inputHelp="Select Index Type",
187
+ inputType=InputType.Option,
188
+ inputConfig={
189
+ "options": [
190
+ IndexType.STREAMING_DISKANN.value,
191
+ ],
192
+ },
193
+ )
194
+
195
+
196
+ CaseConfigParamInput_storage_layout = CaseConfigInput(
197
+ label=CaseConfigParamType.storage_layout,
198
+ inputHelp="Select Storage Layout",
199
+ inputType=InputType.Option,
200
+ inputConfig={
201
+ "options": [
202
+ "memory_optimized",
203
+ "plain",
204
+ ],
205
+ },
206
+ )
207
+
208
+ CaseConfigParamInput_num_neighbors = CaseConfigInput(
209
+ label=CaseConfigParamType.num_neighbors,
210
+ inputType=InputType.Number,
211
+ inputConfig={
212
+ "min": 10,
213
+ "max": 300,
214
+ "value": 50,
215
+ },
216
+ isDisplayed=lambda config: config.get(CaseConfigParamType.IndexType, None)
217
+ == IndexType.STREAMING_DISKANN.value,
218
+ )
219
+
220
+ CaseConfigParamInput_search_list_size = CaseConfigInput(
221
+ label=CaseConfigParamType.search_list_size,
222
+ inputType=InputType.Number,
223
+ inputConfig={
224
+ "min": 10,
225
+ "max": 300,
226
+ "value": 100,
227
+ },
228
+ isDisplayed=lambda config: config.get(CaseConfigParamType.IndexType, None)
229
+ == IndexType.STREAMING_DISKANN.value,
230
+ )
231
+
232
+ CaseConfigParamInput_max_alpha = CaseConfigInput(
233
+ label=CaseConfigParamType.max_alpha,
234
+ inputType=InputType.Float,
235
+ inputConfig={
236
+ "min": 0.1,
237
+ "max": 2.0,
238
+ "value": 1.2,
239
+ },
240
+ isDisplayed=lambda config: config.get(CaseConfigParamType.IndexType, None)
241
+ == IndexType.STREAMING_DISKANN.value,
242
+ )
243
+
244
+ CaseConfigParamInput_num_dimensions = CaseConfigInput(
245
+ label=CaseConfigParamType.num_dimensions,
246
+ inputType=InputType.Number,
247
+ inputConfig={
248
+ "min": 0,
249
+ "max": 2000,
250
+ "value": 0,
251
+ },
252
+ isDisplayed=lambda config: config.get(CaseConfigParamType.IndexType, None)
253
+ == IndexType.STREAMING_DISKANN.value,
254
+ )
255
+
256
+ CaseConfigParamInput_query_search_list_size = CaseConfigInput(
257
+ label=CaseConfigParamType.query_search_list_size,
258
+ inputType=InputType.Number,
259
+ inputConfig={
260
+ "min": 50,
261
+ "max": 150,
262
+ "value": 100,
263
+ },
264
+ isDisplayed=lambda config: config.get(CaseConfigParamType.IndexType, None)
265
+ == IndexType.STREAMING_DISKANN.value,
266
+ )
267
+
268
+
269
+ CaseConfigParamInput_query_rescore = CaseConfigInput(
270
+ label=CaseConfigParamType.query_rescore,
271
+ inputType=InputType.Number,
272
+ inputConfig={
273
+ "min": 0,
274
+ "max": 150,
275
+ "value": 50,
276
+ },
277
+ isDisplayed=lambda config: config.get(CaseConfigParamType.IndexType, None)
278
+ == IndexType.STREAMING_DISKANN.value,
279
+ )
280
+
181
281
  CaseConfigParamInput_IndexType_PgVector = CaseConfigInput(
182
282
  label=CaseConfigParamType.IndexType,
183
283
  inputHelp="Select Index Type",
@@ -190,6 +290,19 @@ CaseConfigParamInput_IndexType_PgVector = CaseConfigInput(
190
290
  },
191
291
  )
192
292
 
293
+ CaseConfigParamInput_IndexType_PgVectoRS = CaseConfigInput(
294
+ label=CaseConfigParamType.IndexType,
295
+ inputHelp="Select Index Type",
296
+ inputType=InputType.Option,
297
+ inputConfig={
298
+ "options": [
299
+ IndexType.HNSW.value,
300
+ IndexType.IVFFlat.value,
301
+ IndexType.Flat.value,
302
+ ],
303
+ },
304
+ )
305
+
193
306
  CaseConfigParamInput_M = CaseConfigInput(
194
307
  label=CaseConfigParamType.M,
195
308
  inputType=InputType.Number,
@@ -272,14 +385,26 @@ CaseConfigParamInput_max_parallel_workers_PgVector = CaseConfigInput(
272
385
 
273
386
 
274
387
  CaseConfigParamInput_EFConstruction_PgVectoRS = CaseConfigInput(
275
- label=CaseConfigParamType.EFConstruction,
388
+ label=CaseConfigParamType.ef_construction,
276
389
  inputType=InputType.Number,
277
390
  inputConfig={
278
- "min": 8,
279
- "max": 512,
280
- "value": 360,
391
+ "min": 10,
392
+ "max": 2000,
393
+ "value": 300,
281
394
  },
282
- isDisplayed=lambda config: config[CaseConfigParamType.IndexType]
395
+ isDisplayed=lambda config: config.get(CaseConfigParamType.IndexType, None)
396
+ == IndexType.HNSW.value,
397
+ )
398
+
399
+ CaseConfigParamInput_EFSearch_PgVectoRS = CaseConfigInput(
400
+ label=CaseConfigParamType.ef_search,
401
+ inputType=InputType.Number,
402
+ inputConfig={
403
+ "min": 1,
404
+ "max": 65535,
405
+ "value": 100,
406
+ },
407
+ isDisplayed=lambda config: config.get(CaseConfigParamType.IndexType, None)
283
408
  == IndexType.HNSW.value,
284
409
  )
285
410
 
@@ -402,6 +527,7 @@ CaseConfigParamInput_M_PQ = CaseConfigInput(
402
527
  in [IndexType.GPU_IVF_PQ.value],
403
528
  )
404
529
 
530
+
405
531
  CaseConfigParamInput_Nbits_PQ = CaseConfigInput(
406
532
  label=CaseConfigParamType.nbits,
407
533
  inputType=InputType.Number,
@@ -598,6 +724,7 @@ CaseConfigParamInput_EFSearch_PgVector = CaseConfigInput(
598
724
  == IndexType.HNSW.value,
599
725
  )
600
726
 
727
+
601
728
  CaseConfigParamInput_QuantizationType_PgVectoRS = CaseConfigInput(
602
729
  label=CaseConfigParamType.quantizationType,
603
730
  inputType=InputType.Option,
@@ -626,6 +753,18 @@ CaseConfigParamInput_QuantizationRatio_PgVectoRS = CaseConfigInput(
626
753
  ],
627
754
  )
628
755
 
756
+ CaseConfigParamInput_max_parallel_workers_PgVectorRS = CaseConfigInput(
757
+ label=CaseConfigParamType.max_parallel_workers,
758
+ displayLabel="Max parallel workers",
759
+ inputHelp="Recommended value: (cpu cores - 1). This will set the parameters: [optimizing.optimizing_threads]",
760
+ inputType=InputType.Number,
761
+ inputConfig={
762
+ "min": 0,
763
+ "max": 1024,
764
+ "value": 16,
765
+ },
766
+ )
767
+
629
768
  CaseConfigParamInput_ZillizLevel = CaseConfigInput(
630
769
  label=CaseConfigParamType.level,
631
770
  inputType=InputType.Number,
@@ -707,28 +846,49 @@ PgVectorPerformanceConfig = [
707
846
  ]
708
847
 
709
848
  PgVectoRSLoadingConfig = [
710
- CaseConfigParamInput_IndexType,
711
- CaseConfigParamInput_M,
849
+ CaseConfigParamInput_IndexType_PgVectoRS,
850
+ CaseConfigParamInput_m,
712
851
  CaseConfigParamInput_EFConstruction_PgVectoRS,
713
852
  CaseConfigParamInput_Nlist,
714
853
  CaseConfigParamInput_QuantizationType_PgVectoRS,
715
854
  CaseConfigParamInput_QuantizationRatio_PgVectoRS,
855
+ CaseConfigParamInput_max_parallel_workers_PgVectorRS,
716
856
  ]
717
857
 
718
858
  PgVectoRSPerformanceConfig = [
719
- CaseConfigParamInput_IndexType,
720
- CaseConfigParamInput_M,
859
+ CaseConfigParamInput_IndexType_PgVectoRS,
860
+ CaseConfigParamInput_m,
721
861
  CaseConfigParamInput_EFConstruction_PgVectoRS,
862
+ CaseConfigParamInput_EFSearch_PgVectoRS,
722
863
  CaseConfigParamInput_Nlist,
723
864
  CaseConfigParamInput_Nprobe,
724
865
  CaseConfigParamInput_QuantizationType_PgVectoRS,
725
866
  CaseConfigParamInput_QuantizationRatio_PgVectoRS,
867
+ CaseConfigParamInput_max_parallel_workers_PgVectorRS,
726
868
  ]
727
869
 
728
870
  ZillizCloudPerformanceConfig = [
729
871
  CaseConfigParamInput_ZillizLevel,
730
872
  ]
731
873
 
874
+ PgVectorScaleLoadingConfig = [
875
+ CaseConfigParamInput_IndexType_PgVectorScale,
876
+ CaseConfigParamInput_num_neighbors,
877
+ CaseConfigParamInput_storage_layout,
878
+ CaseConfigParamInput_search_list_size,
879
+ CaseConfigParamInput_max_alpha,
880
+ ]
881
+
882
+ PgVectorScalePerformanceConfig = [
883
+ CaseConfigParamInput_IndexType_PgVectorScale,
884
+ CaseConfigParamInput_num_neighbors,
885
+ CaseConfigParamInput_storage_layout,
886
+ CaseConfigParamInput_search_list_size,
887
+ CaseConfigParamInput_max_alpha,
888
+ CaseConfigParamInput_query_rescore,
889
+ CaseConfigParamInput_query_search_list_size,
890
+ ]
891
+
732
892
  CASE_CONFIG_MAP = {
733
893
  DB.Milvus: {
734
894
  CaseLabel.Load: MilvusLoadConfig,
@@ -753,4 +913,8 @@ CASE_CONFIG_MAP = {
753
913
  CaseLabel.Load: PgVectoRSLoadingConfig,
754
914
  CaseLabel.Performance: PgVectoRSPerformanceConfig,
755
915
  },
916
+ DB.PgVectorScale: {
917
+ CaseLabel.Load: PgVectorScaleLoadingConfig,
918
+ CaseLabel.Performance: PgVectorScalePerformanceConfig,
919
+ },
756
920
  }
vectordb_bench/models.py CHANGED
@@ -2,7 +2,7 @@ import logging
2
2
  import pathlib
3
3
  from datetime import date
4
4
  from enum import Enum, StrEnum, auto
5
- from typing import List, Self, Sequence, Set
5
+ from typing import List, Self
6
6
 
7
7
  import ujson
8
8
 
@@ -10,7 +10,6 @@ from .backend.clients import (
10
10
  DB,
11
11
  DBConfig,
12
12
  DBCaseConfig,
13
- IndexType,
14
13
  )
15
14
  from .backend.cases import CaseType
16
15
  from .base import BaseModel
@@ -46,8 +45,8 @@ class CaseConfigParamType(Enum):
46
45
  numCandidates = "num_candidates"
47
46
  lists = "lists"
48
47
  probes = "probes"
49
- quantizationType = "quantizationType"
50
- quantizationRatio = "quantizationRatio"
48
+ quantizationType = "quantization_type"
49
+ quantizationRatio = "quantization_ratio"
51
50
  m = "m"
52
51
  nbits = "nbits"
53
52
  intermediate_graph_degree = "intermediate_graph_degree"
@@ -63,6 +62,14 @@ class CaseConfigParamType(Enum):
63
62
  level = "level"
64
63
  maintenance_work_mem = "maintenance_work_mem"
65
64
  max_parallel_workers = "max_parallel_workers"
65
+ storage_layout = "storage_layout"
66
+ num_neighbors = "num_neighbors"
67
+ search_list_size = "search_list_size"
68
+ max_alpha = "max_alpha"
69
+ num_dimensions = "num_dimensions"
70
+ num_bits_per_dimension = "num_bits_per_dimension"
71
+ query_search_list_size = "query_search_list_size"
72
+ query_rescore = "query_rescore"
66
73
 
67
74
 
68
75
  class CustomizedCase(BaseModel):
@@ -128,9 +135,14 @@ class TaskConfig(BaseModel):
128
135
 
129
136
  @property
130
137
  def db_name(self):
131
- db = self.db.value
138
+ db_name = f"{self.db.value}"
132
139
  db_label = self.db_config.db_label
133
- return f"{db}-{db_label}" if db_label else db
140
+ if db_label:
141
+ db_name += f"-{db_label}"
142
+ version = self.db_config.version
143
+ if version:
144
+ db_name += f"-{version}"
145
+ return db_name
134
146
 
135
147
 
136
148
  class ResultLabel(Enum):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: vectordb-bench
3
- Version: 0.0.12
3
+ Version: 0.0.13
4
4
  Summary: VectorDBBench is not just an offering of benchmark results for mainstream vector databases and cloud services, it's your go-to tool for the ultimate performance and cost-effectiveness comparison. Designed with ease-of-use in mind, VectorDBBench is devised to help users, even non-professionals, reproduce results or test new systems, making the hunt for the optimal choice amongst a plethora of cloud services and open-source vector databases a breeze.
5
5
  Author-email: XuanYang-cn <xuan.yang@zilliz.com>
6
6
  Project-URL: repository, https://github.com/zilliztech/VectorDBBench
@@ -33,10 +33,10 @@ Requires-Dist: pinecone-client ; extra == 'all'
33
33
  Requires-Dist: weaviate-client ; extra == 'all'
34
34
  Requires-Dist: elasticsearch ; extra == 'all'
35
35
  Requires-Dist: pgvector ; extra == 'all'
36
+ Requires-Dist: pgvecto-rs[psycopg3] >=0.2.1 ; extra == 'all'
36
37
  Requires-Dist: sqlalchemy ; extra == 'all'
37
38
  Requires-Dist: redis ; extra == 'all'
38
39
  Requires-Dist: chromadb ; extra == 'all'
39
- Requires-Dist: psycopg2 ; extra == 'all'
40
40
  Requires-Dist: psycopg ; extra == 'all'
41
41
  Requires-Dist: psycopg-binary ; extra == 'all'
42
42
  Requires-Dist: opensearch-dsl ==2.1.0 ; extra == 'all'
@@ -47,12 +47,18 @@ Provides-Extra: chromadb
47
47
  Requires-Dist: chromadb ; extra == 'chromadb'
48
48
  Provides-Extra: elastic
49
49
  Requires-Dist: elasticsearch ; extra == 'elastic'
50
+ Provides-Extra: memorydb
51
+ Requires-Dist: memorydb ; extra == 'memorydb'
50
52
  Provides-Extra: pgvecto_rs
51
- Requires-Dist: psycopg2 ; extra == 'pgvecto_rs'
53
+ Requires-Dist: pgvecto-rs[psycopg3] >=0.2.1 ; extra == 'pgvecto_rs'
52
54
  Provides-Extra: pgvector
53
55
  Requires-Dist: psycopg ; extra == 'pgvector'
54
56
  Requires-Dist: psycopg-binary ; extra == 'pgvector'
55
57
  Requires-Dist: pgvector ; extra == 'pgvector'
58
+ Provides-Extra: pgvectorscale
59
+ Requires-Dist: psycopg ; extra == 'pgvectorscale'
60
+ Requires-Dist: psycopg-binary ; extra == 'pgvectorscale'
61
+ Requires-Dist: pgvector ; extra == 'pgvectorscale'
56
62
  Provides-Extra: pinecone
57
63
  Requires-Dist: pinecone-client ; extra == 'pinecone'
58
64
  Provides-Extra: qdrant
@@ -105,7 +111,9 @@ All the database client supported
105
111
  | elastic | `pip install vectordb-bench[elastic]` |
106
112
  | pgvector | `pip install vectordb-bench[pgvector]` |
107
113
  | pgvecto.rs | `pip install vectordb-bench[pgvecto_rs]` |
114
+ | pgvectorscale | `pip install vectordb-bench[pgvectorscale]` |
108
115
  | redis | `pip install vectordb-bench[redis]` |
116
+ | memorydb | `pip install vectordb-bench[memorydb]` |
109
117
  | chromadb | `pip install vectordb-bench[chromadb]` |
110
118
  | awsopensearch | `pip install vectordb-bench[awsopensearch]` |
111
119
 
@@ -4,7 +4,7 @@ vectordb_bench/base.py,sha256=d34WCGXZI1u5RGQtqrPHd3HbOF5AmioFrM2j30Aj1sY,130
4
4
  vectordb_bench/interface.py,sha256=ZT3pseyq--TuxtopdP2hRut-6vIInKo62pvAl2zBD10,9708
5
5
  vectordb_bench/log_util.py,sha256=nMnW-sN24WyURcI07t-WA3q2N5R-YIvFgboRsSrNJDg,2906
6
6
  vectordb_bench/metric.py,sha256=osb58NvGGmqs3EKTfFujO7Qq5fAhGO9AOkCsziKgEUs,1976
7
- vectordb_bench/models.py,sha256=4gYab91Kt5S-fzB6sw_ZCcNUZDETD5RjNb1axIic_ys,9794
7
+ vectordb_bench/models.py,sha256=kY3QZ-e13vK5ctq08N9wdfSGo239TGDMLGvrf9bwwdk,10228
8
8
  vectordb_bench/backend/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
9
  vectordb_bench/backend/assembler.py,sha256=mmoLzWXFSlrpWvaVY41wiRNWNv2IR-LzlANX55MJbYI,2028
10
10
  vectordb_bench/backend/cases.py,sha256=lQ9jgKaJGunj-mJXR3cgGt16wCsrDrvs-GS3ycTDk0U,16169
@@ -13,8 +13,8 @@ vectordb_bench/backend/dataset.py,sha256=WHHNDIOrO6eyU3LsW4SxDeZT-_u0dMFwKigNB5k
13
13
  vectordb_bench/backend/result_collector.py,sha256=jdQf5-q1z5y07SKy9Sig1wFROmm-p9x_Y81fId0sjaU,807
14
14
  vectordb_bench/backend/task_runner.py,sha256=Y1HYWvWlIo_4pe0EMLuAN8bWj2xhqfbw59afbCmZeAI,11855
15
15
  vectordb_bench/backend/utils.py,sha256=2UixYyfKvl8zRiashywB1l6hTI3jMtiZhiVm_bXHV1Y,1811
16
- vectordb_bench/backend/clients/__init__.py,sha256=sD7Q-T8xhn-TTEZ0rVIrT-Bw6kL-gFsArO8UleoDkgA,5071
17
- vectordb_bench/backend/clients/api.py,sha256=YQlvABf8KfXcDpJzFglQKmFN3zmJuFKG4ihabxYIrDU,5634
16
+ vectordb_bench/backend/clients/__init__.py,sha256=fhnFwPeypU15-HIjYlJaQWAEEiVauZFMceAXnsPLktU,5847
17
+ vectordb_bench/backend/clients/api.py,sha256=ERucloTZu1LFtI150jCsiBfv4eXRRJCC1GYEHcC_Zv4,6128
18
18
  vectordb_bench/backend/clients/aws_opensearch/aws_opensearch.py,sha256=BOPJajcYUjPFjztV2lY1UI-uIoxn94OG-P2eCRcESh8,5687
19
19
  vectordb_bench/backend/clients/aws_opensearch/cli.py,sha256=v1bGoovgokhIGN5tZwb_MrP4af7BfXYQaOpDuy0Ibh0,1327
20
20
  vectordb_bench/backend/clients/aws_opensearch/config.py,sha256=aknkmZDC5Rye8hLDMX-6sKINn6uEL9o4iSKCwFxlSyM,1605
@@ -23,14 +23,20 @@ vectordb_bench/backend/clients/chroma/chroma.py,sha256=Rg-GVWSDLdw32XfltJQlS3JHt
23
23
  vectordb_bench/backend/clients/chroma/config.py,sha256=7Tp_di0cdBsh4kX-IijTLsmFK2JJpcrXP2K6e24OUGc,345
24
24
  vectordb_bench/backend/clients/elastic_cloud/config.py,sha256=xkaBNtsayByelVLda8LiSEwxjQjESpijJ8IFOh03f_0,1598
25
25
  vectordb_bench/backend/clients/elastic_cloud/elastic_cloud.py,sha256=rWHthqGEpYwwka-0bsjyWfCwTAsYKNPvB17qe0Z1VDQ,5709
26
+ vectordb_bench/backend/clients/memorydb/cli.py,sha256=BqU5s1CnLCXeHnSOEpQBON8wWMngeLjvnf9-UQqU9cU,2624
27
+ vectordb_bench/backend/clients/memorydb/config.py,sha256=PjhLMMr_LdJ8O91JpHNCCT6HMEGLwH9r_erUMGJEVaI,1501
28
+ vectordb_bench/backend/clients/memorydb/memorydb.py,sha256=XIqtXpY-2lJohIuImFDsRO3c_upn04eCplIOlaLxFo4,10114
26
29
  vectordb_bench/backend/clients/milvus/cli.py,sha256=QqzYIOeUSXEvdLH0_YUMhwDHUDJirTNKeUxrJQIqSdw,8506
27
30
  vectordb_bench/backend/clients/milvus/config.py,sha256=AZ4QHoufRIjsX2eVrtnug8SeYnuHeBMna_34OQNFxz0,6847
28
31
  vectordb_bench/backend/clients/milvus/milvus.py,sha256=BzOySmlYCQnNScazK9XBjKPh3X99jZSm0W3-IigRAYY,7653
29
- vectordb_bench/backend/clients/pgvecto_rs/config.py,sha256=scdEXN6RT4yGA5j8fXSAooAvB550WQQ1JnN7SBQCUZM,3648
30
- vectordb_bench/backend/clients/pgvecto_rs/pgvecto_rs.py,sha256=Od9g1wIhgslXBavEwCV8-LYsclqOJB3OwpeU6ZA265k,6195
32
+ vectordb_bench/backend/clients/pgvecto_rs/cli.py,sha256=OI-l3LfthysqaybEmaFwbVcrFKCnG0Hok6A-dOSXIlY,4717
33
+ vectordb_bench/backend/clients/pgvecto_rs/config.py,sha256=FsqNYtx4ILE0TDDOAidJYWK0g197Gf80rAf9Ksp2qNY,4819
34
+ vectordb_bench/backend/clients/pgvecto_rs/pgvecto_rs.py,sha256=0-mICBbfs4LxY5bKnxNhOr0HiS0cXfGq_orBhqfEYIc,9921
31
35
  vectordb_bench/backend/clients/pgvector/cli.py,sha256=4fDweywfb57dzf0HzQuNk_2Xutjo_XKi91mHIuYOBQM,3582
32
36
  vectordb_bench/backend/clients/pgvector/config.py,sha256=jbSPXd2SiFTwuRzEzN_c7oShtb2Fz-hy2VM5lI-bIGw,7202
33
37
  vectordb_bench/backend/clients/pgvector/pgvector.py,sha256=FtCvhjAr8kYnLLyBLHy3jLuMYH14dSJo3zUt6_mT6T0,12500
38
+ vectordb_bench/backend/clients/pgvectorscale/config.py,sha256=Rml0khQLedECSFR8O6VTWYPoLa2qGTTf8Id_0HaCvEU,3204
39
+ vectordb_bench/backend/clients/pgvectorscale/pgvectorscale.py,sha256=CE2E_6ARmX6AJW-10DVkhTrLCMC9PO5c54pGNFefdto,9635
34
40
  vectordb_bench/backend/clients/pinecone/config.py,sha256=4WvMu-9zxgoGfP5GPb7hpW-PRYEORADhlQvMa8JJh8k,384
35
41
  vectordb_bench/backend/clients/pinecone/pinecone.py,sha256=U31QbXLuTcNPp7PK24glE6LM23-YpbxK_Kj-NmEwoZY,4078
36
42
  vectordb_bench/backend/clients/qdrant_cloud/config.py,sha256=jk6gLcjZnjV0kQlc4RrrcXyekF6qkwzgWOYD3Mm8AOU,1385
@@ -52,13 +58,13 @@ vectordb_bench/backend/runner/mp_runner.py,sha256=FWhCU6y97cxbJSSBfHWcif7t4ew6SO
52
58
  vectordb_bench/backend/runner/serial_runner.py,sha256=ku1Dtps9JcmwCwZq7eDw0pcP9IN2Zjjg-1VJumXYJpA,9414
53
59
  vectordb_bench/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
54
60
  vectordb_bench/cli/cli.py,sha256=M6LE3hqmnt7QYrhm2KU2-kFQRpRp86GwkKXHc-XLeHo,10850
55
- vectordb_bench/cli/vectordbbench.py,sha256=-C5HwhpPzHLskPJjRGCuOnuZzthFxwdDWy2YAxAPtCY,648
61
+ vectordb_bench/cli/vectordbbench.py,sha256=r7Kr5gNh796VbPzBNmialub3lPQ5aYf5k2gIiajOW-o,868
56
62
  vectordb_bench/config-files/sample_config.yml,sha256=yw9ZgHczNi9PedNuTVxZKiOTI6AVoQS1h8INNgoDjPk,340
57
63
  vectordb_bench/custom/custom_case.json,sha256=uKo7NJgXDPPLtf_V6y1uc5w1aIcjLp-GCJEYOCty1As,475
58
64
  vectordb_bench/frontend/utils.py,sha256=jCyfk0QyLl3RLh-1MBRbBy6aep9hO32ScJCDYA2kaZU,489
59
65
  vectordb_bench/frontend/vdb_benchmark.py,sha256=TQqpx111ac2ofuMakfDhNhX2zgFSyFY_IrrIi0H8E7s,1658
60
66
  vectordb_bench/frontend/components/check_results/charts.py,sha256=VDQSmfWxjE80w4DA_KXpDhRsPzK8qOPeR7Krvn0mNMI,5122
61
- vectordb_bench/frontend/components/check_results/data.py,sha256=FG7CYvx_4iKCL1VV4WITskzHhKeNwrukgyTwrD_c6FA,3353
67
+ vectordb_bench/frontend/components/check_results/data.py,sha256=opbDpCtqdCJqZetz6U48bNwO0Uxu4qMsatvK-zzKSFg,3546
62
68
  vectordb_bench/frontend/components/check_results/expanderStyle.py,sha256=XLnJlDai8A8TQhr2iYQpZXIB31YUrrjrmFvLFHT5uOg,1299
63
69
  vectordb_bench/frontend/components/check_results/filters.py,sha256=oJNBLsx4q9tP2-PdsYqZnZTHTBAmrVgV-VWV_mMF5GA,4479
64
70
  vectordb_bench/frontend/components/check_results/footer.py,sha256=Nh1RzorDg-8R5ewp_UGFnUqWaAEZ7xZ1RpqHDew1mGY,395
@@ -73,15 +79,15 @@ vectordb_bench/frontend/components/custom/getCustomConfig.py,sha256=P0WCMla2hmze
73
79
  vectordb_bench/frontend/components/custom/initStyle.py,sha256=J9aLRHM1hjfgsguxs2b8a5vKtLyEmTMzY0m6M895AMU,433
74
80
  vectordb_bench/frontend/components/get_results/saveAsImage.py,sha256=MdQCqjrX5rQyK34XfTkVykVLOcOouIz4enMR1P5GBiY,1457
75
81
  vectordb_bench/frontend/components/run_test/autoRefresh.py,sha256=mjIa43VQQmNjYPkEbOtKNlJ1UfGPcqRKvc2Jh4kx8U0,289
76
- vectordb_bench/frontend/components/run_test/caseSelector.py,sha256=b86Y3AMSrlJuFE-Z0cS22HpTbKlfYZf8CV705ciNJFs,4551
77
- vectordb_bench/frontend/components/run_test/dbConfigSetting.py,sha256=eApLpV_E5nmRuj2nJxL-QWHevSswyOpB4ZUlAOwd0oE,1928
82
+ vectordb_bench/frontend/components/run_test/caseSelector.py,sha256=1ffpLcc5JjNJup4oUyTG9XZAy5nogkbCtPskSiplhjY,5118
83
+ vectordb_bench/frontend/components/run_test/dbConfigSetting.py,sha256=xblWegGPcpDoPUWmu1ocen2J6o6AS11IM8yVxZBk-Fs,2678
78
84
  vectordb_bench/frontend/components/run_test/dbSelector.py,sha256=61eAW3a4RdEEwF4qNxlfb2FLZMfGFO683f3XDVMSNxY,1128
79
85
  vectordb_bench/frontend/components/run_test/generateTasks.py,sha256=52hlpyB2_Sz3kygWc5jV-jfGBvXhUQh0as18t-pkGmw,773
80
86
  vectordb_bench/frontend/components/run_test/hideSidebar.py,sha256=vb5kzIMmbMqWX67qFEHek21X4sGO_tPyn_uPqUEtp3Q,234
81
- vectordb_bench/frontend/components/run_test/initStyle.py,sha256=J4slnZNyuAT00u0Ic5O64TdV4RfH_rAiwpWed7Jrhes,516
87
+ vectordb_bench/frontend/components/run_test/initStyle.py,sha256=osPUgfFfH7rRlVNHSMumvmZxvKWlLxmZiNqgnMiUJEU,723
82
88
  vectordb_bench/frontend/components/run_test/submitTask.py,sha256=NCEXfR3xudAncjVEvsV2iaiov5AatGObe830UI6481M,3341
83
89
  vectordb_bench/frontend/components/tables/data.py,sha256=pVG_hb4bTMLfUt10NUCJSqcFkPmnN7i9jTw9DcWizpI,1364
84
- vectordb_bench/frontend/config/dbCaseConfigs.py,sha256=TfzeQDrdZj_d7AEGYdb6VaE8vaCgzlpIgB6qIgwN45Q,21452
90
+ vectordb_bench/frontend/config/dbCaseConfigs.py,sha256=zaw_Yl4UW1VUVO0cZseFytIF89wD8hP5FDyd8RergDw,26129
85
91
  vectordb_bench/frontend/config/dbPrices.py,sha256=10aBKjVcEg8y7TPSda28opmBM1KmXNrvbU9WM_BsZcE,176
86
92
  vectordb_bench/frontend/config/styles.py,sha256=E2PmwmiewxBKJJ59hQ4ZXatqg8QTN-Z53JlsvWMHM2M,2291
87
93
  vectordb_bench/frontend/pages/concurrent.py,sha256=yK62Tjto8G9ObvLy0JSVLq9fqDMy_D3oAEGZw2Te4gU,1958
@@ -107,9 +113,9 @@ vectordb_bench/results/WeaviateCloud/result_20230808_standard_weaviatecloud.json
107
113
  vectordb_bench/results/ZillizCloud/result_20230727_standard_zillizcloud.json,sha256=wzrlCEsqaoy4EujDNeLebCKZIC__aXNe2NhFDEdewKo,17398
108
114
  vectordb_bench/results/ZillizCloud/result_20230808_standard_zillizcloud.json,sha256=G44g4aTJfeC0FyqosPEtaC-iy8JUX-bVpnA6dn0iiYU,14969
109
115
  vectordb_bench/results/ZillizCloud/result_20240105_standard_202401_zillizcloud.json,sha256=5R5PGJheoCOksx9uOXeSu8Z24Zc6Xp9LUkgJ-OzGAtM,41007
110
- vectordb_bench-0.0.12.dist-info/LICENSE,sha256=HXbxhrb5u5SegVzeLNF_voVgRsJMavcLaOmD1N0lZkM,1067
111
- vectordb_bench-0.0.12.dist-info/METADATA,sha256=w5ai1xAz6vVUJR_sHjMC9KxCLiQj974erhx09gXSXrU,32446
112
- vectordb_bench-0.0.12.dist-info/WHEEL,sha256=FZ75kcLy9M91ncbIgG8dnpCncbiKXSRGJ_PFILs6SFg,91
113
- vectordb_bench-0.0.12.dist-info/entry_points.txt,sha256=Qzw6gVx96ui8esG21H6yHsI6nboEohRmV424TYhQNrA,113
114
- vectordb_bench-0.0.12.dist-info/top_level.txt,sha256=jnhZFZAuKX1J60yt-XOeBZ__ctiZMvoC_s0RFq29lpM,15
115
- vectordb_bench-0.0.12.dist-info/RECORD,,
116
+ vectordb_bench-0.0.13.dist-info/LICENSE,sha256=HXbxhrb5u5SegVzeLNF_voVgRsJMavcLaOmD1N0lZkM,1067
117
+ vectordb_bench-0.0.13.dist-info/METADATA,sha256=tSYPnsfat3omhfZdy7FQG0qGUOR1PNNFg3a3wfTCPUc,32895
118
+ vectordb_bench-0.0.13.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
119
+ vectordb_bench-0.0.13.dist-info/entry_points.txt,sha256=Qzw6gVx96ui8esG21H6yHsI6nboEohRmV424TYhQNrA,113
120
+ vectordb_bench-0.0.13.dist-info/top_level.txt,sha256=jnhZFZAuKX1J60yt-XOeBZ__ctiZMvoC_s0RFq29lpM,15
121
+ vectordb_bench-0.0.13.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (71.0.1)
2
+ Generator: setuptools (72.1.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5