vectordb-bench 0.0.19__py3-none-any.whl → 0.0.20__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 (105) hide show
  1. vectordb_bench/__init__.py +49 -24
  2. vectordb_bench/__main__.py +4 -3
  3. vectordb_bench/backend/assembler.py +12 -13
  4. vectordb_bench/backend/cases.py +55 -45
  5. vectordb_bench/backend/clients/__init__.py +75 -14
  6. vectordb_bench/backend/clients/aliyun_elasticsearch/aliyun_elasticsearch.py +1 -2
  7. vectordb_bench/backend/clients/aliyun_elasticsearch/config.py +3 -4
  8. vectordb_bench/backend/clients/aliyun_opensearch/aliyun_opensearch.py +111 -70
  9. vectordb_bench/backend/clients/aliyun_opensearch/config.py +6 -7
  10. vectordb_bench/backend/clients/alloydb/alloydb.py +58 -80
  11. vectordb_bench/backend/clients/alloydb/cli.py +51 -34
  12. vectordb_bench/backend/clients/alloydb/config.py +30 -30
  13. vectordb_bench/backend/clients/api.py +5 -9
  14. vectordb_bench/backend/clients/aws_opensearch/aws_opensearch.py +46 -47
  15. vectordb_bench/backend/clients/aws_opensearch/cli.py +4 -7
  16. vectordb_bench/backend/clients/aws_opensearch/config.py +13 -9
  17. vectordb_bench/backend/clients/aws_opensearch/run.py +69 -59
  18. vectordb_bench/backend/clients/chroma/chroma.py +38 -36
  19. vectordb_bench/backend/clients/chroma/config.py +4 -2
  20. vectordb_bench/backend/clients/elastic_cloud/config.py +5 -5
  21. vectordb_bench/backend/clients/elastic_cloud/elastic_cloud.py +23 -22
  22. vectordb_bench/backend/clients/memorydb/cli.py +8 -8
  23. vectordb_bench/backend/clients/memorydb/config.py +2 -2
  24. vectordb_bench/backend/clients/memorydb/memorydb.py +65 -53
  25. vectordb_bench/backend/clients/milvus/cli.py +41 -83
  26. vectordb_bench/backend/clients/milvus/config.py +18 -8
  27. vectordb_bench/backend/clients/milvus/milvus.py +18 -19
  28. vectordb_bench/backend/clients/pgdiskann/cli.py +29 -22
  29. vectordb_bench/backend/clients/pgdiskann/config.py +29 -26
  30. vectordb_bench/backend/clients/pgdiskann/pgdiskann.py +55 -73
  31. vectordb_bench/backend/clients/pgvecto_rs/cli.py +9 -11
  32. vectordb_bench/backend/clients/pgvecto_rs/config.py +8 -14
  33. vectordb_bench/backend/clients/pgvecto_rs/pgvecto_rs.py +33 -34
  34. vectordb_bench/backend/clients/pgvector/cli.py +40 -31
  35. vectordb_bench/backend/clients/pgvector/config.py +63 -73
  36. vectordb_bench/backend/clients/pgvector/pgvector.py +97 -98
  37. vectordb_bench/backend/clients/pgvectorscale/cli.py +38 -24
  38. vectordb_bench/backend/clients/pgvectorscale/config.py +14 -15
  39. vectordb_bench/backend/clients/pgvectorscale/pgvectorscale.py +38 -43
  40. vectordb_bench/backend/clients/pinecone/config.py +1 -0
  41. vectordb_bench/backend/clients/pinecone/pinecone.py +14 -21
  42. vectordb_bench/backend/clients/qdrant_cloud/config.py +11 -10
  43. vectordb_bench/backend/clients/qdrant_cloud/qdrant_cloud.py +40 -31
  44. vectordb_bench/backend/clients/redis/cli.py +6 -12
  45. vectordb_bench/backend/clients/redis/config.py +7 -5
  46. vectordb_bench/backend/clients/redis/redis.py +94 -58
  47. vectordb_bench/backend/clients/test/cli.py +1 -2
  48. vectordb_bench/backend/clients/test/config.py +2 -2
  49. vectordb_bench/backend/clients/test/test.py +4 -5
  50. vectordb_bench/backend/clients/weaviate_cloud/cli.py +3 -4
  51. vectordb_bench/backend/clients/weaviate_cloud/config.py +2 -2
  52. vectordb_bench/backend/clients/weaviate_cloud/weaviate_cloud.py +36 -22
  53. vectordb_bench/backend/clients/zilliz_cloud/cli.py +14 -11
  54. vectordb_bench/backend/clients/zilliz_cloud/config.py +2 -4
  55. vectordb_bench/backend/clients/zilliz_cloud/zilliz_cloud.py +1 -1
  56. vectordb_bench/backend/data_source.py +30 -18
  57. vectordb_bench/backend/dataset.py +47 -27
  58. vectordb_bench/backend/result_collector.py +2 -3
  59. vectordb_bench/backend/runner/__init__.py +4 -6
  60. vectordb_bench/backend/runner/mp_runner.py +85 -34
  61. vectordb_bench/backend/runner/rate_runner.py +30 -19
  62. vectordb_bench/backend/runner/read_write_runner.py +51 -23
  63. vectordb_bench/backend/runner/serial_runner.py +91 -48
  64. vectordb_bench/backend/runner/util.py +4 -3
  65. vectordb_bench/backend/task_runner.py +92 -72
  66. vectordb_bench/backend/utils.py +17 -10
  67. vectordb_bench/base.py +0 -1
  68. vectordb_bench/cli/cli.py +65 -60
  69. vectordb_bench/cli/vectordbbench.py +6 -7
  70. vectordb_bench/frontend/components/check_results/charts.py +8 -19
  71. vectordb_bench/frontend/components/check_results/data.py +4 -16
  72. vectordb_bench/frontend/components/check_results/filters.py +8 -16
  73. vectordb_bench/frontend/components/check_results/nav.py +4 -4
  74. vectordb_bench/frontend/components/check_results/priceTable.py +1 -3
  75. vectordb_bench/frontend/components/check_results/stPageConfig.py +2 -1
  76. vectordb_bench/frontend/components/concurrent/charts.py +12 -12
  77. vectordb_bench/frontend/components/custom/displayCustomCase.py +17 -11
  78. vectordb_bench/frontend/components/custom/displaypPrams.py +4 -2
  79. vectordb_bench/frontend/components/custom/getCustomConfig.py +1 -2
  80. vectordb_bench/frontend/components/custom/initStyle.py +1 -1
  81. vectordb_bench/frontend/components/get_results/saveAsImage.py +2 -0
  82. vectordb_bench/frontend/components/run_test/caseSelector.py +3 -9
  83. vectordb_bench/frontend/components/run_test/dbConfigSetting.py +1 -4
  84. vectordb_bench/frontend/components/run_test/dbSelector.py +1 -1
  85. vectordb_bench/frontend/components/run_test/generateTasks.py +8 -8
  86. vectordb_bench/frontend/components/run_test/submitTask.py +14 -18
  87. vectordb_bench/frontend/components/tables/data.py +3 -6
  88. vectordb_bench/frontend/config/dbCaseConfigs.py +51 -84
  89. vectordb_bench/frontend/pages/concurrent.py +3 -5
  90. vectordb_bench/frontend/pages/custom.py +30 -9
  91. vectordb_bench/frontend/pages/quries_per_dollar.py +3 -3
  92. vectordb_bench/frontend/pages/run_test.py +3 -7
  93. vectordb_bench/frontend/utils.py +1 -1
  94. vectordb_bench/frontend/vdb_benchmark.py +4 -6
  95. vectordb_bench/interface.py +56 -26
  96. vectordb_bench/log_util.py +59 -64
  97. vectordb_bench/metric.py +10 -11
  98. vectordb_bench/models.py +26 -43
  99. {vectordb_bench-0.0.19.dist-info → vectordb_bench-0.0.20.dist-info}/METADATA +22 -15
  100. vectordb_bench-0.0.20.dist-info/RECORD +135 -0
  101. {vectordb_bench-0.0.19.dist-info → vectordb_bench-0.0.20.dist-info}/WHEEL +1 -1
  102. vectordb_bench-0.0.19.dist-info/RECORD +0 -135
  103. {vectordb_bench-0.0.19.dist-info → vectordb_bench-0.0.20.dist-info}/LICENSE +0 -0
  104. {vectordb_bench-0.0.19.dist-info → vectordb_bench-0.0.20.dist-info}/entry_points.txt +0 -0
  105. {vectordb_bench-0.0.19.dist-info → vectordb_bench-0.0.20.dist-info}/top_level.txt +0 -0
