vectordb-bench 0.0.17__py3-none-any.whl → 0.0.19__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 (28) hide show
  1. vectordb_bench/backend/cases.py +1 -1
  2. vectordb_bench/backend/clients/__init__.py +39 -0
  3. vectordb_bench/backend/clients/aliyun_elasticsearch/aliyun_elasticsearch.py +27 -0
  4. vectordb_bench/backend/clients/aliyun_elasticsearch/config.py +19 -0
  5. vectordb_bench/backend/clients/aliyun_opensearch/aliyun_opensearch.py +304 -0
  6. vectordb_bench/backend/clients/aliyun_opensearch/config.py +48 -0
  7. vectordb_bench/backend/clients/alloydb/alloydb.py +372 -0
  8. vectordb_bench/backend/clients/alloydb/cli.py +147 -0
  9. vectordb_bench/backend/clients/alloydb/config.py +168 -0
  10. vectordb_bench/backend/clients/api.py +5 -0
  11. vectordb_bench/backend/clients/milvus/cli.py +25 -1
  12. vectordb_bench/backend/clients/milvus/config.py +16 -2
  13. vectordb_bench/backend/clients/milvus/milvus.py +4 -6
  14. vectordb_bench/backend/runner/rate_runner.py +32 -15
  15. vectordb_bench/backend/runner/read_write_runner.py +102 -36
  16. vectordb_bench/backend/runner/serial_runner.py +8 -2
  17. vectordb_bench/backend/runner/util.py +0 -16
  18. vectordb_bench/backend/task_runner.py +4 -3
  19. vectordb_bench/backend/utils.py +1 -0
  20. vectordb_bench/cli/vectordbbench.py +2 -0
  21. vectordb_bench/frontend/config/dbCaseConfigs.py +224 -0
  22. vectordb_bench/models.py +9 -0
  23. {vectordb_bench-0.0.17.dist-info → vectordb_bench-0.0.19.dist-info}/METADATA +13 -23
  24. {vectordb_bench-0.0.17.dist-info → vectordb_bench-0.0.19.dist-info}/RECORD +28 -21
  25. {vectordb_bench-0.0.17.dist-info → vectordb_bench-0.0.19.dist-info}/LICENSE +0 -0
  26. {vectordb_bench-0.0.17.dist-info → vectordb_bench-0.0.19.dist-info}/WHEEL +0 -0
  27. {vectordb_bench-0.0.17.dist-info → vectordb_bench-0.0.19.dist-info}/entry_points.txt +0 -0
  28. {vectordb_bench-0.0.17.dist-info → vectordb_bench-0.0.19.dist-info}/top_level.txt +0 -0
@@ -437,6 +437,16 @@ CaseConfigParamInput_EF_SEARCH_AWSOpensearch = CaseConfigInput(
437
437
  },
438
438
  )
439
439
 
440
+ CaseConfigParamInput_EF_SEARCH_AliyunOpensearch = CaseConfigInput(
441
+ label=CaseConfigParamType.ef_search,
442
+ inputType=InputType.Number,
443
+ inputConfig={
444
+ "min": 1,
445
+ "max": 1000000,
446
+ "value": 40,
447
+ },
448
+ )
449
+
440
450
 
