vectordb-bench 0.0.21__py3-none-any.whl → 0.0.23__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.
- vectordb_bench/backend/clients/__init__.py +48 -0
- vectordb_bench/backend/clients/api.py +1 -0
- vectordb_bench/backend/clients/aws_opensearch/aws_opensearch.py +53 -4
- vectordb_bench/backend/clients/aws_opensearch/cli.py +85 -1
- vectordb_bench/backend/clients/aws_opensearch/config.py +10 -0
- vectordb_bench/backend/clients/mariadb/cli.py +107 -0
- vectordb_bench/backend/clients/mariadb/config.py +71 -0
- vectordb_bench/backend/clients/mariadb/mariadb.py +214 -0
- vectordb_bench/backend/clients/milvus/cli.py +50 -0
- vectordb_bench/backend/clients/milvus/config.py +33 -0
- vectordb_bench/backend/clients/mongodb/config.py +53 -0
- vectordb_bench/backend/clients/mongodb/mongodb.py +200 -0
- vectordb_bench/backend/clients/pgvector/cli.py +13 -1
- vectordb_bench/backend/clients/pgvector/config.py +22 -5
- vectordb_bench/backend/clients/pgvector/pgvector.py +62 -19
- vectordb_bench/backend/clients/tidb/cli.py +98 -0
- vectordb_bench/backend/clients/tidb/config.py +49 -0
- vectordb_bench/backend/clients/tidb/tidb.py +234 -0
- vectordb_bench/cli/vectordbbench.py +4 -0
- vectordb_bench/frontend/components/custom/displaypPrams.py +12 -1
- vectordb_bench/frontend/components/run_test/submitTask.py +20 -3
- vectordb_bench/frontend/config/dbCaseConfigs.py +128 -0
- vectordb_bench/frontend/config/styles.py +2 -0
- vectordb_bench/log_util.py +15 -2
- vectordb_bench/models.py +7 -0
- {vectordb_bench-0.0.21.dist-info → vectordb_bench-0.0.23.dist-info}/METADATA +67 -3
- {vectordb_bench-0.0.21.dist-info → vectordb_bench-0.0.23.dist-info}/RECORD +31 -23
- {vectordb_bench-0.0.21.dist-info → vectordb_bench-0.0.23.dist-info}/WHEEL +1 -1
- {vectordb_bench-0.0.21.dist-info → vectordb_bench-0.0.23.dist-info}/LICENSE +0 -0
- {vectordb_bench-0.0.21.dist-info → vectordb_bench-0.0.23.dist-info}/entry_points.txt +0 -0
- {vectordb_bench-0.0.21.dist-info → vectordb_bench-0.0.23.dist-info}/top_level.txt +0 -0
vectordb_bench/log_util.py
CHANGED
@@ -1,8 +1,13 @@
|
|
1
1
|
import logging
|
2
2
|
from logging import config
|
3
|
+
from pathlib import Path
|
3
4
|
|
4
5
|
|
5
6
|
def init(log_level: str):
|
7
|
+
# Create logs directory if it doesn't exist
|
8
|
+
log_dir = Path("logs")
|
9
|
+
log_dir.mkdir(exist_ok=True)
|
10
|
+
|
6
11
|
log_config = {
|
7
12
|
"version": 1,
|
8
13
|
"disable_existing_loggers": False,
|
@@ -24,15 +29,23 @@ def init(log_level: str):
|
|
24
29
|
"class": "logging.StreamHandler",
|
25
30
|
"formatter": "default",
|
26
31
|
},
|
32
|
+
"file": {
|
33
|
+
"class": "logging.handlers.RotatingFileHandler",
|
34
|
+
"formatter": "default",
|
35
|
+
"filename": "logs/vectordb_bench.log",
|
36
|
+
"maxBytes": 10485760, # 10MB
|
37
|
+
"backupCount": 5,
|
38
|
+
"encoding": "utf8",
|
39
|
+
},
|
27
40
|
},
|
28
41
|
"loggers": {
|
29
42
|
"vectordb_bench": {
|
30
|
-
"handlers": ["console"],
|
43
|
+
"handlers": ["console", "file"],
|
31
44
|
"level": log_level,
|
32
45
|
"propagate": False,
|
33
46
|
},
|
34
47
|
"no_color": {
|
35
|
-
"handlers": ["no_color_console"],
|
48
|
+
"handlers": ["no_color_console", "file"],
|
36
49
|
"level": log_level,
|
37
50
|
"propagate": False,
|
38
51
|
},
|
vectordb_bench/models.py
CHANGED
@@ -49,6 +49,7 @@ class CaseConfigParamType(Enum):
|
|
49
49
|
probes = "probes"
|
50
50
|
quantizationType = "quantization_type"
|
51
51
|
quantizationRatio = "quantization_ratio"
|
52
|
+
tableQuantizationType = "table_quantization_type"
|
52
53
|
reranking = "reranking"
|
53
54
|
rerankingMetric = "reranking_metric"
|
54
55
|
quantizedFetchLimit = "quantized_fetch_limit"
|
@@ -87,6 +88,12 @@ class CaseConfigParamType(Enum):
|
|
87
88
|
preReorderingNumNeigbors = "pre_reordering_num_neighbors"
|
88
89
|
numSearchThreads = "num_search_threads"
|
89
90
|
maxNumPrefetchDatasets = "max_num_prefetch_datasets"
|
91
|
+
storage_engine = "storage_engine"
|
92
|
+
max_cache_size = "max_cache_size"
|
93
|
+
|
94
|
+
# mongodb params
|
95
|
+
mongodb_quantization_type = "quantization"
|
96
|
+
mongodb_num_candidates_ratio = "num_candidates_ratio"
|
90
97
|
|
91
98
|
|
92
99
|
class CustomizedCase(BaseModel):
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: vectordb-bench
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.23
|
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
|
@@ -21,7 +21,7 @@ Requires-Dist: oss2
|
|
21
21
|
Requires-Dist: psutil
|
22
22
|
Requires-Dist: polars
|
23
23
|
Requires-Dist: plotly
|
24
|
-
Requires-Dist: environs
|
24
|
+
Requires-Dist: environs<14.1.0
|
25
25
|
Requires-Dist: pydantic<v2
|
26
26
|
Requires-Dist: scikit-learn
|
27
27
|
Requires-Dist: pymilvus
|
@@ -48,6 +48,8 @@ Requires-Dist: opensearch-py; extra == "all"
|
|
48
48
|
Requires-Dist: memorydb; extra == "all"
|
49
49
|
Requires-Dist: alibabacloud_ha3engine_vector; extra == "all"
|
50
50
|
Requires-Dist: alibabacloud_searchengine20211025; extra == "all"
|
51
|
+
Requires-Dist: mariadb; extra == "all"
|
52
|
+
Requires-Dist: PyMySQL; extra == "all"
|
51
53
|
Provides-Extra: qdrant
|
52
54
|
Requires-Dist: qdrant-client; extra == "qdrant"
|
53
55
|
Provides-Extra: pinecone
|
@@ -73,6 +75,12 @@ Requires-Dist: opensearch-py; extra == "opensearch"
|
|
73
75
|
Provides-Extra: aliyun-opensearch
|
74
76
|
Requires-Dist: alibabacloud_ha3engine_vector; extra == "aliyun-opensearch"
|
75
77
|
Requires-Dist: alibabacloud_searchengine20211025; extra == "aliyun-opensearch"
|
78
|
+
Provides-Extra: mongodb
|
79
|
+
Requires-Dist: pymongo; extra == "mongodb"
|
80
|
+
Provides-Extra: mariadb
|
81
|
+
Requires-Dist: mariadb; extra == "mariadb"
|
82
|
+
Provides-Extra: tidb
|
83
|
+
Requires-Dist: PyMySQL; extra == "tidb"
|
76
84
|
|
77
85
|
# VectorDBBench: A Benchmark Tool for VectorDB
|
78
86
|
|
@@ -89,6 +97,8 @@ Closely mimicking real-world production environments, we've set up diverse testi
|
|
89
97
|
|
90
98
|
Prepare to delve into the world of VectorDBBench, and let it guide you in uncovering your perfect vector database match.
|
91
99
|
|
100
|
+
VectorDBBench is sponsered by Zilliz,the leading opensource vectorDB company behind Milvus. Choose smarter with VectorDBBench- start your free test on [zilliz cloud](https://zilliz.com/) today!
|
101
|
+
|
92
102
|
**Leaderboard:** https://zilliz.com/benchmark
|
93
103
|
## Quick Start
|
94
104
|
### Prerequirement
|
@@ -128,6 +138,8 @@ All the database client supported
|
|
128
138
|
| chromadb | `pip install vectordb-bench[chromadb]` |
|
129
139
|
| awsopensearch | `pip install vectordb-bench[opensearch]` |
|
130
140
|
| aliyun_opensearch | `pip install vectordb-bench[aliyun_opensearch]` |
|
141
|
+
| mongodb | `pip install vectordb-bench[mongodb]` |
|
142
|
+
| tidb | `pip install vectordb-bench[tidb]` |
|
131
143
|
|
132
144
|
### Run
|
133
145
|
|
@@ -204,7 +216,11 @@ Options:
|
|
204
216
|
--ef-construction INTEGER hnsw ef-construction
|
205
217
|
--ef-search INTEGER hnsw ef-search
|
206
218
|
--quantization-type [none|bit|halfvec]
|
207
|
-
quantization type for vectors
|
219
|
+
quantization type for vectors (in index)
|
220
|
+
--table-quantization-type [none|bit|halfvec]
|
221
|
+
quantization type for vectors (in table). If
|
222
|
+
equal to bit, the parameter
|
223
|
+
quantization_type will be set to bit too.
|
208
224
|
--custom-case-name TEXT Custom case name i.e. PerformanceCase1536D50K
|
209
225
|
--custom-case-description TEXT Custom name description
|
210
226
|
--custom-case-load-timeout INTEGER
|
@@ -228,6 +244,47 @@ Options:
|
|
228
244
|
with-gt]
|
229
245
|
--help Show this message and exit.
|
230
246
|
```
|
247
|
+
|
248
|
+
### Run awsopensearch from command line
|
249
|
+
|
250
|
+
```shell
|
251
|
+
vectordbbench awsopensearch --db-label awsopensearch \
|
252
|
+
--m 16 --ef-construction 256 \
|
253
|
+
--host search-vector-db-prod-h4f6m4of6x7yp2rz7gdmots7w4.us-west-2.es.amazonaws.com --port 443 \
|
254
|
+
--user vector --password '<password>' \
|
255
|
+
--case-type Performance1536D5M --num-insert-workers 10 \
|
256
|
+
--skip-load --num-concurrency 75
|
257
|
+
```
|
258
|
+
|
259
|
+
To list the options for awsopensearch, execute `vectordbbench awsopensearch --help`
|
260
|
+
|
261
|
+
```text
|
262
|
+
$ vectordbbench awsopensearch --help
|
263
|
+
Usage: vectordbbench awsopensearch [OPTIONS]
|
264
|
+
|
265
|
+
Options:
|
266
|
+
# Sharding and Replication
|
267
|
+
--number-of-shards INTEGER Number of primary shards for the index
|
268
|
+
--number-of-replicas INTEGER Number of replica copies for each primary
|
269
|
+
shard
|
270
|
+
# Indexing Performance
|
271
|
+
--index-thread-qty INTEGER Thread count for native engine indexing
|
272
|
+
--index-thread-qty-during-force-merge INTEGER
|
273
|
+
Thread count during force merge operations
|
274
|
+
--number-of-indexing-clients INTEGER
|
275
|
+
Number of concurrent indexing clients
|
276
|
+
# Index Management
|
277
|
+
--number-of-segments INTEGER Target number of segments after merging
|
278
|
+
--refresh-interval TEXT How often to make new data available for
|
279
|
+
search
|
280
|
+
--force-merge-enabled BOOLEAN Whether to perform force merge operation
|
281
|
+
--flush-threshold-size TEXT Size threshold for flushing the transaction
|
282
|
+
log
|
283
|
+
# Memory Management
|
284
|
+
--cb-threshold TEXT k-NN Memory circuit breaker threshold
|
285
|
+
|
286
|
+
--help Show this message and exit.```
|
287
|
+
|
231
288
|
#### Using a configuration file.
|
232
289
|
|
233
290
|
The vectordbbench command can optionally read some or all the options from a yaml formatted configuration file.
|
@@ -394,6 +451,13 @@ We have strict requirements for the data set format, please follow them.
|
|
394
451
|
- `Folder Path` - The path to the folder containing all the files. Please ensure that all files in the folder are in the `Parquet` format.
|
395
452
|
- Vectors data files: The file must be named `train.parquet` and should have two columns: `id` as an incrementing `int` and `emb` as an array of `float32`.
|
396
453
|
- Query test vectors: The file must be named `test.parquet` and should have two columns: `id` as an incrementing `int` and `emb` as an array of `float32`.
|
454
|
+
- We recommend limiting the number of test query vectors, like 1,000.
|
455
|
+
When conducting concurrent query tests, Vdbbench creates a large number of processes.
|
456
|
+
To minimize additional communication overhead during testing,
|
457
|
+
we prepare a complete set of test queries for each process, allowing them to run independently.
|
458
|
+
However, this means that as the number of concurrent processes increases,
|
459
|
+
the number of copied query vectors also increases significantly,
|
460
|
+
which can place substantial pressure on memory resources.
|
397
461
|
- Ground truth file: The file must be named `neighbors.parquet` and should have two columns: `id` corresponding to query vectors and `neighbors_id` as an array of `int`.
|
398
462
|
|
399
463
|
- `Train File Count` - If the vector file is too large, you can consider splitting it into multiple files. The naming format for the split files should be `train-[index]-of-[file_count].parquet`. For example, `train-01-of-10.parquet` represents the second file (0-indexed) among 10 split files.
|
@@ -2,9 +2,9 @@ vectordb_bench/__init__.py,sha256=d5psAfISw9F6PFL2xPlSYUKKFDw7ifQm7g3LWC8_yUA,23
|
|
2
2
|
vectordb_bench/__main__.py,sha256=cyYbVSU-zA1AgzneGKcRRuzR4ftRDr9sIi9Ei9NZnhI,858
|
3
3
|
vectordb_bench/base.py,sha256=AgavIF0P9ku_RmCRk1KKziba-wI4ZpA2aJvjJzNhRSs,129
|
4
4
|
vectordb_bench/interface.py,sha256=XaCjTgUeI17uVjsgOauPeVlkvnkuCyQOWyOaWhrgCt8,9811
|
5
|
-
vectordb_bench/log_util.py,sha256=
|
5
|
+
vectordb_bench/log_util.py,sha256=wDNaU_JBBOfKi_Z4vq7LDa0kOlLjoNNzDX3VZQn_Dxo,3239
|
6
6
|
vectordb_bench/metric.py,sha256=pj-AxQHyIRHTaJY-wTIkTbC6TqEqMzt3kcEmMWEv71w,2063
|
7
|
-
vectordb_bench/models.py,sha256=
|
7
|
+
vectordb_bench/models.py,sha256=PeWbStufKTKKtnhC0BzeN54yp5jNTpLNL3QIHA3WLEw,11280
|
8
8
|
vectordb_bench/backend/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
9
9
|
vectordb_bench/backend/assembler.py,sha256=6GInRT7yBgfTaIPmo-XMkYX4pA8PJQmjMQInynwaunE,2047
|
10
10
|
vectordb_bench/backend/cases.py,sha256=obDdY6g3p9Z2fog7qDwLLDuRMwo3LGQKMHsP66QZd2M,16296
|
@@ -13,8 +13,8 @@ vectordb_bench/backend/dataset.py,sha256=V4OKPt23v0kmdvgJwDr_R2fLJv3lXLZEii992cE
|
|
13
13
|
vectordb_bench/backend/result_collector.py,sha256=mpROVdZ-HChKBVyMV5TZ5v7YGRb69bvfT7Gezn5F5sY,819
|
14
14
|
vectordb_bench/backend/task_runner.py,sha256=vlaXB0_25-G9w1Lj-F0SrvJzhXT7ceDWGIb2aKRXukU,11488
|
15
15
|
vectordb_bench/backend/utils.py,sha256=R6THuJdZhiQYSSJTqv0Uegl2B20taV_QjwvFrun2yxE,1949
|
16
|
-
vectordb_bench/backend/clients/__init__.py,sha256=
|
17
|
-
vectordb_bench/backend/clients/api.py,sha256=
|
16
|
+
vectordb_bench/backend/clients/__init__.py,sha256=ce7Bnle4OwAyZjZX4eff0ZXy8GAN8fwifdmm6NfSdmg,9336
|
17
|
+
vectordb_bench/backend/clients/api.py,sha256=S4oaGwUP4mvNp4Kj6w1_Xf4B0gYb0V2lyD7mACBQx68,6273
|
18
18
|
vectordb_bench/backend/clients/aliyun_elasticsearch/aliyun_elasticsearch.py,sha256=7yPYaWoHeHNxDMtpReGXsdEPFD1e4vQblFor7TmLq5o,770
|
19
19
|
vectordb_bench/backend/clients/aliyun_elasticsearch/config.py,sha256=d9RCgfCgauKvy6z9ig_wBormgwiGtkh8POyoHloHnJA,505
|
20
20
|
vectordb_bench/backend/clients/aliyun_opensearch/aliyun_opensearch.py,sha256=rwa4rtbbP2Kaczh7Bf0bc_lE_sGG5w9PhtfdFu7rQNs,13237
|
@@ -22,29 +22,34 @@ vectordb_bench/backend/clients/aliyun_opensearch/config.py,sha256=KSiuRu-p7oL2PE
|
|
22
22
|
vectordb_bench/backend/clients/alloydb/alloydb.py,sha256=E24hxCUgpBCRiScdcS_iBk8n0wngUgVg8qujOWiUhw0,13009
|
23
23
|
vectordb_bench/backend/clients/alloydb/cli.py,sha256=G6Q0WApoDXDG_pqmK2lEKFIvKB8qAsZFPM8TfsURydE,5086
|
24
24
|
vectordb_bench/backend/clients/alloydb/config.py,sha256=PJs2wIJqwcG6UJ3T8R7Pi3xTMBfxTZiNkcWyhtHv5dc,5313
|
25
|
-
vectordb_bench/backend/clients/aws_opensearch/aws_opensearch.py,sha256=
|
26
|
-
vectordb_bench/backend/clients/aws_opensearch/cli.py,sha256=
|
27
|
-
vectordb_bench/backend/clients/aws_opensearch/config.py,sha256=
|
25
|
+
vectordb_bench/backend/clients/aws_opensearch/aws_opensearch.py,sha256=iRtPmHZoVTpQ-3Q90nE70zy_XsklGlSSNgBOgeAtVzU,10047
|
26
|
+
vectordb_bench/backend/clients/aws_opensearch/cli.py,sha256=G086STCoaTBkz2J5Qt42bnyhmcYbhl6XxTaLfeirkXQ,4065
|
27
|
+
vectordb_bench/backend/clients/aws_opensearch/config.py,sha256=9meXQUOVFlk3UOAhvBhaghNm7TasDsA6-fXOY8C9gzU,2295
|
28
28
|
vectordb_bench/backend/clients/aws_opensearch/run.py,sha256=Ry5aAlielWjq0hx7LnbdShfOwzZhz3Gq9WYu5U43x9s,5001
|
29
29
|
vectordb_bench/backend/clients/chroma/chroma.py,sha256=TGsmAnG5I3bbIjJ5L7ktke6fD8lOrx56Wt2tMCb3dY8,3609
|
30
30
|
vectordb_bench/backend/clients/chroma/config.py,sha256=8nXpPdecQ5HrNqcsQwAVgacSz6uLgI-BI7v4tB8CeDk,347
|
31
31
|
vectordb_bench/backend/clients/elastic_cloud/config.py,sha256=_5Cz3__CbMU7zCizkhK1pGhH3TLJacn8efVueUZ0lnQ,1573
|
32
32
|
vectordb_bench/backend/clients/elastic_cloud/elastic_cloud.py,sha256=juWDlWt-eDd9WZEw35Q4WKvfW1pmNaFXdWjK4UveyyA,5443
|
33
|
+
vectordb_bench/backend/clients/mariadb/cli.py,sha256=Z1wkQgCUEQ7kxmJqiNfIgwrqt2gAyxFy2Ny4z0_yOA0,3191
|
34
|
+
vectordb_bench/backend/clients/mariadb/config.py,sha256=pGU5oUh_6q_sX_2K6AZuAOu_jIiK3eg532jUraz8h1k,1878
|
35
|
+
vectordb_bench/backend/clients/mariadb/mariadb.py,sha256=ymEPnBaQS29vX6p0ZuV8gpCF_hGDcSFf6j3v8Cv6Rb8,7155
|
33
36
|
vectordb_bench/backend/clients/memorydb/cli.py,sha256=mUpBN0VoE6M55AAEwyd20uEtPkOpckJzmcP2XXpue30,2659
|
34
37
|
vectordb_bench/backend/clients/memorydb/config.py,sha256=D2Q-HkDwnmz98ek1e_iNu4o9CIRB14pOQWSZgRvd6oY,1500
|
35
38
|
vectordb_bench/backend/clients/memorydb/memorydb.py,sha256=WrZhDYJqpwN173sk2lmPnOibHcQCPrq_PEAMFcL62U4,10219
|
36
|
-
vectordb_bench/backend/clients/milvus/cli.py,sha256=
|
37
|
-
vectordb_bench/backend/clients/milvus/config.py,sha256=
|
39
|
+
vectordb_bench/backend/clients/milvus/cli.py,sha256=Cz7BdxDkElFQJlRycQvz86j3nmSrPJ80sVzxQCwf970,10608
|
40
|
+
vectordb_bench/backend/clients/milvus/config.py,sha256=6WMAyOVVUPRxveuxLYcr1gBC792T9_peHOI5N6DFK3g,8839
|
38
41
|
vectordb_bench/backend/clients/milvus/milvus.py,sha256=xdVVjMnBzD5KGJ7iUB-B3SuTL4JDW1UD15QBevExMLw,6862
|
42
|
+
vectordb_bench/backend/clients/mongodb/config.py,sha256=7DZCh0bjPiqJW2luPypfpNeGfvKxVC4mdHLqgcjF1hA,1745
|
43
|
+
vectordb_bench/backend/clients/mongodb/mongodb.py,sha256=ts2gpAzUTarpkfMFnM5ANi6T-xvcjS8kc4-apPt9jug,7225
|
39
44
|
vectordb_bench/backend/clients/pgdiskann/cli.py,sha256=o5ddAp1Be2TOnm8Wh9IyIWUxdnw5N6v92Ms1s6CEwBo,3135
|
40
45
|
vectordb_bench/backend/clients/pgdiskann/config.py,sha256=DBsVgLn4edl-irSlP_GV7KW-8jFemns_ujR_CuVnQtE,4412
|
41
46
|
vectordb_bench/backend/clients/pgdiskann/pgdiskann.py,sha256=Z8K74Y6uMi6q8gnnD68doBxc5pWBSpRnNLDhlifseH4,12299
|
42
47
|
vectordb_bench/backend/clients/pgvecto_rs/cli.py,sha256=n0cMbUrGS2jzCpusVExxRDJb3iUzWblkeNmuRzLPmoE,4686
|
43
48
|
vectordb_bench/backend/clients/pgvecto_rs/config.py,sha256=jWs3078s5chH37O94zSHoQ98ptLTYiJeHiLy6BQgTE4,4725
|
44
49
|
vectordb_bench/backend/clients/pgvecto_rs/pgvecto_rs.py,sha256=ZSOPpQjLtWxpQz7-R24X-e2oVLHJsZeEmaOzfd5pELA,9828
|
45
|
-
vectordb_bench/backend/clients/pgvector/cli.py,sha256=
|
46
|
-
vectordb_bench/backend/clients/pgvector/config.py,sha256=
|
47
|
-
vectordb_bench/backend/clients/pgvector/pgvector.py,sha256
|
50
|
+
vectordb_bench/backend/clients/pgvector/cli.py,sha256=6dQkNyPqIfwBRQer89Uno0XYCQ7samNi-NtxOEs1JJg,6767
|
51
|
+
vectordb_bench/backend/clients/pgvector/config.py,sha256=GgCCnVhRBTM2l3jghggSch9KiiKQ6Q99AzLB6lx6Wd0,9957
|
52
|
+
vectordb_bench/backend/clients/pgvector/pgvector.py,sha256=tLmxZ4aI61gqBVGrR_k03Y3awv3-v1oSh5ZqOYN8vQc,21044
|
48
53
|
vectordb_bench/backend/clients/pgvectorscale/cli.py,sha256=3XL2NdBXh9ug8SyUwPD6fGXkjYflahew5GO2xIza43g,3403
|
49
54
|
vectordb_bench/backend/clients/pgvectorscale/config.py,sha256=ZMcRQPyCMzMJLXw56zODUGJmqOP-sOMA1entNsfE-Ck,3122
|
50
55
|
vectordb_bench/backend/clients/pgvectorscale/pgvectorscale.py,sha256=NONFdcE-b-mt6GsRTru6UbMMu8iqX8PfRF43fY_AODw,10136
|
@@ -58,6 +63,9 @@ vectordb_bench/backend/clients/redis/redis.py,sha256=39-JfyMQp584jLN5ltCKqyB-sNw
|
|
58
63
|
vectordb_bench/backend/clients/test/cli.py,sha256=NqvX7Rl6iEzAcvdy4VXOier-bOp0N3yVQ84rQOKjZEo,543
|
59
64
|
vectordb_bench/backend/clients/test/config.py,sha256=_Eufl8g9EYBUlUw-6vNf4b4FK2KM2u9a41cz7n08QI8,390
|
60
65
|
vectordb_bench/backend/clients/test/test.py,sha256=p8ZJ9PPQOPMc3fgtZpMMw3LROOk3VGWY-1j81NkCi8Q,1363
|
66
|
+
vectordb_bench/backend/clients/tidb/cli.py,sha256=AWaw8eJlvluMGzYiBjeNc0BXPeiAw-rrO2pS_xkHFyA,2308
|
67
|
+
vectordb_bench/backend/clients/tidb/config.py,sha256=32ee3zhRq_wyU5WbydsUW5cClxBMO2mvLWMVvW71QjY,1355
|
68
|
+
vectordb_bench/backend/clients/tidb/tidb.py,sha256=D8vQKfu2-Cqacfyr_ne5-790Sq54MZZXizetFz-KsU4,8124
|
61
69
|
vectordb_bench/backend/clients/weaviate_cloud/cli.py,sha256=Cy9epFJgeImVa3STogZhEyFAePjCZ7LY_iDu8nRpiME,1047
|
62
70
|
vectordb_bench/backend/clients/weaviate_cloud/config.py,sha256=kLSxWFtEr12WCF610SBGWyVRzXbgnO0PsftNPSIiBMM,1245
|
63
71
|
vectordb_bench/backend/clients/weaviate_cloud/weaviate_cloud.py,sha256=OZifz7ZzUzMFqdx2QUgI9QG9bMrYjNo6cFFyzGe4-LU,5190
|
@@ -72,7 +80,7 @@ vectordb_bench/backend/runner/serial_runner.py,sha256=URymqOy-9NdVE3kXWBW3e9R0Oh
|
|
72
80
|
vectordb_bench/backend/runner/util.py,sha256=tjTFUxth6hNnVrlU82TqkHhfeZo4ymj7WlyK4zFyPTg,522
|
73
81
|
vectordb_bench/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
74
82
|
vectordb_bench/cli/cli.py,sha256=-BXRfiWzW6KjBF7d-6Lw7RexPktERm1pcwJqgetSX0c,15275
|
75
|
-
vectordb_bench/cli/vectordbbench.py,sha256=
|
83
|
+
vectordb_bench/cli/vectordbbench.py,sha256=QBTzA1XrELXzgDHsJMpwfSj_F2QPHd76_lBfxpkdSkg,1288
|
76
84
|
vectordb_bench/config-files/sample_config.yml,sha256=yw9ZgHczNi9PedNuTVxZKiOTI6AVoQS1h8INNgoDjPk,340
|
77
85
|
vectordb_bench/custom/custom_case.json,sha256=uKo7NJgXDPPLtf_V6y1uc5w1aIcjLp-GCJEYOCty1As,475
|
78
86
|
vectordb_bench/frontend/utils.py,sha256=8eb4I9F0cQdnPQiFX0gMEk1e2fdgultgTKzzY5zS0Q0,489
|
@@ -88,7 +96,7 @@ vectordb_bench/frontend/components/check_results/priceTable.py,sha256=K3NmlNKAb-
|
|
88
96
|
vectordb_bench/frontend/components/check_results/stPageConfig.py,sha256=czkqr9NC3UQAxiz8KSCZC8cPmgSnFUhI2lOLHXfuMxo,432
|
89
97
|
vectordb_bench/frontend/components/concurrent/charts.py,sha256=00WI8wxIdHAhnpmFJLd03n5U3LbowmeY4swVbGNzyYg,2874
|
90
98
|
vectordb_bench/frontend/components/custom/displayCustomCase.py,sha256=aIWKFm13-EPG2XlJ3PWc2znR6q8A5FR93D5ZkGGncrM,1641
|
91
|
-
vectordb_bench/frontend/components/custom/displaypPrams.py,sha256=
|
99
|
+
vectordb_bench/frontend/components/custom/displaypPrams.py,sha256=mwm74_86YYRbpJ1Hz2Dba0eKvyzkK0DM7uhjBDFoElU,1910
|
92
100
|
vectordb_bench/frontend/components/custom/getCustomConfig.py,sha256=tSPI2DPJSNxlArLcO5Kf9nhpIBc0_YE2QD9-1cbaLus,1031
|
93
101
|
vectordb_bench/frontend/components/custom/initStyle.py,sha256=ortsoUNqH-vVq9ECiw80PnBEcIaUwxR1AQ65DSkBhGs,434
|
94
102
|
vectordb_bench/frontend/components/get_results/saveAsImage.py,sha256=POaFiwKoCGqrY-zhanWC7-tubE64bV_JjqI4lgIuMts,1459
|
@@ -99,11 +107,11 @@ vectordb_bench/frontend/components/run_test/dbSelector.py,sha256=hzMEIL1DzvpP8xk
|
|
99
107
|
vectordb_bench/frontend/components/run_test/generateTasks.py,sha256=3y8NHtWJMNqoP2SvoWuR7kj84g0OEg68IULebimzz7E,741
|
100
108
|
vectordb_bench/frontend/components/run_test/hideSidebar.py,sha256=vb5kzIMmbMqWX67qFEHek21X4sGO_tPyn_uPqUEtp3Q,234
|
101
109
|
vectordb_bench/frontend/components/run_test/initStyle.py,sha256=osPUgfFfH7rRlVNHSMumvmZxvKWlLxmZiNqgnMiUJEU,723
|
102
|
-
vectordb_bench/frontend/components/run_test/submitTask.py,sha256=
|
110
|
+
vectordb_bench/frontend/components/run_test/submitTask.py,sha256=VZjkopkCBNhqLwGqsoM0hbPEeF6Q5UOQcdFUaegerxc,4094
|
103
111
|
vectordb_bench/frontend/components/tables/data.py,sha256=5DdnC64BB7Aj2z9acht2atsPB4NabzQCZKALfIUnqtQ,1233
|
104
|
-
vectordb_bench/frontend/config/dbCaseConfigs.py,sha256=
|
112
|
+
vectordb_bench/frontend/config/dbCaseConfigs.py,sha256=75-JSlTw5FgCfyNKxEKMdiLU6Mwfn7itOmIvBFrWDkQ,41510
|
105
113
|
vectordb_bench/frontend/config/dbPrices.py,sha256=10aBKjVcEg8y7TPSda28opmBM1KmXNrvbU9WM_BsZcE,176
|
106
|
-
vectordb_bench/frontend/config/styles.py,sha256=
|
114
|
+
vectordb_bench/frontend/config/styles.py,sha256=R4Ot5ZVKA5ThObvZfEyAMla7AfkLZ-VrSN0PuZMgd0g,2417
|
107
115
|
vectordb_bench/frontend/pages/concurrent.py,sha256=bvoSafRSIsRzBQkI3uBwwrdg8jnhRUQG-epZbrJhGiE,2082
|
108
116
|
vectordb_bench/frontend/pages/custom.py,sha256=j7oJ2FHBv5O50D7YbzXTLRuIDgwkGt0iEd0FRHHkYLw,2436
|
109
117
|
vectordb_bench/frontend/pages/quries_per_dollar.py,sha256=BDukiFwxyqQK_btCSsRR5D_a17PMu0yI8Muw3eRLz6Y,2461
|
@@ -127,9 +135,9 @@ vectordb_bench/results/WeaviateCloud/result_20230808_standard_weaviatecloud.json
|
|
127
135
|
vectordb_bench/results/ZillizCloud/result_20230727_standard_zillizcloud.json,sha256=-Mdm4By65XDRCrmVOCF8yQXjcZtH4Xo4shcjoDoBUKU,18293
|
128
136
|
vectordb_bench/results/ZillizCloud/result_20230808_standard_zillizcloud.json,sha256=77XlHT5zM_K7mG5HfDQKwXZnSCuR37VUbt6-P3J_amI,15737
|
129
137
|
vectordb_bench/results/ZillizCloud/result_20240105_standard_202401_zillizcloud.json,sha256=TualfJ0664Hs-vdIW68bdkqAEYyzotXmu2P0yIN-GHk,42526
|
130
|
-
vectordb_bench-0.0.
|
131
|
-
vectordb_bench-0.0.
|
132
|
-
vectordb_bench-0.0.
|
133
|
-
vectordb_bench-0.0.
|
134
|
-
vectordb_bench-0.0.
|
135
|
-
vectordb_bench-0.0.
|
138
|
+
vectordb_bench-0.0.23.dist-info/LICENSE,sha256=HXbxhrb5u5SegVzeLNF_voVgRsJMavcLaOmD1N0lZkM,1067
|
139
|
+
vectordb_bench-0.0.23.dist-info/METADATA,sha256=BLI_mjLpRLcWJw-JbO7cXdtXj81v8UtVj5YqvDzda9Y,37722
|
140
|
+
vectordb_bench-0.0.23.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
|
141
|
+
vectordb_bench-0.0.23.dist-info/entry_points.txt,sha256=Qzw6gVx96ui8esG21H6yHsI6nboEohRmV424TYhQNrA,113
|
142
|
+
vectordb_bench-0.0.23.dist-info/top_level.txt,sha256=jnhZFZAuKX1J60yt-XOeBZ__ctiZMvoC_s0RFq29lpM,15
|
143
|
+
vectordb_bench-0.0.23.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|