vectordb_bench/models.py CHANGED
@@ -2,29 +2,31 @@ import logging
2
2
  import pathlib
3
3
  from datetime import date, datetime
4
4
  from enum import Enum, StrEnum, auto
5
- from typing import List, Self
5
+ from typing import Self
6
6
 
7
7
  import ujson
8
8
 
9
+ from . import config
10
+ from .backend.cases import CaseType
9
11
  from .backend.clients import (
10
12
  DB,
11
- DBConfig,
12
13
  DBCaseConfig,
14
+ DBConfig,
13
15
  )
14
- from .backend.cases import CaseType
15
16
  from .base import BaseModel
16
- from . import config
17
17
  from .metric import Metric
18
18
 
19
19
  log = logging.getLogger(__name__)
20
20
 
21
21
 
22
22
  class LoadTimeoutError(TimeoutError):
23
- pass
23
+ def __init__(self, duration: int):
24
+ super().__init__(f"capacity case load timeout in {duration}s")
24
25
 
25
26
 
26
27
  class PerformanceTimeoutError(TimeoutError):
27
- pass
28
+ def __init__(self):
29
+ super().__init__("Performance case optimize timeout")
28
30
 
29
31
 
30
32
  class CaseConfigParamType(Enum):
@@ -92,7 +94,7 @@ class CustomizedCase(BaseModel):
92
94
 
93
95
 
94
96
  class ConcurrencySearchConfig(BaseModel):
95
- num_concurrency: List[int] = config.NUM_CONCURRENCY
97
+ num_concurrency: list[int] = config.NUM_CONCURRENCY
96
98
  concurrency_duration: int = config.CONCURRENCY_DURATION
97
99
 
98
100
 
@@ -146,7 +148,7 @@ class TaskConfig(BaseModel):
146
148
  db_config: DBConfig
147
149
  db_case_config: DBCaseConfig
148
150
  case_config: CaseConfig
149
- stages: List[TaskStage] = ALL_TASK_STAGES
151
+ stages: list[TaskStage] = ALL_TASK_STAGES
150
152
 
151
153
  @property
152
154
  def db_name(self):
@@ -210,26 +212,23 @@ class TestResult(BaseModel):
210
212
  log.info(f"local result directory not exist, creating it: {result_dir}")
211
213
  result_dir.mkdir(parents=True)
212
214
 
213
- file_name = self.file_fmt.format(
214
- date.today().strftime("%Y%m%d"), partial.task_label, db
215
- )
215
+ file_name = self.file_fmt.format(date.today().strftime("%Y%m%d"), partial.task_label, db)
216
216
  result_file = result_dir.joinpath(file_name)
217
217
  if result_file.exists():
218
- log.warning(
219
- f"Replacing existing result with the same file_name: {result_file}"
220
- )
218
+ log.warning(f"Replacing existing result with the same file_name: {result_file}")
221
219
 
222
220
  log.info(f"write results to disk {result_file}")
223
- with open(result_file, "w") as f:
221
+ with pathlib.Path(result_file).open("w") as f:
224
222
  b = partial.json(exclude={"db_config": {"password", "api_key"}})
225
223
  f.write(b)
226
224
 
227
225
  @classmethod
228
226
  def read_file(cls, full_path: pathlib.Path, trans_unit: bool = False) -> Self:
229
227
  if not full_path.exists():
230
- raise ValueError(f"No such file: {full_path}")
228
+ msg = f"No such file: {full_path}"
229
+ raise ValueError(msg)
231
230
 
232
- with open(full_path) as f:
231
+ with pathlib.Path(full_path).open("r") as f:
233
232
  test_result = ujson.loads(f.read())
234
233
  if "task_label" not in test_result:
235
234
  test_result["task_label"] = test_result["run_id"]
@@ -248,19 +247,16 @@ class TestResult(BaseModel):
248
247
  if trans_unit:
249
248
  cur_max_count = case_result["metrics"]["max_load_count"]
250
249
  case_result["metrics"]["max_load_count"] = (
251
- cur_max_count / 1000
252
- if int(cur_max_count) > 0
253
- else cur_max_count
250
+ cur_max_count / 1000 if int(cur_max_count) > 0 else cur_max_count
254
251
  )
255
252
 
256
253
  cur_latency = case_result["metrics"]["serial_latency_p99"]
257
254
  case_result["metrics"]["serial_latency_p99"] = (
258
255
  cur_latency * 1000 if cur_latency > 0 else cur_latency
259
256
  )
260
- c = TestResult.validate(test_result)
261
-
262
- return c
257
+ return TestResult.validate(test_result)
263
258
 
259
+ # ruff: noqa
264
260
  def display(self, dbs: list[DB] | None = None):
265
261
  filter_list = dbs if dbs and isinstance(dbs, list) else None
266
262
  sorted_results = sorted(
@@ -273,31 +269,18 @@ class TestResult(BaseModel):
273
269
  reverse=True,
274
270
  )
275
271
 
276
- filtered_results = [
277
- r
278
- for r in sorted_results
279
- if not filter_list or r.task_config.db not in filter_list
280
- ]
272
+ filtered_results = [r for r in sorted_results if not filter_list or r.task_config.db not in filter_list]
281
273
 
282
- def append_return(x, y):
274
+ def append_return(x: any, y: any):
283
275
  x.append(y)
284
276
  return x
285
277
 
286
278
  max_db = max(map(len, [f.task_config.db.name for f in filtered_results]))
287
- max_db_labels = (
288
- max(map(len, [f.task_config.db_config.db_label for f in filtered_results]))
289
- + 3
290
- )
291
- max_case = max(
292
- map(len, [f.task_config.case_config.case_id.name for f in filtered_results])
293
- )
294
- max_load_dur = (
295
- max(map(len, [str(f.metrics.load_duration) for f in filtered_results])) + 3
296
- )
279
+ max_db_labels = max(map(len, [f.task_config.db_config.db_label for f in filtered_results])) + 3
280
+ max_case = max(map(len, [f.task_config.case_config.case_id.name for f in filtered_results]))
281
+ max_load_dur = max(map(len, [str(f.metrics.load_duration) for f in filtered_results])) + 3
297
282
  max_qps = max(map(len, [str(f.metrics.qps) for f in filtered_results])) + 3
298
- max_recall = (
299
- max(map(len, [str(f.metrics.recall) for f in filtered_results])) + 3
300
- )
283
+ max_recall = max(map(len, [str(f.metrics.recall) for f in filtered_results])) + 3
301
284
 
302
285
  max_db_labels = 8 if max_db_labels < 8 else max_db_labels
303
286
  max_load_dur = 11 if max_load_dur < 11 else max_load_dur
@@ -356,7 +339,7 @@ class TestResult(BaseModel):
356
339
  f.metrics.recall,
357
340
  f.metrics.max_load_count,
358
341
  f.label.value,
359
- )
342
+ ),
360
343
  )
361
344
 
362
345
  tmp_logger = logging.getLogger("no_color")
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: vectordb-bench
3
- Version: 0.0.19
3
+ Version: 0.0.20
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
@@ -26,6 +26,7 @@ Requires-Dist: pydantic<v2
26
26
  Requires-Dist: scikit-learn
27
27
  Requires-Dist: pymilvus
28
28
  Provides-Extra: test
29
+ Requires-Dist: black; extra == "test"
29
30
  Requires-Dist: ruff; extra == "test"
30
31
  Requires-Dist: pytest; extra == "test"
31
32
  Provides-Extra: all
@@ -45,6 +46,8 @@ Requires-Dist: pgvecto_rs[psycopg3]>=0.2.2; extra == "all"
45
46
  Requires-Dist: opensearch-dsl; extra == "all"
46
47
  Requires-Dist: opensearch-py; extra == "all"
47
48
  Requires-Dist: memorydb; extra == "all"
49
+ Requires-Dist: alibabacloud_ha3engine_vector; extra == "all"
50
+ Requires-Dist: alibabacloud_searchengine20211025; extra == "all"
48
51
  Provides-Extra: qdrant
49
52
  Requires-Dist: qdrant-client; extra == "qdrant"
50
53
  Provides-Extra: pinecone
@@ -67,12 +70,25 @@ Provides-Extra: chromadb
67
70
  Requires-Dist: chromadb; extra == "chromadb"
68
71
  Provides-Extra: opensearch
69
72
  Requires-Dist: opensearch-py; extra == "opensearch"