441
451
  CaseConfigParamInput_maintenance_work_mem_PgVector = CaseConfigInput(
442
452
  label=CaseConfigParamType.maintenance_work_mem,
@@ -906,6 +916,170 @@ CaseConfigParamInput_reranking_metric_PgVector = CaseConfigInput(
906
916
  == "bit" and config.get(CaseConfigParamType.reranking, False)
907
917
  )
908
918
 
919
+
920
+ CaseConfigParamInput_IndexType_AlloyDB = CaseConfigInput(
921
+ label=CaseConfigParamType.IndexType,
922
+ inputHelp="Select Index Type",
923
+ inputType=InputType.Option,
924
+ inputConfig={
925
+ "options": [
926
+ IndexType.SCANN.value,
927
+ ],
928
+ },
929
+ )
930
+
931
+ CaseConfigParamInput_num_leaves_AlloyDB = CaseConfigInput(
932
+ label=CaseConfigParamType.numLeaves,
933
+ displayLabel="Num Leaves",
934
+ inputHelp="The number of partition to apply to this index",
935
+ inputType=InputType.Number,
936
+ inputConfig={
937
+ "min": 1,
938
+ "max": 1048576,
939
+ "value": 200,
940
+ },
941
+ )
942
+
943
+ CaseConfigParamInput_quantizer_AlloyDB = CaseConfigInput(
944
+ label=CaseConfigParamType.quantizer,
945
+ inputType=InputType.Option,
946
+ inputConfig={
947
+ "options": ["SQ8", "Flat"],
948
+ },
949
+ )
950
+
951
+ CaseConfigParamInput_max_num_levels_AlloyDB = CaseConfigInput(
952
+ label=CaseConfigParamType.maxNumLevels,
953
+ inputType=InputType.Option,
954
+ inputConfig={
955
+ "options": [1, 2],
956
+ },
957
+ )
958
+
959
+ CaseConfigParamInput_enable_pca_AlloyDB = CaseConfigInput(
960
+ label=CaseConfigParamType.enablePca,
961
+ inputType=InputType.Option,
962
+ inputConfig={
963
+ "options": ["on", "off"],
964
+ },
965
+ )
966
+
967
+ CaseConfigParamInput_num_leaves_to_search_AlloyDB = CaseConfigInput(
968
+ label=CaseConfigParamType.numLeavesToSearch,
969
+ displayLabel="Num leaves to search",
970
+ inputHelp="The database flag controls the trade off between recall and QPS",
971
+ inputType=InputType.Number,
972
+ inputConfig={
973
+ "min": 20,
974
+ "max": 10486,
975
+ "value": 20,
976
+ },
977
+ )
978
+
979
+ CaseConfigParamInput_max_top_neighbors_buffer_size_AlloyDB = CaseConfigInput(
980
+ label=CaseConfigParamType.maxTopNeighborsBufferSize,
981
+ displayLabel="Max top neighbors buffer size",
982
+ inputHelp="The database flag specifies the size of cache used to improve the \
983
+ performance for filtered queries by scoring or ranking the scanned candidate \
984
+ neighbors in memory instead of the disk",
985
+ inputType=InputType.Number,
986
+ inputConfig={
987
+ "min": 10000,
988
+ "max": 60000,
989
+ "value": 20000,
990
+ },
991
+ )
992
+
993
+ CaseConfigParamInput_pre_reordering_num_neighbors_AlloyDB = CaseConfigInput(
994
+ label=CaseConfigParamType.preReorderingNumNeigbors,
995
+ displayLabel="Pre reordering num neighbors",
996
+ inputHelp="Specifies the number of candidate neighbors to consider during the reordering \
997
+ stages after initial search identifies a set of candidates",
998
+ inputType=InputType.Number,
999
+ inputConfig={
1000
+ "min": 20,
1001
+ "max": 10486,
1002
+ "value": 80,
1003
+ },
1004
+ )
1005
+
1006
+ CaseConfigParamInput_num_search_threads_AlloyDB = CaseConfigInput(
1007
+ label=CaseConfigParamType.numSearchThreads,
1008
+ displayLabel="Num of searcher threads",
1009
+ inputHelp="The number of searcher threads for multi-thread search.",
1010
+ inputType=InputType.Number,
1011
+ inputConfig={
1012
+ "min": 1,
1013
+ "max": 100,
1014
+ "value": 2,
1015
+ },
1016
+ )
1017
+
1018
+ CaseConfigParamInput_max_num_prefetch_datasets_AlloyDB = CaseConfigInput(
1019
+ label=CaseConfigParamType.maxNumPrefetchDatasets,
1020
+ displayLabel="Max num prefetch datasets",
1021
+ inputHelp="The maximum number of data batches to prefetch during index search, where batch is a group of buffer pages",
1022
+ inputType=InputType.Number,
1023
+ inputConfig={
1024
+ "min": 10,
1025
+ "max": 150,
1026
+ "value": 100,
1027
+ },
1028
+ )
1029
+
1030
+ CaseConfigParamInput_maintenance_work_mem_AlloyDB = CaseConfigInput(
1031
+ label=CaseConfigParamType.maintenance_work_mem,
1032
+ inputHelp="Recommended value: 1.33x the index size, not to exceed the available free memory."
1033
+ "Specify in gigabytes. e.g. 8GB",
1034
+ inputType=InputType.Text,
1035
+ inputConfig={
1036
+ "value": "8GB",
1037
+ },
1038
+ )
1039
+
1040
+ CaseConfigParamInput_max_parallel_workers_AlloyDB = CaseConfigInput(
1041
+ label=CaseConfigParamType.max_parallel_workers,
1042
+ displayLabel="Max parallel workers",
1043
+ inputHelp="Recommended value: (cpu cores - 1). This will set the parameters: max_parallel_maintenance_workers,"
1044
+ " max_parallel_workers & table(parallel_workers)",
1045
+ inputType=InputType.Number,
1046
+ inputConfig={
1047
+ "min": 0,
1048
+ "max": 1024,
1049
+ "value": 7,
1050
+ },
1051
+ )
1052
+
1053
+ CaseConfigParamInput_EFConstruction_AliES = CaseConfigInput(
1054
+ label=CaseConfigParamType.EFConstruction,
1055
+ inputType=InputType.Number,
1056
+ inputConfig={
1057
+ "min": 8,
1058
+ "max": 512,
1059
+ "value": 360,
1060
+ },
1061
+ )
1062
+
1063
+ CaseConfigParamInput_M_AliES = CaseConfigInput(
1064
+ label=CaseConfigParamType.M,
1065
+ inputType=InputType.Number,
1066
+ inputConfig={
1067
+ "min": 4,
1068
+ "max": 64,
1069
+ "value": 30,
1070
+ },
1071
+ )
1072
+ CaseConfigParamInput_NumCandidates_AliES = CaseConfigInput(
1073
+ label=CaseConfigParamType.numCandidates,
1074
+ inputType=InputType.Number,
1075
+ inputConfig={
1076
+ "min": 1,
1077
+ "max": 10000,
1078
+ "value": 100,
1079
+ },
1080
+ )
1081
+
1082
+
909
1083
  MilvusLoadConfig = [
910
1084
  CaseConfigParamInput_IndexType,
911
1085
  CaseConfigParamInput_M,
@@ -964,6 +1138,11 @@ AWSOpenSearchPerformanceConfig = [
964
1138
  CaseConfigParamInput_EF_SEARCH_AWSOpensearch,
965
1139
  ]
966
1140
 
1141
+ AliyunOpensearchLoadingConfig = []
1142
+ AliyunOpenSearchPerformanceConfig = [
1143
+ CaseConfigParamInput_EF_SEARCH_AliyunOpensearch,
1144
+ ]
1145
+
967
1146
  PgVectorLoadingConfig = [
968
1147
  CaseConfigParamInput_IndexType_PgVector,
969
1148
  CaseConfigParamInput_Lists_PgVector,
@@ -1045,6 +1224,39 @@ PgDiskANNPerformanceConfig = [
1045
1224
  CaseConfigParamInput_l_value_is,
1046
1225
  ]
1047
1226
 
1227
+
1228
+ AlloyDBLoadConfig = [
1229
+ CaseConfigParamInput_IndexType_AlloyDB,
1230
+ CaseConfigParamInput_num_leaves_AlloyDB,
1231
+ CaseConfigParamInput_max_num_levels_AlloyDB,
1232
+ CaseConfigParamInput_enable_pca_AlloyDB,
1233
+ CaseConfigParamInput_quantizer_AlloyDB,
1234
+ CaseConfigParamInput_maintenance_work_mem_AlloyDB,
1235
+ CaseConfigParamInput_max_parallel_workers_AlloyDB,
1236
+ ]
1237
+
1238
+ AlloyDBPerformanceConfig = [
1239
+ CaseConfigParamInput_IndexType_AlloyDB,
1240
+ CaseConfigParamInput_num_leaves_AlloyDB,
1241
+ CaseConfigParamInput_max_num_levels_AlloyDB,
1242
+ CaseConfigParamInput_enable_pca_AlloyDB,
1243
+ CaseConfigParamInput_quantizer_AlloyDB,
1244
+ CaseConfigParamInput_num_search_threads_AlloyDB,
1245
+ CaseConfigParamInput_num_leaves_to_search_AlloyDB,
1246
+ CaseConfigParamInput_max_num_prefetch_datasets_AlloyDB,
1247
+ CaseConfigParamInput_max_top_neighbors_buffer_size_AlloyDB,
1248
+ CaseConfigParamInput_pre_reordering_num_neighbors_AlloyDB,
1249
+ CaseConfigParamInput_maintenance_work_mem_AlloyDB,
1250
+ CaseConfigParamInput_max_parallel_workers_AlloyDB,
1251
+ ]
1252
+
1253
+ AliyunElasticsearchLoadingConfig = [CaseConfigParamInput_EFConstruction_AliES, CaseConfigParamInput_M_AliES]
1254
+ AliyunElasticsearchPerformanceConfig = [
1255
+ CaseConfigParamInput_EFConstruction_AliES,
1256
+ CaseConfigParamInput_M_AliES,
1257
+ CaseConfigParamInput_NumCandidates_AliES,
1258
+ ]
1259
+
1048
1260
  CASE_CONFIG_MAP = {
1049
1261
  DB.Milvus: {
1050
1262
  CaseLabel.Load: MilvusLoadConfig,
@@ -1081,4 +1293,16 @@ CASE_CONFIG_MAP = {
1081
1293
  CaseLabel.Load: PgDiskANNLoadConfig,
1082
1294
  CaseLabel.Performance: PgDiskANNPerformanceConfig,
1083
1295
  },
1296
+ DB.AlloyDB: {
1297
+ CaseLabel.Load: AlloyDBLoadConfig,
1298
+ CaseLabel.Performance: AlloyDBPerformanceConfig,
1299
+ },
1300
+ DB.AliyunElasticsearch: {
1301
+ CaseLabel.Load: AliyunElasticsearchLoadingConfig,
1302
+ CaseLabel.Performance: AliyunElasticsearchPerformanceConfig,
1303
+ },
1304
+ DB.AliyunOpenSearch: {
1305
+ CaseLabel.Load: AliyunOpensearchLoadingConfig,
1306
+ CaseLabel.Performance: AliyunOpenSearchPerformanceConfig,
1307
+ },
1084
1308
  }
vectordb_bench/models.py CHANGED
@@ -76,6 +76,15 @@ class CaseConfigParamType(Enum):
76
76
  num_bits_per_dimension = "num_bits_per_dimension"
77
77
  query_search_list_size = "query_search_list_size"
78
78
  query_rescore = "query_rescore"
79
+ numLeaves = "num_leaves"
80
+ quantizer = "quantizer"
81
+ enablePca = "enable_pca"
82
+ maxNumLevels = "max_num_levels"
83
+ numLeavesToSearch = "num_leaves_to_search"
84
+ maxTopNeighborsBufferSize = "max_top_neighbors_buffer_size"
85
+ preReorderingNumNeigbors = "pre_reordering_num_neighbors"
86
+ numSearchThreads = "num_search_threads"
87
+ maxNumPrefetchDatasets = "max_num_prefetch_datasets"
79
88
 
80
89
 
81
90
  class CustomizedCase(BaseModel):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: vectordb-bench
3
- Version: 0.0.17
3
+ Version: 0.0.19
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
@@ -35,15 +35,16 @@ Requires-Dist: qdrant-client; extra == "all"
35
35
  Requires-Dist: pinecone-client; extra == "all"
36
36
  Requires-Dist: weaviate-client; extra == "all"
37
37
  Requires-Dist: elasticsearch; extra == "all"
38
- Requires-Dist: pgvector; extra == "all"
39
- Requires-Dist: pgvecto_rs[psycopg3]>=0.2.2; extra == "all"
40
38
  Requires-Dist: sqlalchemy; extra == "all"
41
39
  Requires-Dist: redis; extra == "all"
42
40
  Requires-Dist: chromadb; extra == "all"
41
+ Requires-Dist: pgvector; extra == "all"
43
42
  Requires-Dist: psycopg; extra == "all"
44
43
  Requires-Dist: psycopg-binary; extra == "all"
45
- Requires-Dist: opensearch-dsl==2.1.0; extra == "all"
46
- Requires-Dist: opensearch-py==2.6.0; extra == "all"
44
+ Requires-Dist: pgvecto_rs[psycopg3]>=0.2.2; extra == "all"
45
+ Requires-Dist: opensearch-dsl; extra == "all"
46
+ Requires-Dist: opensearch-py; extra == "all"
47
+ Requires-Dist: memorydb; extra == "all"
47
48
  Provides-Extra: qdrant
48
49
  Requires-Dist: qdrant-client; extra == "qdrant"
49
50
  Provides-Extra: pinecone
@@ -56,14 +57,6 @@ Provides-Extra: pgvector
56
57
  Requires-Dist: psycopg; extra == "pgvector"
57
58
  Requires-Dist: psycopg-binary; extra == "pgvector"
58
59
  Requires-Dist: pgvector; extra == "pgvector"
59
- Provides-Extra: pgvectorscale
60
- Requires-Dist: psycopg; extra == "pgvectorscale"
61
- Requires-Dist: psycopg-binary; extra == "pgvectorscale"
62
- Requires-Dist: pgvector; extra == "pgvectorscale"
63
- Provides-Extra: pgdiskann
64
- Requires-Dist: psycopg; extra == "pgdiskann"
65
- Requires-Dist: psycopg-binary; extra == "pgdiskann"
66
- Requires-Dist: pgvector; extra == "pgdiskann"
67
60
  Provides-Extra: pgvecto-rs
68
61
  Requires-Dist: pgvecto_rs[psycopg3]>=0.2.2; extra == "pgvecto-rs"
69
62
  Provides-Extra: redis
@@ -72,9 +65,8 @@ Provides-Extra: memorydb
72
65
  Requires-Dist: memorydb; extra == "memorydb"
73
66
  Provides-Extra: chromadb
74
67
  Requires-Dist: chromadb; extra == "chromadb"
75
- Provides-Extra: awsopensearch
76
- Requires-Dist: awsopensearch; extra == "awsopensearch"
77
- Provides-Extra: zilliz-cloud
68
+ Provides-Extra: opensearch
69
+ Requires-Dist: opensearch-py; extra == "opensearch"
78
70
 
79
71
  # VectorDBBench: A Benchmark Tool for VectorDB
80
72
 
@@ -107,20 +99,18 @@ All the database client supported
107
99
 
108
100
  | Optional database client | install command |
109
101
  |--------------------------|---------------------------------------------|
110
- | pymilvus(*default*) | `pip install vectordb-bench` |
111
- | all | `pip install vectordb-bench[all]` |
102
+ | pymilvus, zilliz_cloud (*default*) | `pip install vectordb-bench` |
103
+ | all (*clients requirements might be conflict with each other*) | `pip install vectordb-bench[all]` |
112
104
  | qdrant | `pip install vectordb-bench[qdrant]` |
113
105
  | pinecone | `pip install vectordb-bench[pinecone]` |
114
106
  | weaviate | `pip install vectordb-bench[weaviate]` |
115
- | elastic | `pip install vectordb-bench[elastic]` |
116
- | pgvector | `pip install vectordb-bench[pgvector]` |
107
+ | elastic, aliyun_elasticsearch| `pip install vectordb-bench[elastic]` |
108
+ | pgvector, pgvectorscale, pgdiskann, alloydb | `pip install vectordb-bench[pgvector]` |
117
109
  | pgvecto.rs | `pip install vectordb-bench[pgvecto_rs]` |
118
- | pgvectorscale | `pip install vectordb-bench[pgvectorscale]` |
119
- | pgdiskann | `pip install vectordb-bench[pgdiskann]` |
120
110
  | redis | `pip install vectordb-bench[redis]` |
121
111
  | memorydb | `pip install vectordb-bench[memorydb]` |
122
112
  | chromadb | `pip install vectordb-bench[chromadb]` |
123
- | awsopensearch | `pip install vectordb-bench[awsopensearch]` |
113
+ | awsopensearch | `pip install vectordb-bench[opensearch]` |
124
114
 
125
115
  ### Run
126
116
 
@@ -4,17 +4,24 @@ 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=c-LAxCtb55txnsfd3FN4gRpRif8RREhKRF0eg2JmHGc,2045
7
- vectordb_bench/models.py,sha256=jAY60QFq3Uhq0YPIQOGYBU1JspOz8D0XJEXSlEBT7cs,10645
7
+ vectordb_bench/models.py,sha256=_0_hscKUqaCHjdjyO_-ntPFgJvgU01y8aldqDcq9ELQ,11041
8
8
  vectordb_bench/backend/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
9
  vectordb_bench/backend/assembler.py,sha256=mmoLzWXFSlrpWvaVY41wiRNWNv2IR-LzlANX55MJbYI,2028
10
- vectordb_bench/backend/cases.py,sha256=lQ9jgKaJGunj-mJXR3cgGt16wCsrDrvs-GS3ycTDk0U,16169
10
+ vectordb_bench/backend/cases.py,sha256=tYAXs-8WhkXVkSfUGd5zh51IxKTojBkCgp94eU6Dbwg,16193
11
11
  vectordb_bench/backend/data_source.py,sha256=j4-eD0nIe7Y6fSM5WKEij3GfhyU_YOQ3L5Tyl-1GxX0,5446
12
12
  vectordb_bench/backend/dataset.py,sha256=MZSu0Q3AkK9gxiuLKNTMH6hhucKK668j4G1-8emhS18,8786
13
13
  vectordb_bench/backend/result_collector.py,sha256=jdQf5-q1z5y07SKy9Sig1wFROmm-p9x_Y81fId0sjaU,807
14
- vectordb_bench/backend/task_runner.py,sha256=cn_RRDyFfNSLlTT84W-ZaXvdl54pK6Cxcsp9ucNRcCs,11864
15
- vectordb_bench/backend/utils.py,sha256=2UixYyfKvl8zRiashywB1l6hTI3jMtiZhiVm_bXHV1Y,1811
16
- vectordb_bench/backend/clients/__init__.py,sha256=vl-ldJCTAm6aXUNZS4xE5M2zbiWSz9-rua_9PcOj7ZA,6277
17
- vectordb_bench/backend/clients/api.py,sha256=KGHdn8gewGm_HbsF7qfn3ibep4AoMXUzaoTjLpF98NE,6176
14
+ vectordb_bench/backend/task_runner.py,sha256=ZSWlp5JhVpKTpbKQS3vsq3e5ZtOjz_ET-m4X3Euiicg,11949
15
+ vectordb_bench/backend/utils.py,sha256=8SXcSrw7kmmzeN1cSUwXRSc1BK5dgrj98kALqbrcUNE,1854
16
+ vectordb_bench/backend/clients/__init__.py,sha256=zr3VRNDm7wy8eREMHE4W1LODCZaXhOvt1qCaKQoXyys,7763
17
+ vectordb_bench/backend/clients/api.py,sha256=5OCh_HUWQxE8KCXn9wQMc6jv1TEVnsip02-eUYFoNCo,6285
18
+ vectordb_bench/backend/clients/aliyun_elasticsearch/aliyun_elasticsearch.py,sha256=3bAMrNjhAcWXCSvoW4YT8siY30r4NWqOs9Osv7bgDpo,771
19
+ vectordb_bench/backend/clients/aliyun_elasticsearch/config.py,sha256=FeglLLFvUrjeCOE3vdB5Sg98fufk7lW1NsOHdLTWFsc,564
20
+ vectordb_bench/backend/clients/aliyun_opensearch/aliyun_opensearch.py,sha256=dWEBroRs-qm17vjUZWIrHOHrLswn6m-NzoMmY1pU9M4,12673
21
+ vectordb_bench/backend/clients/aliyun_opensearch/config.py,sha256=HvBQAENG5Rfiv6VwbvNh9AdyUXm5YTtqa6FdHyPpllc,1311
22
+ vectordb_bench/backend/clients/alloydb/alloydb.py,sha256=rAV558tyd2hX3jcl3bRcxOkeq__GSAXLxfl3MqkAVkM,13375
23
+ vectordb_bench/backend/clients/alloydb/cli.py,sha256=IoRG0A5O0JIDNpKYoFFAr1czz4QZNihUHx4d1QFA7eQ,4974
24
+ vectordb_bench/backend/clients/alloydb/config.py,sha256=JFQMHvBWG1P5T4N7B95o4tMfN4cVqb01I5TNvjDYQuw,5358
18
25
  vectordb_bench/backend/clients/aws_opensearch/aws_opensearch.py,sha256=O42OU7K7L0KcJ96AphjmgkyN7a220VLsOL0QwghY2aw,8038
19
26
  vectordb_bench/backend/clients/aws_opensearch/cli.py,sha256=v1bGoovgokhIGN5tZwb_MrP4af7BfXYQaOpDuy0Ibh0,1327
20
27
  vectordb_bench/backend/clients/aws_opensearch/config.py,sha256=USytbPX0zDjcWTg51J37vWWYsgualPcCHGfRFdzmGtg,1890
@@ -26,9 +33,9 @@ vectordb_bench/backend/clients/elastic_cloud/elastic_cloud.py,sha256=rWHthqGEpYw
26
33
  vectordb_bench/backend/clients/memorydb/cli.py,sha256=BqU5s1CnLCXeHnSOEpQBON8wWMngeLjvnf9-UQqU9cU,2624
27
34
  vectordb_bench/backend/clients/memorydb/config.py,sha256=PjhLMMr_LdJ8O91JpHNCCT6HMEGLwH9r_erUMGJEVaI,1501
28
35
  vectordb_bench/backend/clients/memorydb/memorydb.py,sha256=XIqtXpY-2lJohIuImFDsRO3c_upn04eCplIOlaLxFo4,10114
29
- vectordb_bench/backend/clients/milvus/cli.py,sha256=QqzYIOeUSXEvdLH0_YUMhwDHUDJirTNKeUxrJQIqSdw,8506
30
- vectordb_bench/backend/clients/milvus/config.py,sha256=AZ4QHoufRIjsX2eVrtnug8SeYnuHeBMna_34OQNFxz0,6847
31
- vectordb_bench/backend/clients/milvus/milvus.py,sha256=BhEkJr8ZQuiFqYd1sQYhKd8YXHS9vlaqOv36zlHI6xc,7712
36
+ vectordb_bench/backend/clients/milvus/cli.py,sha256=n3VlULuQQTxDZNN6NJJl3JRzzVfuyJ_AZphl0aoa1Wo,9690
37
+ vectordb_bench/backend/clients/milvus/config.py,sha256=sol9VCAfbrQI6FKSH2RRZh3JFreSzvkGmUVfpSnBSEw,7425
38
+ vectordb_bench/backend/clients/milvus/milvus.py,sha256=fA_A0HkVWZRiGOflmcjw6g1RzF3NDjhfhQc3vBafpEQ,7579
32
39
  vectordb_bench/backend/clients/pgdiskann/cli.py,sha256=ued1DyufltataIk6KcmBkNp8PdB9Aj65nVJ6WhrD_VI,3130
33
40
  vectordb_bench/backend/clients/pgdiskann/config.py,sha256=8E0GLgUxa5LlJ_eXCugbbO08qdbCVqc1wtdsoOsKEW4,4444
34
41
  vectordb_bench/backend/clients/pgdiskann/pgdiskann.py,sha256=bEcbpTVSFxRJ5HiJTX77cgu6NqTMPs8qiGeMF7jBC30,12628
@@ -59,13 +66,13 @@ vectordb_bench/backend/clients/zilliz_cloud/config.py,sha256=3Tk7X4r0n2SLzan110x
59
66
  vectordb_bench/backend/clients/zilliz_cloud/zilliz_cloud.py,sha256=4JcwiVEJcdEykW6n471nfHeIlmhIDa-gOZ7G5H_4krY,681
60
67
  vectordb_bench/backend/runner/__init__.py,sha256=5dZfPky8pY9Bi9HD5GZ3Fge8V2FJWrkGkQUkNL2v1t0,230
61
68
  vectordb_bench/backend/runner/mp_runner.py,sha256=sPJJWg6bKSQYsyWEe5y_j8i_Cf9l5buhtyY-wZxXDAI,9080
62
- vectordb_bench/backend/runner/rate_runner.py,sha256=qLfirLmS9tR0-3jljaWD_AMw_gt6nwhAVVkxhoo4F4A,3195
63
- vectordb_bench/backend/runner/read_write_runner.py,sha256=B8PD_gRS5K1nFH5004x6ON1Z8TulK7c4QepW3Glltd8,4732
64
- vectordb_bench/backend/runner/serial_runner.py,sha256=ku1Dtps9JcmwCwZq7eDw0pcP9IN2Zjjg-1VJumXYJpA,9414
65
- vectordb_bench/backend/runner/util.py,sha256=pGJn-qXWwGXVlmsMulaqH0zXcasDWjsVwwOJeDFWXhc,1032
69
+ vectordb_bench/backend/runner/rate_runner.py,sha256=UlUOvbvicizNSn7TC0Pf4ni1Z_gaHBuYsu-kiBv4Mec,3963
70
+ vectordb_bench/backend/runner/read_write_runner.py,sha256=HBCzoA2UU8x7LHj7R27EoQgd8RuRIAj5xuAmP8fslkU,7427
71
+ vectordb_bench/backend/runner/serial_runner.py,sha256=7ACSCyCmRRXiD-SIZbS_sl3JhEySdXZ-r7uNFhhji8I,9608
72
+ vectordb_bench/backend/runner/util.py,sha256=C-aELWWsooLG3TlBFd2PGqnQ6Z0_j78_nNk2WCLJyPs,521
66
73
  vectordb_bench/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
67
74
  vectordb_bench/cli/cli.py,sha256=Z2-vLwvnnZFsVAPyjFK557cZZYWX_q60XVJP-aYUGdc,15416
68
- vectordb_bench/cli/vectordbbench.py,sha256=QOKwURuiaxsQ-vf7ji-qHEug5j1y_j1xSeykSsENz30,1055
75
+ vectordb_bench/cli/vectordbbench.py,sha256=jbpyjh4xKVRocxg4XurLL3ABUzBRXEChRGYhyqH4ItE,1140
69
76
  vectordb_bench/config-files/sample_config.yml,sha256=yw9ZgHczNi9PedNuTVxZKiOTI6AVoQS1h8INNgoDjPk,340
70
77
  vectordb_bench/custom/custom_case.json,sha256=uKo7NJgXDPPLtf_V6y1uc5w1aIcjLp-GCJEYOCty1As,475
71
78
  vectordb_bench/frontend/utils.py,sha256=jCyfk0QyLl3RLh-1MBRbBy6aep9hO32ScJCDYA2kaZU,489
@@ -94,7 +101,7 @@ vectordb_bench/frontend/components/run_test/hideSidebar.py,sha256=vb5kzIMmbMqWX6
94
101
  vectordb_bench/frontend/components/run_test/initStyle.py,sha256=osPUgfFfH7rRlVNHSMumvmZxvKWlLxmZiNqgnMiUJEU,723
95
102
  vectordb_bench/frontend/components/run_test/submitTask.py,sha256=NCEXfR3xudAncjVEvsV2iaiov5AatGObe830UI6481M,3341
96
103
  vectordb_bench/frontend/components/tables/data.py,sha256=pVG_hb4bTMLfUt10NUCJSqcFkPmnN7i9jTw9DcWizpI,1364
97
- vectordb_bench/frontend/config/dbCaseConfigs.py,sha256=Sl6sPTtUJki8uRu5wgPynKcR4OdaDwIgnmzCVVX9gQ0,31070
104
+ vectordb_bench/frontend/config/dbCaseConfigs.py,sha256=SpTfVtAlLsV9zWrg8zxeGCvLNGlCITWKc7xPN7dPUP8,37921
98
105
  vectordb_bench/frontend/config/dbPrices.py,sha256=10aBKjVcEg8y7TPSda28opmBM1KmXNrvbU9WM_BsZcE,176
99
106
  vectordb_bench/frontend/config/styles.py,sha256=E2PmwmiewxBKJJ59hQ4ZXatqg8QTN-Z53JlsvWMHM2M,2291
100
107
  vectordb_bench/frontend/pages/concurrent.py,sha256=z2izkQ0suO5mZ8PpVY2jypZkF5VT8xUkQQEkwd6C-ww,2094
@@ -120,9 +127,9 @@ vectordb_bench/results/WeaviateCloud/result_20230808_standard_weaviatecloud.json
120
127
  vectordb_bench/results/ZillizCloud/result_20230727_standard_zillizcloud.json,sha256=-Mdm4By65XDRCrmVOCF8yQXjcZtH4Xo4shcjoDoBUKU,18293
121
128
  vectordb_bench/results/ZillizCloud/result_20230808_standard_zillizcloud.json,sha256=77XlHT5zM_K7mG5HfDQKwXZnSCuR37VUbt6-P3J_amI,15737
122
129
  vectordb_bench/results/ZillizCloud/result_20240105_standard_202401_zillizcloud.json,sha256=TualfJ0664Hs-vdIW68bdkqAEYyzotXmu2P0yIN-GHk,42526
123
- vectordb_bench-0.0.17.dist-info/LICENSE,sha256=HXbxhrb5u5SegVzeLNF_voVgRsJMavcLaOmD1N0lZkM,1067
124
- vectordb_bench-0.0.17.dist-info/METADATA,sha256=SreMZtCcdr-dKZrwyLXuVHX-WinJe9uLTvV9_NtIXgY,34643
125
- vectordb_bench-0.0.17.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
126
- vectordb_bench-0.0.17.dist-info/entry_points.txt,sha256=Qzw6gVx96ui8esG21H6yHsI6nboEohRmV424TYhQNrA,113
127
- vectordb_bench-0.0.17.dist-info/top_level.txt,sha256=jnhZFZAuKX1J60yt-XOeBZ__ctiZMvoC_s0RFq29lpM,15
128
- vectordb_bench-0.0.17.dist-info/RECORD,,
130
+ vectordb_bench-0.0.19.dist-info/LICENSE,sha256=HXbxhrb5u5SegVzeLNF_voVgRsJMavcLaOmD1N0lZkM,1067
131
+ vectordb_bench-0.0.19.dist-info/METADATA,sha256=Og3-S_xabqf7EyRkgLgr7fE7_nTOyMfwG6BTt-aDJIw,34206
132
+ vectordb_bench-0.0.19.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
133
+ vectordb_bench-0.0.19.dist-info/entry_points.txt,sha256=Qzw6gVx96ui8esG21H6yHsI6nboEohRmV424TYhQNrA,113
134
+ vectordb_bench-0.0.19.dist-info/top_level.txt,sha256=jnhZFZAuKX1J60yt-XOeBZ__ctiZMvoC_s0RFq29lpM,15
135
+ vectordb_bench-0.0.19.dist-info/RECORD,,