vectordb-bench 0.0.18__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 +56 -46
  5. vectordb_bench/backend/clients/__init__.py +101 -14
  6. vectordb_bench/backend/clients/aliyun_elasticsearch/aliyun_elasticsearch.py +26 -0
  7. vectordb_bench/backend/clients/aliyun_elasticsearch/config.py +18 -0
  8. vectordb_bench/backend/clients/aliyun_opensearch/aliyun_opensearch.py +345 -0
  9. vectordb_bench/backend/clients/aliyun_opensearch/config.py +47 -0
  10. vectordb_bench/backend/clients/alloydb/alloydb.py +58 -80
  11. vectordb_bench/backend/clients/alloydb/cli.py +52 -35
  12. vectordb_bench/backend/clients/alloydb/config.py +30 -30
  13. vectordb_bench/backend/clients/api.py +8 -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 +62 -80
  26. vectordb_bench/backend/clients/milvus/config.py +31 -7
  27. vectordb_bench/backend/clients/milvus/milvus.py +23 -26
  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 +51 -23
  62. vectordb_bench/backend/runner/read_write_runner.py +140 -46
  63. vectordb_bench/backend/runner/serial_runner.py +99 -50
  64. vectordb_bench/backend/runner/util.py +4 -19
  65. vectordb_bench/backend/task_runner.py +95 -74
  66. vectordb_bench/backend/utils.py +17 -9
  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 +108 -83
  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.18.dist-info → vectordb_bench-0.0.20.dist-info}/METADATA +34 -42
  100. vectordb_bench-0.0.20.dist-info/RECORD +135 -0
  101. {vectordb_bench-0.0.18.dist-info → vectordb_bench-0.0.20.dist-info}/WHEEL +1 -1
  102. vectordb_bench-0.0.18.dist-info/RECORD +0 -131
  103. {vectordb_bench-0.0.18.dist-info → vectordb_bench-0.0.20.dist-info}/LICENSE +0 -0
  104. {vectordb_bench-0.0.18.dist-info → vectordb_bench-0.0.20.dist-info}/entry_points.txt +0 -0
  105. {vectordb_bench-0.0.18.dist-info → vectordb_bench-0.0.20.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: vectordb-bench
3
- Version: 0.0.18
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
@@ -35,15 +36,18 @@ Requires-Dist: qdrant-client; extra == "all"
35
36
  Requires-Dist: pinecone-client; extra == "all"
36
37
  Requires-Dist: weaviate-client; extra == "all"
37
38
  Requires-Dist: elasticsearch; extra == "all"
38
- Requires-Dist: pgvector; extra == "all"
39
- Requires-Dist: pgvecto_rs[psycopg3]>=0.2.2; extra == "all"
40
39
  Requires-Dist: sqlalchemy; extra == "all"
41
40
  Requires-Dist: redis; extra == "all"
42
41
  Requires-Dist: chromadb; extra == "all"
42
+ Requires-Dist: pgvector; extra == "all"
43
43
  Requires-Dist: psycopg; extra == "all"
44
44
  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"
45
+ Requires-Dist: pgvecto_rs[psycopg3]>=0.2.2; extra == "all"
46
+ Requires-Dist: opensearch-dsl; extra == "all"
47
+ Requires-Dist: opensearch-py; extra == "all"
48
+ Requires-Dist: memorydb; extra == "all"
49
+ Requires-Dist: alibabacloud_ha3engine_vector; extra == "all"
50
+ Requires-Dist: alibabacloud_searchengine20211025; extra == "all"
47
51
  Provides-Extra: qdrant
48
52
  Requires-Dist: qdrant-client; extra == "qdrant"
49
53
  Provides-Extra: pinecone
@@ -56,18 +60,6 @@ Provides-Extra: pgvector
56
60
  Requires-Dist: psycopg; extra == "pgvector"
57
61
  Requires-Dist: psycopg-binary; extra == "pgvector"
58
62
  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
- Provides-Extra: alloydb
68
- Requires-Dist: psycopg; extra == "alloydb"
69
- Requires-Dist: psycopg-binary; extra == "alloydb"
70
- Requires-Dist: pgvector; extra == "alloydb"
71
63
  Provides-Extra: pgvecto-rs
72
64
  Requires-Dist: pgvecto_rs[psycopg3]>=0.2.2; extra == "pgvecto-rs"
73
65
  Provides-Extra: redis
@@ -76,15 +68,27 @@ Provides-Extra: memorydb
76
68
  Requires-Dist: memorydb; extra == "memorydb"
77
69
  Provides-Extra: chromadb
78
70
  Requires-Dist: chromadb; extra == "chromadb"
79
- Provides-Extra: awsopensearch
80
- Requires-Dist: awsopensearch; extra == "awsopensearch"
81
- Provides-Extra: zilliz-cloud
71
+ Provides-Extra: opensearch
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"
82
76
 
83
77
  # VectorDBBench: A Benchmark Tool for VectorDB
84
78
 
85
79
  [![version](https://img.shields.io/pypi/v/vectordb-bench.svg?color=blue)](https://pypi.org/project/vectordb-bench/)
86
80
  [![Downloads](https://pepy.tech/badge/vectordb-bench)](https://pepy.tech/project/vectordb-bench)
87
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
+
88
92
  **Leaderboard:** https://zilliz.com/benchmark
89
93
  ## Quick Start
90
94
  ### Prerequirement
@@ -111,21 +115,19 @@ All the database client supported
111
115
 
112
116
  | Optional database client | install command |
113
117
  |--------------------------|---------------------------------------------|
114
- | pymilvus(*default*) | `pip install vectordb-bench` |
115
- | all | `pip install vectordb-bench[all]` |
118
+ | pymilvus, zilliz_cloud (*default*) | `pip install vectordb-bench` |
119
+ | all (*clients requirements might be conflict with each other*) | `pip install vectordb-bench[all]` |
116
120
  | qdrant | `pip install vectordb-bench[qdrant]` |
117
121
  | pinecone | `pip install vectordb-bench[pinecone]` |
118
122
  | weaviate | `pip install vectordb-bench[weaviate]` |
119
- | elastic | `pip install vectordb-bench[elastic]` |
120
- | pgvector | `pip install vectordb-bench[pgvector]` |
123
+ | elastic, aliyun_elasticsearch| `pip install vectordb-bench[elastic]` |
124
+ | pgvector, pgvectorscale, pgdiskann, alloydb | `pip install vectordb-bench[pgvector]` |
121
125
  | pgvecto.rs | `pip install vectordb-bench[pgvecto_rs]` |
122
- | pgvectorscale | `pip install vectordb-bench[pgvectorscale]` |
123
- | pgdiskann | `pip install vectordb-bench[pgdiskann]` |
124
126
  | redis | `pip install vectordb-bench[redis]` |
125
127
  | memorydb | `pip install vectordb-bench[memorydb]` |
126
128
  | chromadb | `pip install vectordb-bench[chromadb]` |
127
- | awsopensearch | `pip install vectordb-bench[awsopensearch]` |
128
- | alloydb | `pip install vectordb-bench[alloydb]` |
129
+ | awsopensearch | `pip install vectordb-bench[opensearch]` |
130
+ | aliyun_opensearch | `pip install vectordb-bench[aliyun_opensearch]` |
129
131
 
130
132
  ### Run
131
133
 
@@ -264,16 +266,6 @@ milvushnsw:
264
266
  > - Options passed on the command line will override the configuration file*
265
267
  > - Parameter names use an _ not -
266
268
 
267
- ## What is VectorDBBench
268
- 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.
269
-
270
- 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.
271
- 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.
272
-
273
- 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!
274
-
275
- Prepare to delve into the world of VectorDBBench, and let it guide you in uncovering your perfect vector database match.
276
-
277
269
  ## Leaderboard
278
270
  ### Introduction
279
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.
@@ -324,13 +316,13 @@ After reopen the repository in container, run `python -m vectordb_bench` in the
324
316
 
325
317
  ### Check coding styles
326
318
  ```shell
327
- $ ruff check vectordb_bench
319
+ $ make lint
328
320
  ```
329
321
 
330
- Add `--fix` if you want to fix the coding styles automatically
322
+ To fix the coding styles automatically
331
323
 
332
324
  ```shell
333
- $ ruff check vectordb_bench --fix
325
+ $ make format
334
326
  ```
335
327
 
336
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,131 +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=lQ9jgKaJGunj-mJXR3cgGt16wCsrDrvs-GS3ycTDk0U,16169
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=cn_RRDyFfNSLlTT84W-ZaXvdl54pK6Cxcsp9ucNRcCs,11864
15
- vectordb_bench/backend/utils.py,sha256=2UixYyfKvl8zRiashywB1l6hTI3jMtiZhiVm_bXHV1Y,1811
16
- vectordb_bench/backend/clients/__init__.py,sha256=JKDRKwfDDZLZFct_wahtSEpqu00HVZBNsVyhJ_hHTL8,6701
17
- vectordb_bench/backend/clients/api.py,sha256=phvqTME3NEPyZGTo85MPeOWwICZO06W3388GT5g72pc,6210
18
- vectordb_bench/backend/clients/alloydb/alloydb.py,sha256=rAV558tyd2hX3jcl3bRcxOkeq__GSAXLxfl3MqkAVkM,13375
19
- vectordb_bench/backend/clients/alloydb/cli.py,sha256=5g3heAEfuwIHCUIHDU4LYQq-CaQto0sGAdr45jdhuNc,4970
20
- vectordb_bench/backend/clients/alloydb/config.py,sha256=JFQMHvBWG1P5T4N7B95o4tMfN4cVqb01I5TNvjDYQuw,5358
21
- vectordb_bench/backend/clients/aws_opensearch/aws_opensearch.py,sha256=O42OU7K7L0KcJ96AphjmgkyN7a220VLsOL0QwghY2aw,8038
22
- vectordb_bench/backend/clients/aws_opensearch/cli.py,sha256=v1bGoovgokhIGN5tZwb_MrP4af7BfXYQaOpDuy0Ibh0,1327
23
- vectordb_bench/backend/clients/aws_opensearch/config.py,sha256=USytbPX0zDjcWTg51J37vWWYsgualPcCHGfRFdzmGtg,1890
24
- vectordb_bench/backend/clients/aws_opensearch/run.py,sha256=cdG_LRw657k2HBnppg3yoSxHA1ScGhY5rq-3aZCxDdU,4874
25
- vectordb_bench/backend/clients/chroma/chroma.py,sha256=Rg-GVWSDLdw32XfltJQlS3JHtNX1BJYDHxTSy086tKA,3739
26
- vectordb_bench/backend/clients/chroma/config.py,sha256=7Tp_di0cdBsh4kX-IijTLsmFK2JJpcrXP2K6e24OUGc,345
27
- vectordb_bench/backend/clients/elastic_cloud/config.py,sha256=xkaBNtsayByelVLda8LiSEwxjQjESpijJ8IFOh03f_0,1598
28
- vectordb_bench/backend/clients/elastic_cloud/elastic_cloud.py,sha256=rWHthqGEpYwwka-0bsjyWfCwTAsYKNPvB17qe0Z1VDQ,5709
29
- vectordb_bench/backend/clients/memorydb/cli.py,sha256=BqU5s1CnLCXeHnSOEpQBON8wWMngeLjvnf9-UQqU9cU,2624
30
- vectordb_bench/backend/clients/memorydb/config.py,sha256=PjhLMMr_LdJ8O91JpHNCCT6HMEGLwH9r_erUMGJEVaI,1501
31
- vectordb_bench/backend/clients/memorydb/memorydb.py,sha256=XIqtXpY-2lJohIuImFDsRO3c_upn04eCplIOlaLxFo4,10114
32
- vectordb_bench/backend/clients/milvus/cli.py,sha256=QqzYIOeUSXEvdLH0_YUMhwDHUDJirTNKeUxrJQIqSdw,8506
33
- vectordb_bench/backend/clients/milvus/config.py,sha256=AZ4QHoufRIjsX2eVrtnug8SeYnuHeBMna_34OQNFxz0,6847
34
- vectordb_bench/backend/clients/milvus/milvus.py,sha256=7l2ilpZeCVnXLkWjut2EoIhUraYL7qWfSsBrRaq4vuo,7700
35
- vectordb_bench/backend/clients/pgdiskann/cli.py,sha256=ued1DyufltataIk6KcmBkNp8PdB9Aj65nVJ6WhrD_VI,3130
36
- vectordb_bench/backend/clients/pgdiskann/config.py,sha256=8E0GLgUxa5LlJ_eXCugbbO08qdbCVqc1wtdsoOsKEW4,4444
37
- vectordb_bench/backend/clients/pgdiskann/pgdiskann.py,sha256=bEcbpTVSFxRJ5HiJTX77cgu6NqTMPs8qiGeMF7jBC30,12628
38
- vectordb_bench/backend/clients/pgvecto_rs/cli.py,sha256=OI-l3LfthysqaybEmaFwbVcrFKCnG0Hok6A-dOSXIlY,4717
39
- vectordb_bench/backend/clients/pgvecto_rs/config.py,sha256=FsqNYtx4ILE0TDDOAidJYWK0g197Gf80rAf9Ksp2qNY,4819
40
- vectordb_bench/backend/clients/pgvecto_rs/pgvecto_rs.py,sha256=0-mICBbfs4LxY5bKnxNhOr0HiS0cXfGq_orBhqfEYIc,9921
41
- vectordb_bench/backend/clients/pgvector/cli.py,sha256=uBJAu0my70zse6I390mq0EKIwyZ5hXj5fA9EFLJnvQw,6024
42
- vectordb_bench/backend/clients/pgvector/config.py,sha256=lr1Gx4KOM48UCZguK09zd2SP609BRWnKRG73nW51Lk0,9113
43
- vectordb_bench/backend/clients/pgvector/pgvector.py,sha256=Bjwq-XOnGmSOObXMzs_clEVSMf1bqYlclHNFJzAxxg0,18537
44
- vectordb_bench/backend/clients/pgvectorscale/cli.py,sha256=fGxY3nh9qLWR0FPZixkJlsCIZlhX1ibMONZ8JIi1dYI,3287
45
- vectordb_bench/backend/clients/pgvectorscale/config.py,sha256=Rml0khQLedECSFR8O6VTWYPoLa2qGTTf8Id_0HaCvEU,3204
46
- vectordb_bench/backend/clients/pgvectorscale/pgvectorscale.py,sha256=RXYoUqnTQJ1iegyie_LHhxBAXIolGYwNRqaBhB6DK3A,10275
47
- vectordb_bench/backend/clients/pinecone/config.py,sha256=Z3oo3GGHkChyZ8XDMX7o2pAiJUIb-htGsYWpbCmwIb4,293
48
- vectordb_bench/backend/clients/pinecone/pinecone.py,sha256=5DbooRw5NvV3XJ-wJiNYc4T7pztSZH592zaCUUFdGkM,3730
49
- vectordb_bench/backend/clients/qdrant_cloud/config.py,sha256=jk6gLcjZnjV0kQlc4RrrcXyekF6qkwzgWOYD3Mm8AOU,1385
50
- vectordb_bench/backend/clients/qdrant_cloud/qdrant_cloud.py,sha256=lgMPwP37A-NQWHtxL58qojsUcL68EtrH_0Xk_hrs7OY,5224
51
- vectordb_bench/backend/clients/redis/cli.py,sha256=FYzkaBzT8qGkNC8T2vNftesX-xdacCtZE-qu29ZyBfU,2218
52
- vectordb_bench/backend/clients/redis/config.py,sha256=4ufL1AFrNG3udJdOzMaDYI3gHWWc1FaT-lxeDpdU3lg,1252
53
- vectordb_bench/backend/clients/redis/redis.py,sha256=35g9KPL8_zGeo7eYdYRaabq5dlkDXwMQ9TD8YsVser0,5976
54
- vectordb_bench/backend/clients/test/cli.py,sha256=8TByn_5OhO_rMyJV1vdRmKYbtsrXXyFK1hh3Ii2QOhw,552
55
- vectordb_bench/backend/clients/test/config.py,sha256=1olqOWmkcucyd3EMMSkCT-0lbPyf4v5RHfTsGMuWSvc,412
56
- vectordb_bench/backend/clients/test/test.py,sha256=b9-LOih079Lj_CMcZyno1vpKaU_Fooi8lpY3rF-3BsU,1479
57
- vectordb_bench/backend/clients/weaviate_cloud/cli.py,sha256=i8evyzTPFEgnevYYe46ZOjpFOYd3IpZ5Q-wVeuh_vgk,1060
58
- vectordb_bench/backend/clients/weaviate_cloud/config.py,sha256=jFhZ9cwMRoLxppR4udboSc4EPO-bnv5A5ITR9akevHE,1247
59
- vectordb_bench/backend/clients/weaviate_cloud/weaviate_cloud.py,sha256=mM6kO_W0z1pNIGEKxS1rI3_JEDf4ovoXqXZOGF7A-90,4993
60
- vectordb_bench/backend/clients/zilliz_cloud/cli.py,sha256=V8XnjrM4IOexqJksQCBgEYyYfQJPXouKeTthEAVRlYU,1569
61
- vectordb_bench/backend/clients/zilliz_cloud/config.py,sha256=3Tk7X4r0n2SLzan110xlF63otVGjCKe28CVDfCEI04c,910
62
- vectordb_bench/backend/clients/zilliz_cloud/zilliz_cloud.py,sha256=4JcwiVEJcdEykW6n471nfHeIlmhIDa-gOZ7G5H_4krY,681
63
- vectordb_bench/backend/runner/__init__.py,sha256=5dZfPky8pY9Bi9HD5GZ3Fge8V2FJWrkGkQUkNL2v1t0,230
64
- vectordb_bench/backend/runner/mp_runner.py,sha256=sPJJWg6bKSQYsyWEe5y_j8i_Cf9l5buhtyY-wZxXDAI,9080
65
- vectordb_bench/backend/runner/rate_runner.py,sha256=qLfirLmS9tR0-3jljaWD_AMw_gt6nwhAVVkxhoo4F4A,3195
66
- vectordb_bench/backend/runner/read_write_runner.py,sha256=B8PD_gRS5K1nFH5004x6ON1Z8TulK7c4QepW3Glltd8,4732
67
- vectordb_bench/backend/runner/serial_runner.py,sha256=ku1Dtps9JcmwCwZq7eDw0pcP9IN2Zjjg-1VJumXYJpA,9414
68
- vectordb_bench/backend/runner/util.py,sha256=pGJn-qXWwGXVlmsMulaqH0zXcasDWjsVwwOJeDFWXhc,1032
69
- vectordb_bench/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
70
- vectordb_bench/cli/cli.py,sha256=Z2-vLwvnnZFsVAPyjFK557cZZYWX_q60XVJP-aYUGdc,15416
71
- vectordb_bench/cli/vectordbbench.py,sha256=jbpyjh4xKVRocxg4XurLL3ABUzBRXEChRGYhyqH4ItE,1140
72
- vectordb_bench/config-files/sample_config.yml,sha256=yw9ZgHczNi9PedNuTVxZKiOTI6AVoQS1h8INNgoDjPk,340
73
- vectordb_bench/custom/custom_case.json,sha256=uKo7NJgXDPPLtf_V6y1uc5w1aIcjLp-GCJEYOCty1As,475
74
- vectordb_bench/frontend/utils.py,sha256=jCyfk0QyLl3RLh-1MBRbBy6aep9hO32ScJCDYA2kaZU,489
75
- vectordb_bench/frontend/vdb_benchmark.py,sha256=kEcjjNnTzJOhqaULwjhqMSZkwuk1-1eCrybb2YVats0,1791
76
- vectordb_bench/frontend/components/check_results/charts.py,sha256=rMbcK0in2OY4c30HJNbIFNVVn0ZKSci_MQF03O2TtC0,5236
77
- vectordb_bench/frontend/components/check_results/data.py,sha256=opbDpCtqdCJqZetz6U48bNwO0Uxu4qMsatvK-zzKSFg,3546
78
- vectordb_bench/frontend/components/check_results/expanderStyle.py,sha256=XLnJlDai8A8TQhr2iYQpZXIB31YUrrjrmFvLFHT5uOg,1299
79
- vectordb_bench/frontend/components/check_results/filters.py,sha256=oJNBLsx4q9tP2-PdsYqZnZTHTBAmrVgV-VWV_mMF5GA,4479
80
- vectordb_bench/frontend/components/check_results/footer.py,sha256=Nh1RzorDg-8R5ewp_UGFnUqWaAEZ7xZ1RpqHDew1mGY,395
81
- vectordb_bench/frontend/components/check_results/headerIcon.py,sha256=0uvvSe-oroh58iKzyXeNch0z2Xh7n-plKIGRUmwYnH4,434
82
- vectordb_bench/frontend/components/check_results/nav.py,sha256=DQl74rujw70ayh37PQaiO4AdtVZ95-OtTMEtw_Ui7hE,685
83
- vectordb_bench/frontend/components/check_results/priceTable.py,sha256=n7OLXfG95CECPR9lQuK_7HXd3jjprmuk8EHgJ8hcth4,1309
84
- vectordb_bench/frontend/components/check_results/stPageConfig.py,sha256=vHDHS3qwAbOAQ-Zvz3DftUiKJS4Xs109172aWUmzOt0,430
85
- vectordb_bench/frontend/components/concurrent/charts.py,sha256=H1FSMrnwzmqUInJoHGLVceqLm0-CJ66ujbSNVQJ_SBg,2830
86
- vectordb_bench/frontend/components/custom/displayCustomCase.py,sha256=oZfvtiCWr3VnHdvXgcf5YoqvtPWsfMN-YOT7KKoIxp4,1613
87
- vectordb_bench/frontend/components/custom/displaypPrams.py,sha256=pxpHgnyGItxkwbajI8qIun0YBY23ZZAvsnK5z7_g5p4,1321
88
- vectordb_bench/frontend/components/custom/getCustomConfig.py,sha256=P0WCMla2hmzeDcsHju6gFMQrugsBzajAVSYtBZTEwWg,1050
89
- vectordb_bench/frontend/components/custom/initStyle.py,sha256=J9aLRHM1hjfgsguxs2b8a5vKtLyEmTMzY0m6M895AMU,433
90
- vectordb_bench/frontend/components/get_results/saveAsImage.py,sha256=MdQCqjrX5rQyK34XfTkVykVLOcOouIz4enMR1P5GBiY,1457
91
- vectordb_bench/frontend/components/run_test/autoRefresh.py,sha256=mjIa43VQQmNjYPkEbOtKNlJ1UfGPcqRKvc2Jh4kx8U0,289
92
- vectordb_bench/frontend/components/run_test/caseSelector.py,sha256=EDFktC5-S02frep4Cdq0PsZnX3FSNsf2AHx3syAp8TY,5459
93
- vectordb_bench/frontend/components/run_test/dbConfigSetting.py,sha256=xblWegGPcpDoPUWmu1ocen2J6o6AS11IM8yVxZBk-Fs,2678
94
- vectordb_bench/frontend/components/run_test/dbSelector.py,sha256=61eAW3a4RdEEwF4qNxlfb2FLZMfGFO683f3XDVMSNxY,1128
95
- vectordb_bench/frontend/components/run_test/generateTasks.py,sha256=52hlpyB2_Sz3kygWc5jV-jfGBvXhUQh0as18t-pkGmw,773
96
- vectordb_bench/frontend/components/run_test/hideSidebar.py,sha256=vb5kzIMmbMqWX67qFEHek21X4sGO_tPyn_uPqUEtp3Q,234
97
- vectordb_bench/frontend/components/run_test/initStyle.py,sha256=osPUgfFfH7rRlVNHSMumvmZxvKWlLxmZiNqgnMiUJEU,723
98
- vectordb_bench/frontend/components/run_test/submitTask.py,sha256=NCEXfR3xudAncjVEvsV2iaiov5AatGObe830UI6481M,3341
99
- vectordb_bench/frontend/components/tables/data.py,sha256=pVG_hb4bTMLfUt10NUCJSqcFkPmnN7i9jTw9DcWizpI,1364
100
- vectordb_bench/frontend/config/dbCaseConfigs.py,sha256=40rJ3YtRkPbZBBlWnV7csXDArqrMVaBw6tLMtxzj3w4,36311
101
- vectordb_bench/frontend/config/dbPrices.py,sha256=10aBKjVcEg8y7TPSda28opmBM1KmXNrvbU9WM_BsZcE,176
102
- vectordb_bench/frontend/config/styles.py,sha256=E2PmwmiewxBKJJ59hQ4ZXatqg8QTN-Z53JlsvWMHM2M,2291
103
- vectordb_bench/frontend/pages/concurrent.py,sha256=z2izkQ0suO5mZ8PpVY2jypZkF5VT8xUkQQEkwd6C-ww,2094
104
- vectordb_bench/frontend/pages/custom.py,sha256=BYQuWa7_OQz0wnDvh0LiXzjevmDpO2BbSIuF1_Z_39M,2234
105
- vectordb_bench/frontend/pages/quries_per_dollar.py,sha256=SRLPjGfXwZOIrLeDLgVNg1kE6xjAu-QfmXoa3Sfiqi8,2510
106
- vectordb_bench/frontend/pages/run_test.py,sha256=b1NoMhFA3MmUyItkofh3xozvo1vAqywXKOsoWdIWmRU,2161
107
- vectordb_bench/frontend/pages/tables.py,sha256=VfBzgrgHe68gbSh4MrmVx61l5bQSNOQNrq8xmPlG00c,566
108
- vectordb_bench/results/dbPrices.json,sha256=VoaOjqbWyTdEMLXuzerL5xR46QbxOWFmxCf2mPhjJV4,576
109
- vectordb_bench/results/getLeaderboardData.py,sha256=fuNQmFuWEdm60McaQrXSGLApNOHRnfmvzn1soT3iGHE,2323
110
- vectordb_bench/results/leaderboard.json,sha256=OooOar8Pj0hG-HlpOU8N_hNjJS53PaMMRSoSUtqLJ-k,69276
111
- vectordb_bench/results/ElasticCloud/result_20230727_standard_elasticcloud.json,sha256=IyJKjHGwTCcqKJAaBgfI_hhvMIGrXMl8S9Z2-19BvEE,5807
112
- vectordb_bench/results/ElasticCloud/result_20230808_standard_elasticcloud.json,sha256=sx_B3lbWICcMrePiYqeoJ179pwHD2l78bMf2B880QI0,4431
113
- vectordb_bench/results/Milvus/result_20230727_standard_milvus.json,sha256=UqwfO78qx2zRRWp29J-Egw8K8R5j-FFj9vX0iUrNRm8,17709
114
- vectordb_bench/results/Milvus/result_20230808_standard_milvus.json,sha256=ck9loRNVUGHnjSyuHWN76lGNRRPtWMW7Cj0zf3uwXEo,16303
115
- vectordb_bench/results/PgVector/result_20230727_standard_pgvector.json,sha256=gIc05u344PkZf78Dxi8zo0_sjPuKEw9PMXqAOVxzlOo,5686
116
- vectordb_bench/results/PgVector/result_20230808_standard_pgvector.json,sha256=vy2wTympKzQae5_fFp7zZ4dsgo607P5phCjqu2lOm3E,4323
117
- vectordb_bench/results/Pinecone/result_20230727_standard_pinecone.json,sha256=j9AgPgFwac9IPDnzgfsmiBOcbqM20c9J-OcaRJmf7wo,24938
118
- vectordb_bench/results/Pinecone/result_20230808_standard_pinecone.json,sha256=ccQaH5nHcF8MbVb4wOmRtml5PlxRoEOQ-OLEVZ496c4,21387
119
- vectordb_bench/results/QdrantCloud/result_20230727_standard_qdrantcloud.json,sha256=2GaPFRiufjLFxx2yekTqLqwJnsga5urNKa16zdZrQng,11187
120
- vectordb_bench/results/QdrantCloud/result_20230808_standard_qdrantcloud.json,sha256=tZjJSku1w4IqU-5T0LvxFfDPjf_9e0yCzMG-coiSniM,10241
121
- vectordb_bench/results/WeaviateCloud/result_20230727_standard_weaviatecloud.json,sha256=WBlfjmbO3R4G6F4lDuneEigffUyTU7ti1SyWoff3oNI,15497
122
- vectordb_bench/results/WeaviateCloud/result_20230808_standard_weaviatecloud.json,sha256=lXjudo-l-6H0EOIemoB5n4GddOOHJnwndrGwCJIH-EY,7865
123
- vectordb_bench/results/ZillizCloud/result_20230727_standard_zillizcloud.json,sha256=-Mdm4By65XDRCrmVOCF8yQXjcZtH4Xo4shcjoDoBUKU,18293
124
- vectordb_bench/results/ZillizCloud/result_20230808_standard_zillizcloud.json,sha256=77XlHT5zM_K7mG5HfDQKwXZnSCuR37VUbt6-P3J_amI,15737
125
- vectordb_bench/results/ZillizCloud/result_20240105_standard_202401_zillizcloud.json,sha256=TualfJ0664Hs-vdIW68bdkqAEYyzotXmu2P0yIN-GHk,42526
126
- vectordb_bench-0.0.18.dist-info/LICENSE,sha256=HXbxhrb5u5SegVzeLNF_voVgRsJMavcLaOmD1N0lZkM,1067
127
- vectordb_bench-0.0.18.dist-info/METADATA,sha256=PtTRr7G1PXhzA88gZYML3Y6JPaqzXk_ejeFbvoRVMOQ,34883
128
- vectordb_bench-0.0.18.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
129
- vectordb_bench-0.0.18.dist-info/entry_points.txt,sha256=Qzw6gVx96ui8esG21H6yHsI6nboEohRmV424TYhQNrA,113
130
- vectordb_bench-0.0.18.dist-info/top_level.txt,sha256=jnhZFZAuKX1J60yt-XOeBZ__ctiZMvoC_s0RFq29lpM,15
131
- vectordb_bench-0.0.18.dist-info/RECORD,,