73
+ Provides-Extra: aliyun-opensearch
74
+ Requires-Dist: alibabacloud_ha3engine_vector; extra == "aliyun-opensearch"
75
+ Requires-Dist: alibabacloud_searchengine20211025; extra == "aliyun-opensearch"
70
76
 
71
77
  # VectorDBBench: A Benchmark Tool for VectorDB
72
78
 
73
79
  [![version](https://img.shields.io/pypi/v/vectordb-bench.svg?color=blue)](https://pypi.org/project/vectordb-bench/)
74
80
  [![Downloads](https://pepy.tech/badge/vectordb-bench)](https://pepy.tech/project/vectordb-bench)
75
81
 
82
+ ## What is VectorDBBench
83
+ 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.
84
+
85
+ Understanding the importance of user experience, we provide an intuitive visual interface. This not only empowers users to initiate benchmarks at ease, but also to view comparative result reports, thereby reproducing benchmark results effortlessly.
86
+ To add more relevance and practicality, we provide cost-effectiveness reports particularly for cloud services. This allows for a more realistic and applicable benchmarking process.
87
+
88
+ Closely mimicking real-world production environments, we've set up diverse testing scenarios including insertion, searching, and filtered searching. To provide you with credible and reliable data, we've included public datasets from actual production scenarios, such as [SIFT](http://corpus-texmex.irisa.fr/), [GIST](http://corpus-texmex.irisa.fr/), [Cohere](https://huggingface.co/datasets/Cohere/wikipedia-22-12/tree/main/en), and a dataset generated by OpenAI from an opensource [raw dataset](https://huggingface.co/datasets/allenai/c4). It's fascinating to discover how a relatively unknown open-source database might excel in certain circumstances!
89
+
90
+ Prepare to delve into the world of VectorDBBench, and let it guide you in uncovering your perfect vector database match.
91
+
76
92
  **Leaderboard:** https://zilliz.com/benchmark
77
93
  ## Quick Start
78
94
  ### Prerequirement
@@ -111,6 +127,7 @@ All the database client supported
111
127
  | memorydb | `pip install vectordb-bench[memorydb]` |
112
128
  | chromadb | `pip install vectordb-bench[chromadb]` |
113
129
  | awsopensearch | `pip install vectordb-bench[opensearch]` |
130
+ | aliyun_opensearch | `pip install vectordb-bench[aliyun_opensearch]` |
114
131
 
115
132
  ### Run
116
133
 
@@ -249,16 +266,6 @@ milvushnsw:
249
266
  > - Options passed on the command line will override the configuration file*
250
267
  > - Parameter names use an _ not -
251
268
 
252
- ## What is VectorDBBench
253
- 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.
254
-
255
- Understanding the importance of user experience, we provide an intuitive visual interface. This not only empowers users to initiate benchmarks at ease, but also to view comparative result reports, thereby reproducing benchmark results effortlessly.
256
- To add more relevance and practicality, we provide cost-effectiveness reports particularly for cloud services. This allows for a more realistic and applicable benchmarking process.
257
-
258
- Closely mimicking real-world production environments, we've set up diverse testing scenarios including insertion, searching, and filtered searching. To provide you with credible and reliable data, we've included public datasets from actual production scenarios, such as [SIFT](http://corpus-texmex.irisa.fr/), [GIST](http://corpus-texmex.irisa.fr/), [Cohere](https://huggingface.co/datasets/Cohere/wikipedia-22-12/tree/main/en), and a dataset generated by OpenAI from an opensource [raw dataset](https://huggingface.co/datasets/allenai/c4). It's fascinating to discover how a relatively unknown open-source database might excel in certain circumstances!
259
-
260
- Prepare to delve into the world of VectorDBBench, and let it guide you in uncovering your perfect vector database match.
261
-
262
269
  ## Leaderboard
263
270
  ### Introduction
264
271
  To facilitate the presentation of test results and provide a comprehensive performance analysis report, we offer a [leaderboard page](https://zilliz.com/benchmark). It allows us to choose from QPS, QP$, and latency metrics, and provides a comprehensive assessment of a system's performance based on the test results of various cases and a set of scoring mechanisms (to be introduced later). On this leaderboard, we can select the systems and models to be compared, and filter out cases we do not want to consider. Comprehensive scores are always ranked from best to worst, and the specific test results of each query will be presented in the list below.
@@ -309,13 +316,13 @@ After reopen the repository in container, run `python -m vectordb_bench` in the
309
316
 
310
317
  ### Check coding styles
311
318
  ```shell
312
- $ ruff check vectordb_bench
319
+ $ make lint
313
320
  ```
314
321
 
315
- Add `--fix` if you want to fix the coding styles automatically
322
+ To fix the coding styles automatically
316
323
 
317
324
  ```shell
318
- $ ruff check vectordb_bench --fix
325
+ $ make format
319
326
  ```
320
327
 
321
328
  ## How does it work?
@@ -0,0 +1,135 @@
1
+ vectordb_bench/__init__.py,sha256=d5psAfISw9F6PFL2xPlSYUKKFDw7ifQm7g3LWC8_yUA,2375
2
+ vectordb_bench/__main__.py,sha256=cyYbVSU-zA1AgzneGKcRRuzR4ftRDr9sIi9Ei9NZnhI,858
3
+ vectordb_bench/base.py,sha256=AgavIF0P9ku_RmCRk1KKziba-wI4ZpA2aJvjJzNhRSs,129
4
+ vectordb_bench/interface.py,sha256=8iTNV2oq0LAU-8y3DbeEfzVex03d8M5kves4OXs_ubY,10016
5
+ vectordb_bench/log_util.py,sha256=hOdK0TnrcpYZOrRZoBslievXSW8qtTvLvube43rxbVc,2776
6
+ vectordb_bench/metric.py,sha256=pj-AxQHyIRHTaJY-wTIkTbC6TqEqMzt3kcEmMWEv71w,2063
7
+ vectordb_bench/models.py,sha256=5N4-0lJLWpoR6NnzX4ONuH7vyi4nRFFuNS0q9jQ4cgM,11023
8
+ vectordb_bench/backend/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
+ vectordb_bench/backend/assembler.py,sha256=CkXn40A18x2nOWbL1F8DrrSz--TcYAlwxhqD0VQMCbA,2040
10
+ vectordb_bench/backend/cases.py,sha256=obDdY6g3p9Z2fog7qDwLLDuRMwo3LGQKMHsP66QZd2M,16296
11
+ vectordb_bench/backend/data_source.py,sha256=VGrQ6P1a4Yt5RT5VkQe3YhW8vb8Lre0a7uARwYnwuAA,5680
12
+ vectordb_bench/backend/dataset.py,sha256=V4OKPt23v0kmdvgJwDr_R2fLJv3lXLZEii992cEM2Q0,8993
13
+ vectordb_bench/backend/result_collector.py,sha256=mpROVdZ-HChKBVyMV5TZ5v7YGRb69bvfT7Gezn5F5sY,819
14
+ vectordb_bench/backend/task_runner.py,sha256=VIyyMG2NCyzK_aJvZX5UxtW_YcEulC9EbHp5pmsCRuk,12244
15
+ vectordb_bench/backend/utils.py,sha256=R6THuJdZhiQYSSJTqv0Uegl2B20taV_QjwvFrun2yxE,1949
16
+ vectordb_bench/backend/clients/__init__.py,sha256=GWBOsRsYULH4V9aA078iB0cHAMkODoWPiYlrZYG2s5o,7998
17
+ vectordb_bench/backend/clients/api.py,sha256=74yDDCFNJegNZSmWTNtLc9moPpGLa0vVVJfFuVgDWUY,6229
18
+ vectordb_bench/backend/clients/aliyun_elasticsearch/aliyun_elasticsearch.py,sha256=7yPYaWoHeHNxDMtpReGXsdEPFD1e4vQblFor7TmLq5o,770
19
+ vectordb_bench/backend/clients/aliyun_elasticsearch/config.py,sha256=d9RCgfCgauKvy6z9ig_wBormgwiGtkh8POyoHloHnJA,505
20
+ vectordb_bench/backend/clients/aliyun_opensearch/aliyun_opensearch.py,sha256=GI8v59ntuy6f8C2wxz_EoCTcWvgxmgcCN7WBu7caL64,13385
21
+ vectordb_bench/backend/clients/aliyun_opensearch/config.py,sha256=KSiuRu-p7oL2PEukfD6SvYCKg1jTVvro9lMcUnQSN6I,1214
22
+ vectordb_bench/backend/clients/alloydb/alloydb.py,sha256=ehMwguVtzxaRAgyoY-bS7TNPD87M4rqExZgbaRPkB_g,13022
23
+ vectordb_bench/backend/clients/alloydb/cli.py,sha256=G6Q0WApoDXDG_pqmK2lEKFIvKB8qAsZFPM8TfsURydE,5086
24
+ vectordb_bench/backend/clients/alloydb/config.py,sha256=PJs2wIJqwcG6UJ3T8R7Pi3xTMBfxTZiNkcWyhtHv5dc,5313
25
+ vectordb_bench/backend/clients/aws_opensearch/aws_opensearch.py,sha256=dLRuK-LN247CTW3pQ7qKrUzH3VFlZjoAZCGGhs3hC4k,7611
26
+ vectordb_bench/backend/clients/aws_opensearch/cli.py,sha256=845dUYcD5m9j9FNOCXAspgCkvOKWWJXt2k87I55Odbs,1301
27
+ vectordb_bench/backend/clients/aws_opensearch/config.py,sha256=XsQBKGBPR0lqH3XrQpijwgt9Tfb6KBVg35x2L9LQQMw,1881
28
+ vectordb_bench/backend/clients/aws_opensearch/run.py,sha256=Ry5aAlielWjq0hx7LnbdShfOwzZhz3Gq9WYu5U43x9s,5001
29
+ vectordb_bench/backend/clients/chroma/chroma.py,sha256=_JpLaCu5SXJMSJzuR2UZheP1AGfzBkMYKAH_WxaU8Rs,3638
30
+ vectordb_bench/backend/clients/chroma/config.py,sha256=8nXpPdecQ5HrNqcsQwAVgacSz6uLgI-BI7v4tB8CeDk,347
31
+ vectordb_bench/backend/clients/elastic_cloud/config.py,sha256=_5Cz3__CbMU7zCizkhK1pGhH3TLJacn8efVueUZ0lnQ,1573
32
+ vectordb_bench/backend/clients/elastic_cloud/elastic_cloud.py,sha256=51yiwuW9eRH4t44we0qGF3YvhfEmKB8-T78ueUPsh7E,5513
33
+ vectordb_bench/backend/clients/memorydb/cli.py,sha256=AIjkKTu7L4UFGbrtUeqx7mFC5_-6F1jjzuhQy0oYHa0,2661
34
+ vectordb_bench/backend/clients/memorydb/config.py,sha256=D2Q-HkDwnmz98ek1e_iNu4o9CIRB14pOQWSZgRvd6oY,1500
35
+ vectordb_bench/backend/clients/memorydb/memorydb.py,sha256=dX_5Rm3t_B5M439QA8aOgUW0dNn4OoaigHpTT_Ex9fY,10248
36
+ vectordb_bench/backend/clients/milvus/cli.py,sha256=xGvYYKOAs32vz78oB5Ks_xnWIMzcl_f7TPEPRk94FeQ,8895
37
+ vectordb_bench/backend/clients/milvus/config.py,sha256=oFZ5VG5UHws161M1cYmMr2b9NSEoqwwst998T59QGQo,7520
38
+ vectordb_bench/backend/clients/milvus/milvus.py,sha256=yhIvmUPVf16BZSQ-y7xTxplbXjJrxO7T5HR4bMP0Jdo,7509
39
+ vectordb_bench/backend/clients/pgdiskann/cli.py,sha256=o5ddAp1Be2TOnm8Wh9IyIWUxdnw5N6v92Ms1s6CEwBo,3135
40
+ vectordb_bench/backend/clients/pgdiskann/config.py,sha256=DBsVgLn4edl-irSlP_GV7KW-8jFemns_ujR_CuVnQtE,4412
41
+ vectordb_bench/backend/clients/pgdiskann/pgdiskann.py,sha256=VNI2rdtkz0YS94YyakBix9wterHDCDI8rU0AVLW0SuI,12312
42
+ vectordb_bench/backend/clients/pgvecto_rs/cli.py,sha256=n0cMbUrGS2jzCpusVExxRDJb3iUzWblkeNmuRzLPmoE,4686
43
+ vectordb_bench/backend/clients/pgvecto_rs/config.py,sha256=jWs3078s5chH37O94zSHoQ98ptLTYiJeHiLy6BQgTE4,4725
44
+ vectordb_bench/backend/clients/pgvecto_rs/pgvecto_rs.py,sha256=eABNe74U0p5Sauk1p2Ej6xbeEftP42j56TjybBKt80I,9925
45
+ vectordb_bench/backend/clients/pgvector/cli.py,sha256=aeuYMRIVWgR_rRkuEa_hU6_e0J5y43pxiprInQ_OrGg,6229
46
+ vectordb_bench/backend/clients/pgvector/config.py,sha256=llLdn5y9NtK24tzT9bqbJmIaDYxkg_BqPbedoW5nfH0,8924
47
+ vectordb_bench/backend/clients/pgvector/pgvector.py,sha256=pZAlzdfhJzP9KYqeGlWoPW_8idR-kaiwRI5P9OLRJcA,18631
48
+ vectordb_bench/backend/clients/pgvectorscale/cli.py,sha256=3XL2NdBXh9ug8SyUwPD6fGXkjYflahew5GO2xIza43g,3403
49
+ vectordb_bench/backend/clients/pgvectorscale/config.py,sha256=ZMcRQPyCMzMJLXw56zODUGJmqOP-sOMA1entNsfE-Ck,3122
50
+ vectordb_bench/backend/clients/pgvectorscale/pgvectorscale.py,sha256=Ajo339JWpWH6enCMcb0rl76msPXWXf-uoDXRHxdtbfs,10180
51
+ vectordb_bench/backend/clients/pinecone/config.py,sha256=hzPX1lxDpYI9IdpNs7RYB1vAn2uMlCw9NH4FonQEmfQ,294
52
+ vectordb_bench/backend/clients/pinecone/pinecone.py,sha256=Ko9eFODiBIyOrVYCq-3xBCUtx1uuWsOUvOTypYuCs0g,3599
53
+ vectordb_bench/backend/clients/qdrant_cloud/config.py,sha256=81eRgFNJJy7oe-FreNv7RzhAfyd-_19REbVcW-hJTt4,1348
54
+ vectordb_bench/backend/clients/qdrant_cloud/qdrant_cloud.py,sha256=n50L2-yyf6iQLnG27wSD7Ww3R2MZ2qFZv8OL9b4WeYU,5441
55
+ vectordb_bench/backend/clients/redis/cli.py,sha256=tFLXzNyvh_GYUZihqMvj65C5vBKPVVAYIXtbzGaVCcU,2167
56
+ vectordb_bench/backend/clients/redis/config.py,sha256=xVSVC6xjjAKsiwJuJoLguCGhiiUT9w13Db_Up5ZqljY,1241
57
+ vectordb_bench/backend/clients/redis/redis.py,sha256=QYbULIehrZ-6SIs20vTCS1wMcd3REKcgXkwlXo88rcY,6798
58
+ vectordb_bench/backend/clients/test/cli.py,sha256=ro7RRQ63horo68Xgn0g7IPxH40I7o7D8je0Mf42KV20,548
59
+ vectordb_bench/backend/clients/test/config.py,sha256=_Eufl8g9EYBUlUw-6vNf4b4FK2KM2u9a41cz7n08QI8,390
60
+ vectordb_bench/backend/clients/test/test.py,sha256=JESJ7GFBzlxTtQI-2RJobJTJ5Jmxm7CzxstfhnxGWSo,1399
61
+ vectordb_bench/backend/clients/weaviate_cloud/cli.py,sha256=Cy9epFJgeImVa3STogZhEyFAePjCZ7LY_iDu8nRpiME,1047
62
+ vectordb_bench/backend/clients/weaviate_cloud/config.py,sha256=kLSxWFtEr12WCF610SBGWyVRzXbgnO0PsftNPSIiBMM,1245
63
+ vectordb_bench/backend/clients/weaviate_cloud/weaviate_cloud.py,sha256=1OLS5A_ZszFeBxPOSkLHM7xwD6yxy9nd6waEqVQ46yg,5241
64
+ vectordb_bench/backend/clients/zilliz_cloud/cli.py,sha256=3_eD3ZG-FeTw1cenhbBFniPnVLgT_UQwdIuGmGDroJw,1551
65
+ vectordb_bench/backend/clients/zilliz_cloud/config.py,sha256=-Qb50m-Hcz86OcMURU21n61Rz-RpFqKfUsmjna85OR8,909
66
+ vectordb_bench/backend/clients/zilliz_cloud/zilliz_cloud.py,sha256=B9EUDmK11oQ2GIslVkbRVAitHT-NbRGxQD_Weia-vhY,681
67
+ vectordb_bench/backend/runner/__init__.py,sha256=mF8YnErTa7MVG37zZb0KFXBSrmMw_afttuiqWcwrVls,228
68
+ vectordb_bench/backend/runner/mp_runner.py,sha256=22jySJFd7u1Ee1QfpA8N_pltZvx9MChwEuKphbisS-c,10118
69
+ vectordb_bench/backend/runner/rate_runner.py,sha256=GluVVBl8a-LrSlaVvs4UjiHgaxL3UQ-IvjAxOtANnO4,4310
70
+ vectordb_bench/backend/runner/read_write_runner.py,sha256=ItnajqPbpv82IfF8pZVk4NJi5l28rN8tbem6R2v1R2I,7866
71
+ vectordb_bench/backend/runner/serial_runner.py,sha256=hey6X7HweiUIgdu5er_8Oqxvhq7frezc50ikIAzwoxc,10281
72
+ vectordb_bench/backend/runner/util.py,sha256=tjTFUxth6hNnVrlU82TqkHhfeZo4ymj7WlyK4zFyPTg,522
73
+ vectordb_bench/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
74
+ vectordb_bench/cli/cli.py,sha256=-BXRfiWzW6KjBF7d-6Lw7RexPktERm1pcwJqgetSX0c,15275
75
+ vectordb_bench/cli/vectordbbench.py,sha256=qoHE_p1CzPDuxJZv7UFqUlu7yi2R9Dm3kx2jnyy85Vg,1139
76
+ vectordb_bench/config-files/sample_config.yml,sha256=yw9ZgHczNi9PedNuTVxZKiOTI6AVoQS1h8INNgoDjPk,340
77
+ vectordb_bench/custom/custom_case.json,sha256=uKo7NJgXDPPLtf_V6y1uc5w1aIcjLp-GCJEYOCty1As,475
78
+ vectordb_bench/frontend/utils.py,sha256=8eb4I9F0cQdnPQiFX0gMEk1e2fdgultgTKzzY5zS0Q0,489
79
+ vectordb_bench/frontend/vdb_benchmark.py,sha256=SVSKCjVCDpp2ZSzPDwPiT9RhVOwTAEdtdYgYg5KIDMM,1728
80
+ vectordb_bench/frontend/components/check_results/charts.py,sha256=TBX89xFrWwWZRjIarVzX_Wctye6JNrMtwI8ih4s_bM8,5108
81
+ vectordb_bench/frontend/components/check_results/data.py,sha256=emdGWxW9-w4xPuvoT_y8rHaOZU3NIGG__wH5_njX6Fg,3376
82
+ vectordb_bench/frontend/components/check_results/expanderStyle.py,sha256=XLnJlDai8A8TQhr2iYQpZXIB31YUrrjrmFvLFHT5uOg,1299
83
+ vectordb_bench/frontend/components/check_results/filters.py,sha256=M2YIWUlE9hYzJpNv30uCt1kUfzGbDfYWfcGlE8-V1fc,4391
84
+ vectordb_bench/frontend/components/check_results/footer.py,sha256=Nh1RzorDg-8R5ewp_UGFnUqWaAEZ7xZ1RpqHDew1mGY,395
85
+ vectordb_bench/frontend/components/check_results/headerIcon.py,sha256=0uvvSe-oroh58iKzyXeNch0z2Xh7n-plKIGRUmwYnH4,434
86
+ vectordb_bench/frontend/components/check_results/nav.py,sha256=Gut3xguhdfYzx_GB95MaS3gU8KFP7OTRx3kIGOJikoQ,653
87
+ vectordb_bench/frontend/components/check_results/priceTable.py,sha256=K3NmlNKAb-5ncv488YpVy4i05GfZw5tezh9npO9R2wA,1295
88
+ vectordb_bench/frontend/components/check_results/stPageConfig.py,sha256=czkqr9NC3UQAxiz8KSCZC8cPmgSnFUhI2lOLHXfuMxo,432
89
+ vectordb_bench/frontend/components/concurrent/charts.py,sha256=00WI8wxIdHAhnpmFJLd03n5U3LbowmeY4swVbGNzyYg,2874
90
+ vectordb_bench/frontend/components/custom/displayCustomCase.py,sha256=aIWKFm13-EPG2XlJ3PWc2znR6q8A5FR93D5ZkGGncrM,1641
91
+ vectordb_bench/frontend/components/custom/displaypPrams.py,sha256=GNs-awcbYAyOTgmnsFl_EmwjJHhD8EoN86a1-iQfCnc,1335
92
+ vectordb_bench/frontend/components/custom/getCustomConfig.py,sha256=tSPI2DPJSNxlArLcO5Kf9nhpIBc0_YE2QD9-1cbaLus,1031
93
+ vectordb_bench/frontend/components/custom/initStyle.py,sha256=ortsoUNqH-vVq9ECiw80PnBEcIaUwxR1AQ65DSkBhGs,434
94
+ vectordb_bench/frontend/components/get_results/saveAsImage.py,sha256=POaFiwKoCGqrY-zhanWC7-tubE64bV_JjqI4lgIuMts,1459
95
+ vectordb_bench/frontend/components/run_test/autoRefresh.py,sha256=mjIa43VQQmNjYPkEbOtKNlJ1UfGPcqRKvc2Jh4kx8U0,289
96
+ vectordb_bench/frontend/components/run_test/caseSelector.py,sha256=ea3u-NDtCX32Au9YkfqGA8mhF6K_Av9HZvp0Mem3C0o,5328
97
+ vectordb_bench/frontend/components/run_test/dbConfigSetting.py,sha256=C3icY6THcWjl7SgdrKa-Gz-LU4I_YEf-1kAeVMkqu3s,2642
98
+ vectordb_bench/frontend/components/run_test/dbSelector.py,sha256=hzMEIL1DzvpP8xkL6JhELTdcml0ysC70Gw-WLr8vW9A,1123
99
+ vectordb_bench/frontend/components/run_test/generateTasks.py,sha256=3y8NHtWJMNqoP2SvoWuR7kj84g0OEg68IULebimzz7E,741
100
+ vectordb_bench/frontend/components/run_test/hideSidebar.py,sha256=vb5kzIMmbMqWX67qFEHek21X4sGO_tPyn_uPqUEtp3Q,234
101
+ vectordb_bench/frontend/components/run_test/initStyle.py,sha256=osPUgfFfH7rRlVNHSMumvmZxvKWlLxmZiNqgnMiUJEU,723
102
+ vectordb_bench/frontend/components/run_test/submitTask.py,sha256=8Ka8n7eviZi56BXfcrpsUqhLcYUHgyif0zzQ2w2hHMw,3328
103
+ vectordb_bench/frontend/components/tables/data.py,sha256=5DdnC64BB7Aj2z9acht2atsPB4NabzQCZKALfIUnqtQ,1233
104
+ vectordb_bench/frontend/config/dbCaseConfigs.py,sha256=cjFLhmHaNJKhPsAplKnjIO7ypZnlSw7S83N-WXI_gUQ,37781
105
+ vectordb_bench/frontend/config/dbPrices.py,sha256=10aBKjVcEg8y7TPSda28opmBM1KmXNrvbU9WM_BsZcE,176
106
+ vectordb_bench/frontend/config/styles.py,sha256=E2PmwmiewxBKJJ59hQ4ZXatqg8QTN-Z53JlsvWMHM2M,2291
107
+ vectordb_bench/frontend/pages/concurrent.py,sha256=bvoSafRSIsRzBQkI3uBwwrdg8jnhRUQG-epZbrJhGiE,2082
108
+ vectordb_bench/frontend/pages/custom.py,sha256=j7oJ2FHBv5O50D7YbzXTLRuIDgwkGt0iEd0FRHHkYLw,2436
109
+ vectordb_bench/frontend/pages/quries_per_dollar.py,sha256=BDukiFwxyqQK_btCSsRR5D_a17PMu0yI8Muw3eRLz6Y,2461
110
+ vectordb_bench/frontend/pages/run_test.py,sha256=izWTcNzXtEfV2zuR-0QPR5WXvsNp_Uqu2mepSwOmNrs,2121
111
+ vectordb_bench/frontend/pages/tables.py,sha256=VfBzgrgHe68gbSh4MrmVx61l5bQSNOQNrq8xmPlG00c,566
112
+ vectordb_bench/results/dbPrices.json,sha256=VoaOjqbWyTdEMLXuzerL5xR46QbxOWFmxCf2mPhjJV4,576
113
+ vectordb_bench/results/getLeaderboardData.py,sha256=fuNQmFuWEdm60McaQrXSGLApNOHRnfmvzn1soT3iGHE,2323
114
+ vectordb_bench/results/leaderboard.json,sha256=OooOar8Pj0hG-HlpOU8N_hNjJS53PaMMRSoSUtqLJ-k,69276
115
+ vectordb_bench/results/ElasticCloud/result_20230727_standard_elasticcloud.json,sha256=IyJKjHGwTCcqKJAaBgfI_hhvMIGrXMl8S9Z2-19BvEE,5807
116
+ vectordb_bench/results/ElasticCloud/result_20230808_standard_elasticcloud.json,sha256=sx_B3lbWICcMrePiYqeoJ179pwHD2l78bMf2B880QI0,4431
117
+ vectordb_bench/results/Milvus/result_20230727_standard_milvus.json,sha256=UqwfO78qx2zRRWp29J-Egw8K8R5j-FFj9vX0iUrNRm8,17709
118
+ vectordb_bench/results/Milvus/result_20230808_standard_milvus.json,sha256=ck9loRNVUGHnjSyuHWN76lGNRRPtWMW7Cj0zf3uwXEo,16303
119
+ vectordb_bench/results/PgVector/result_20230727_standard_pgvector.json,sha256=gIc05u344PkZf78Dxi8zo0_sjPuKEw9PMXqAOVxzlOo,5686
120
+ vectordb_bench/results/PgVector/result_20230808_standard_pgvector.json,sha256=vy2wTympKzQae5_fFp7zZ4dsgo607P5phCjqu2lOm3E,4323
121
+ vectordb_bench/results/Pinecone/result_20230727_standard_pinecone.json,sha256=j9AgPgFwac9IPDnzgfsmiBOcbqM20c9J-OcaRJmf7wo,24938
122
+ vectordb_bench/results/Pinecone/result_20230808_standard_pinecone.json,sha256=ccQaH5nHcF8MbVb4wOmRtml5PlxRoEOQ-OLEVZ496c4,21387
123
+ vectordb_bench/results/QdrantCloud/result_20230727_standard_qdrantcloud.json,sha256=2GaPFRiufjLFxx2yekTqLqwJnsga5urNKa16zdZrQng,11187
124
+ vectordb_bench/results/QdrantCloud/result_20230808_standard_qdrantcloud.json,sha256=tZjJSku1w4IqU-5T0LvxFfDPjf_9e0yCzMG-coiSniM,10241
125
+ vectordb_bench/results/WeaviateCloud/result_20230727_standard_weaviatecloud.json,sha256=WBlfjmbO3R4G6F4lDuneEigffUyTU7ti1SyWoff3oNI,15497
126
+ vectordb_bench/results/WeaviateCloud/result_20230808_standard_weaviatecloud.json,sha256=lXjudo-l-6H0EOIemoB5n4GddOOHJnwndrGwCJIH-EY,7865
127
+ vectordb_bench/results/ZillizCloud/result_20230727_standard_zillizcloud.json,sha256=-Mdm4By65XDRCrmVOCF8yQXjcZtH4Xo4shcjoDoBUKU,18293
128
+ vectordb_bench/results/ZillizCloud/result_20230808_standard_zillizcloud.json,sha256=77XlHT5zM_K7mG5HfDQKwXZnSCuR37VUbt6-P3J_amI,15737
129
+ vectordb_bench/results/ZillizCloud/result_20240105_standard_202401_zillizcloud.json,sha256=TualfJ0664Hs-vdIW68bdkqAEYyzotXmu2P0yIN-GHk,42526
130
+ vectordb_bench-0.0.20.dist-info/LICENSE,sha256=HXbxhrb5u5SegVzeLNF_voVgRsJMavcLaOmD1N0lZkM,1067
131
+ vectordb_bench-0.0.20.dist-info/METADATA,sha256=XlLpjF9OvIO2y9xO_kpH1_kMbAUSdGvUNTYtPTjHW_8,34577
132
+ vectordb_bench-0.0.20.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
133
+ vectordb_bench-0.0.20.dist-info/entry_points.txt,sha256=Qzw6gVx96ui8esG21H6yHsI6nboEohRmV424TYhQNrA,113
134
+ vectordb_bench-0.0.20.dist-info/top_level.txt,sha256=jnhZFZAuKX1J60yt-XOeBZ__ctiZMvoC_s0RFq29lpM,15
135
+ vectordb_bench-0.0.20.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.6.0)
2
+ Generator: setuptools (75.8.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,135 +0,0 @@
1
- vectordb_bench/__init__.py,sha256=sma1LoKYvRHXYmNKHgz1TT3oy-65scS9ZoF5o5b30SM,2151
2
- vectordb_bench/__main__.py,sha256=YJOTn5MlbmLyr3PRsecY6fj7igHLB6_D3y1HwF_sO20,848
3
- vectordb_bench/base.py,sha256=d34WCGXZI1u5RGQtqrPHd3HbOF5AmioFrM2j30Aj1sY,130
4
- vectordb_bench/interface.py,sha256=ZT3pseyq--TuxtopdP2hRut-6vIInKo62pvAl2zBD10,9708
5
- vectordb_bench/log_util.py,sha256=nMnW-sN24WyURcI07t-WA3q2N5R-YIvFgboRsSrNJDg,2906
6
- vectordb_bench/metric.py,sha256=c-LAxCtb55txnsfd3FN4gRpRif8RREhKRF0eg2JmHGc,2045
7
- vectordb_bench/models.py,sha256=_0_hscKUqaCHjdjyO_-ntPFgJvgU01y8aldqDcq9ELQ,11041
8
- vectordb_bench/backend/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
- vectordb_bench/backend/assembler.py,sha256=mmoLzWXFSlrpWvaVY41wiRNWNv2IR-LzlANX55MJbYI,2028
10
- vectordb_bench/backend/cases.py,sha256=tYAXs-8WhkXVkSfUGd5zh51IxKTojBkCgp94eU6Dbwg,16193
11
- vectordb_bench/backend/data_source.py,sha256=j4-eD0nIe7Y6fSM5WKEij3GfhyU_YOQ3L5Tyl-1GxX0,5446
12
- vectordb_bench/backend/dataset.py,sha256=MZSu0Q3AkK9gxiuLKNTMH6hhucKK668j4G1-8emhS18,8786
13
- vectordb_bench/backend/result_collector.py,sha256=jdQf5-q1z5y07SKy9Sig1wFROmm-p9x_Y81fId0sjaU,807
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
25
- vectordb_bench/backend/clients/aws_opensearch/aws_opensearch.py,sha256=O42OU7K7L0KcJ96AphjmgkyN7a220VLsOL0QwghY2aw,8038
26
- vectordb_bench/backend/clients/aws_opensearch/cli.py,sha256=v1bGoovgokhIGN5tZwb_MrP4af7BfXYQaOpDuy0Ibh0,1327
27
- vectordb_bench/backend/clients/aws_opensearch/config.py,sha256=USytbPX0zDjcWTg51J37vWWYsgualPcCHGfRFdzmGtg,1890
28
- vectordb_bench/backend/clients/aws_opensearch/run.py,sha256=cdG_LRw657k2HBnppg3yoSxHA1ScGhY5rq-3aZCxDdU,4874
29
- vectordb_bench/backend/clients/chroma/chroma.py,sha256=Rg-GVWSDLdw32XfltJQlS3JHtNX1BJYDHxTSy086tKA,3739
30
- vectordb_bench/backend/clients/chroma/config.py,sha256=7Tp_di0cdBsh4kX-IijTLsmFK2JJpcrXP2K6e24OUGc,345
31
- vectordb_bench/backend/clients/elastic_cloud/config.py,sha256=xkaBNtsayByelVLda8LiSEwxjQjESpijJ8IFOh03f_0,1598
32
- vectordb_bench/backend/clients/elastic_cloud/elastic_cloud.py,sha256=rWHthqGEpYwwka-0bsjyWfCwTAsYKNPvB17qe0Z1VDQ,5709
33
- vectordb_bench/backend/clients/memorydb/cli.py,sha256=BqU5s1CnLCXeHnSOEpQBON8wWMngeLjvnf9-UQqU9cU,2624
34
- vectordb_bench/backend/clients/memorydb/config.py,sha256=PjhLMMr_LdJ8O91JpHNCCT6HMEGLwH9r_erUMGJEVaI,1501
35
- vectordb_bench/backend/clients/memorydb/memorydb.py,sha256=XIqtXpY-2lJohIuImFDsRO3c_upn04eCplIOlaLxFo4,10114
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
39
- vectordb_bench/backend/clients/pgdiskann/cli.py,sha256=ued1DyufltataIk6KcmBkNp8PdB9Aj65nVJ6WhrD_VI,3130
40
- vectordb_bench/backend/clients/pgdiskann/config.py,sha256=8E0GLgUxa5LlJ_eXCugbbO08qdbCVqc1wtdsoOsKEW4,4444
41
- vectordb_bench/backend/clients/pgdiskann/pgdiskann.py,sha256=bEcbpTVSFxRJ5HiJTX77cgu6NqTMPs8qiGeMF7jBC30,12628
42
- vectordb_bench/backend/clients/pgvecto_rs/cli.py,sha256=OI-l3LfthysqaybEmaFwbVcrFKCnG0Hok6A-dOSXIlY,4717
43
- vectordb_bench/backend/clients/pgvecto_rs/config.py,sha256=FsqNYtx4ILE0TDDOAidJYWK0g197Gf80rAf9Ksp2qNY,4819
44
- vectordb_bench/backend/clients/pgvecto_rs/pgvecto_rs.py,sha256=0-mICBbfs4LxY5bKnxNhOr0HiS0cXfGq_orBhqfEYIc,9921
45
- vectordb_bench/backend/clients/pgvector/cli.py,sha256=uBJAu0my70zse6I390mq0EKIwyZ5hXj5fA9EFLJnvQw,6024
46
- vectordb_bench/backend/clients/pgvector/config.py,sha256=lr1Gx4KOM48UCZguK09zd2SP609BRWnKRG73nW51Lk0,9113
47
- vectordb_bench/backend/clients/pgvector/pgvector.py,sha256=Bjwq-XOnGmSOObXMzs_clEVSMf1bqYlclHNFJzAxxg0,18537
48
- vectordb_bench/backend/clients/pgvectorscale/cli.py,sha256=fGxY3nh9qLWR0FPZixkJlsCIZlhX1ibMONZ8JIi1dYI,3287
49
- vectordb_bench/backend/clients/pgvectorscale/config.py,sha256=Rml0khQLedECSFR8O6VTWYPoLa2qGTTf8Id_0HaCvEU,3204
50
- vectordb_bench/backend/clients/pgvectorscale/pgvectorscale.py,sha256=RXYoUqnTQJ1iegyie_LHhxBAXIolGYwNRqaBhB6DK3A,10275
51
- vectordb_bench/backend/clients/pinecone/config.py,sha256=Z3oo3GGHkChyZ8XDMX7o2pAiJUIb-htGsYWpbCmwIb4,293
52
- vectordb_bench/backend/clients/pinecone/pinecone.py,sha256=5DbooRw5NvV3XJ-wJiNYc4T7pztSZH592zaCUUFdGkM,3730
53
- vectordb_bench/backend/clients/qdrant_cloud/config.py,sha256=jk6gLcjZnjV0kQlc4RrrcXyekF6qkwzgWOYD3Mm8AOU,1385
54
- vectordb_bench/backend/clients/qdrant_cloud/qdrant_cloud.py,sha256=lgMPwP37A-NQWHtxL58qojsUcL68EtrH_0Xk_hrs7OY,5224
55
- vectordb_bench/backend/clients/redis/cli.py,sha256=FYzkaBzT8qGkNC8T2vNftesX-xdacCtZE-qu29ZyBfU,2218
56
- vectordb_bench/backend/clients/redis/config.py,sha256=4ufL1AFrNG3udJdOzMaDYI3gHWWc1FaT-lxeDpdU3lg,1252
57
- vectordb_bench/backend/clients/redis/redis.py,sha256=35g9KPL8_zGeo7eYdYRaabq5dlkDXwMQ9TD8YsVser0,5976
58
- vectordb_bench/backend/clients/test/cli.py,sha256=8TByn_5OhO_rMyJV1vdRmKYbtsrXXyFK1hh3Ii2QOhw,552
59
- vectordb_bench/backend/clients/test/config.py,sha256=1olqOWmkcucyd3EMMSkCT-0lbPyf4v5RHfTsGMuWSvc,412
60
- vectordb_bench/backend/clients/test/test.py,sha256=b9-LOih079Lj_CMcZyno1vpKaU_Fooi8lpY3rF-3BsU,1479
61
- vectordb_bench/backend/clients/weaviate_cloud/cli.py,sha256=i8evyzTPFEgnevYYe46ZOjpFOYd3IpZ5Q-wVeuh_vgk,1060
62
- vectordb_bench/backend/clients/weaviate_cloud/config.py,sha256=jFhZ9cwMRoLxppR4udboSc4EPO-bnv5A5ITR9akevHE,1247
63
- vectordb_bench/backend/clients/weaviate_cloud/weaviate_cloud.py,sha256=mM6kO_W0z1pNIGEKxS1rI3_JEDf4ovoXqXZOGF7A-90,4993
64
- vectordb_bench/backend/clients/zilliz_cloud/cli.py,sha256=V8XnjrM4IOexqJksQCBgEYyYfQJPXouKeTthEAVRlYU,1569
65
- vectordb_bench/backend/clients/zilliz_cloud/config.py,sha256=3Tk7X4r0n2SLzan110xlF63otVGjCKe28CVDfCEI04c,910
66
- vectordb_bench/backend/clients/zilliz_cloud/zilliz_cloud.py,sha256=4JcwiVEJcdEykW6n471nfHeIlmhIDa-gOZ7G5H_4krY,681
67
- vectordb_bench/backend/runner/__init__.py,sha256=5dZfPky8pY9Bi9HD5GZ3Fge8V2FJWrkGkQUkNL2v1t0,230
68
- vectordb_bench/backend/runner/mp_runner.py,sha256=sPJJWg6bKSQYsyWEe5y_j8i_Cf9l5buhtyY-wZxXDAI,9080
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
73
- vectordb_bench/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
74
- vectordb_bench/cli/cli.py,sha256=Z2-vLwvnnZFsVAPyjFK557cZZYWX_q60XVJP-aYUGdc,15416
75
- vectordb_bench/cli/vectordbbench.py,sha256=jbpyjh4xKVRocxg4XurLL3ABUzBRXEChRGYhyqH4ItE,1140
76
- vectordb_bench/config-files/sample_config.yml,sha256=yw9ZgHczNi9PedNuTVxZKiOTI6AVoQS1h8INNgoDjPk,340
77
- vectordb_bench/custom/custom_case.json,sha256=uKo7NJgXDPPLtf_V6y1uc5w1aIcjLp-GCJEYOCty1As,475
78
- vectordb_bench/frontend/utils.py,sha256=jCyfk0QyLl3RLh-1MBRbBy6aep9hO32ScJCDYA2kaZU,489
79
- vectordb_bench/frontend/vdb_benchmark.py,sha256=kEcjjNnTzJOhqaULwjhqMSZkwuk1-1eCrybb2YVats0,1791
80
- vectordb_bench/frontend/components/check_results/charts.py,sha256=rMbcK0in2OY4c30HJNbIFNVVn0ZKSci_MQF03O2TtC0,5236
81
- vectordb_bench/frontend/components/check_results/data.py,sha256=opbDpCtqdCJqZetz6U48bNwO0Uxu4qMsatvK-zzKSFg,3546
82
- vectordb_bench/frontend/components/check_results/expanderStyle.py,sha256=XLnJlDai8A8TQhr2iYQpZXIB31YUrrjrmFvLFHT5uOg,1299
83
- vectordb_bench/frontend/components/check_results/filters.py,sha256=oJNBLsx4q9tP2-PdsYqZnZTHTBAmrVgV-VWV_mMF5GA,4479
84
- vectordb_bench/frontend/components/check_results/footer.py,sha256=Nh1RzorDg-8R5ewp_UGFnUqWaAEZ7xZ1RpqHDew1mGY,395
85
- vectordb_bench/frontend/components/check_results/headerIcon.py,sha256=0uvvSe-oroh58iKzyXeNch0z2Xh7n-plKIGRUmwYnH4,434
86
- vectordb_bench/frontend/components/check_results/nav.py,sha256=DQl74rujw70ayh37PQaiO4AdtVZ95-OtTMEtw_Ui7hE,685
87
- vectordb_bench/frontend/components/check_results/priceTable.py,sha256=n7OLXfG95CECPR9lQuK_7HXd3jjprmuk8EHgJ8hcth4,1309
88
- vectordb_bench/frontend/components/check_results/stPageConfig.py,sha256=vHDHS3qwAbOAQ-Zvz3DftUiKJS4Xs109172aWUmzOt0,430
89
- vectordb_bench/frontend/components/concurrent/charts.py,sha256=H1FSMrnwzmqUInJoHGLVceqLm0-CJ66ujbSNVQJ_SBg,2830
90
- vectordb_bench/frontend/components/custom/displayCustomCase.py,sha256=oZfvtiCWr3VnHdvXgcf5YoqvtPWsfMN-YOT7KKoIxp4,1613
91
- vectordb_bench/frontend/components/custom/displaypPrams.py,sha256=pxpHgnyGItxkwbajI8qIun0YBY23ZZAvsnK5z7_g5p4,1321
92
- vectordb_bench/frontend/components/custom/getCustomConfig.py,sha256=P0WCMla2hmzeDcsHju6gFMQrugsBzajAVSYtBZTEwWg,1050
93
- vectordb_bench/frontend/components/custom/initStyle.py,sha256=J9aLRHM1hjfgsguxs2b8a5vKtLyEmTMzY0m6M895AMU,433
94
- vectordb_bench/frontend/components/get_results/saveAsImage.py,sha256=MdQCqjrX5rQyK34XfTkVykVLOcOouIz4enMR1P5GBiY,1457
95
- vectordb_bench/frontend/components/run_test/autoRefresh.py,sha256=mjIa43VQQmNjYPkEbOtKNlJ1UfGPcqRKvc2Jh4kx8U0,289
96
- vectordb_bench/frontend/components/run_test/caseSelector.py,sha256=EDFktC5-S02frep4Cdq0PsZnX3FSNsf2AHx3syAp8TY,5459
97
- vectordb_bench/frontend/components/run_test/dbConfigSetting.py,sha256=xblWegGPcpDoPUWmu1ocen2J6o6AS11IM8yVxZBk-Fs,2678
98
- vectordb_bench/frontend/components/run_test/dbSelector.py,sha256=61eAW3a4RdEEwF4qNxlfb2FLZMfGFO683f3XDVMSNxY,1128
99
- vectordb_bench/frontend/components/run_test/generateTasks.py,sha256=52hlpyB2_Sz3kygWc5jV-jfGBvXhUQh0as18t-pkGmw,773
100
- vectordb_bench/frontend/components/run_test/hideSidebar.py,sha256=vb5kzIMmbMqWX67qFEHek21X4sGO_tPyn_uPqUEtp3Q,234
101
- vectordb_bench/frontend/components/run_test/initStyle.py,sha256=osPUgfFfH7rRlVNHSMumvmZxvKWlLxmZiNqgnMiUJEU,723
102
- vectordb_bench/frontend/components/run_test/submitTask.py,sha256=NCEXfR3xudAncjVEvsV2iaiov5AatGObe830UI6481M,3341
103
- vectordb_bench/frontend/components/tables/data.py,sha256=pVG_hb4bTMLfUt10NUCJSqcFkPmnN7i9jTw9DcWizpI,1364
104
- vectordb_bench/frontend/config/dbCaseConfigs.py,sha256=SpTfVtAlLsV9zWrg8zxeGCvLNGlCITWKc7xPN7dPUP8,37921
105
- vectordb_bench/frontend/config/dbPrices.py,sha256=10aBKjVcEg8y7TPSda28opmBM1KmXNrvbU9WM_BsZcE,176
106
- vectordb_bench/frontend/config/styles.py,sha256=E2PmwmiewxBKJJ59hQ4ZXatqg8QTN-Z53JlsvWMHM2M,2291
107
- vectordb_bench/frontend/pages/concurrent.py,sha256=z2izkQ0suO5mZ8PpVY2jypZkF5VT8xUkQQEkwd6C-ww,2094
108
- vectordb_bench/frontend/pages/custom.py,sha256=BYQuWa7_OQz0wnDvh0LiXzjevmDpO2BbSIuF1_Z_39M,2234
109
- vectordb_bench/frontend/pages/quries_per_dollar.py,sha256=SRLPjGfXwZOIrLeDLgVNg1kE6xjAu-QfmXoa3Sfiqi8,2510
110
- vectordb_bench/frontend/pages/run_test.py,sha256=b1NoMhFA3MmUyItkofh3xozvo1vAqywXKOsoWdIWmRU,2161
111
- vectordb_bench/frontend/pages/tables.py,sha256=VfBzgrgHe68gbSh4MrmVx61l5bQSNOQNrq8xmPlG00c,566
112
- vectordb_bench/results/dbPrices.json,sha256=VoaOjqbWyTdEMLXuzerL5xR46QbxOWFmxCf2mPhjJV4,576
113
- vectordb_bench/results/getLeaderboardData.py,sha256=fuNQmFuWEdm60McaQrXSGLApNOHRnfmvzn1soT3iGHE,2323
114
- vectordb_bench/results/leaderboard.json,sha256=OooOar8Pj0hG-HlpOU8N_hNjJS53PaMMRSoSUtqLJ-k,69276
115
- vectordb_bench/results/ElasticCloud/result_20230727_standard_elasticcloud.json,sha256=IyJKjHGwTCcqKJAaBgfI_hhvMIGrXMl8S9Z2-19BvEE,5807
116
- vectordb_bench/results/ElasticCloud/result_20230808_standard_elasticcloud.json,sha256=sx_B3lbWICcMrePiYqeoJ179pwHD2l78bMf2B880QI0,4431
117
- vectordb_bench/results/Milvus/result_20230727_standard_milvus.json,sha256=UqwfO78qx2zRRWp29J-Egw8K8R5j-FFj9vX0iUrNRm8,17709
118
- vectordb_bench/results/Milvus/result_20230808_standard_milvus.json,sha256=ck9loRNVUGHnjSyuHWN76lGNRRPtWMW7Cj0zf3uwXEo,16303
119
- vectordb_bench/results/PgVector/result_20230727_standard_pgvector.json,sha256=gIc05u344PkZf78Dxi8zo0_sjPuKEw9PMXqAOVxzlOo,5686
120
- vectordb_bench/results/PgVector/result_20230808_standard_pgvector.json,sha256=vy2wTympKzQae5_fFp7zZ4dsgo607P5phCjqu2lOm3E,4323
121
- vectordb_bench/results/Pinecone/result_20230727_standard_pinecone.json,sha256=j9AgPgFwac9IPDnzgfsmiBOcbqM20c9J-OcaRJmf7wo,24938
122
- vectordb_bench/results/Pinecone/result_20230808_standard_pinecone.json,sha256=ccQaH5nHcF8MbVb4wOmRtml5PlxRoEOQ-OLEVZ496c4,21387
123
- vectordb_bench/results/QdrantCloud/result_20230727_standard_qdrantcloud.json,sha256=2GaPFRiufjLFxx2yekTqLqwJnsga5urNKa16zdZrQng,11187
124
- vectordb_bench/results/QdrantCloud/result_20230808_standard_qdrantcloud.json,sha256=tZjJSku1w4IqU-5T0LvxFfDPjf_9e0yCzMG-coiSniM,10241
125
- vectordb_bench/results/WeaviateCloud/result_20230727_standard_weaviatecloud.json,sha256=WBlfjmbO3R4G6F4lDuneEigffUyTU7ti1SyWoff3oNI,15497
126
- vectordb_bench/results/WeaviateCloud/result_20230808_standard_weaviatecloud.json,sha256=lXjudo-l-6H0EOIemoB5n4GddOOHJnwndrGwCJIH-EY,7865
127
- vectordb_bench/results/ZillizCloud/result_20230727_standard_zillizcloud.json,sha256=-Mdm4By65XDRCrmVOCF8yQXjcZtH4Xo4shcjoDoBUKU,18293
128
- vectordb_bench/results/ZillizCloud/result_20230808_standard_zillizcloud.json,sha256=77XlHT5zM_K7mG5HfDQKwXZnSCuR37VUbt6-P3J_amI,15737
129
- vectordb_bench/results/ZillizCloud/result_20240105_standard_202401_zillizcloud.json,sha256=TualfJ0664Hs-vdIW68bdkqAEYyzotXmu2P0yIN-GHk,42526
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,,