vectordb-bench 1.0.5__py3-none-any.whl → 1.0.8__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- vectordb_bench/__init__.py +1 -0
- vectordb_bench/backend/clients/__init__.py +15 -0
- vectordb_bench/backend/clients/api.py +2 -0
- vectordb_bench/backend/clients/aws_opensearch/aws_opensearch.py +104 -40
- vectordb_bench/backend/clients/aws_opensearch/cli.py +52 -15
- vectordb_bench/backend/clients/aws_opensearch/config.py +27 -7
- vectordb_bench/backend/clients/hologres/cli.py +50 -0
- vectordb_bench/backend/clients/hologres/config.py +120 -0
- vectordb_bench/backend/clients/hologres/hologres.py +385 -0
- vectordb_bench/backend/clients/lancedb/lancedb.py +1 -0
- vectordb_bench/backend/clients/milvus/cli.py +25 -0
- vectordb_bench/backend/clients/milvus/config.py +2 -1
- vectordb_bench/backend/clients/milvus/milvus.py +1 -1
- vectordb_bench/backend/clients/oceanbase/cli.py +1 -0
- vectordb_bench/backend/clients/oceanbase/config.py +3 -1
- vectordb_bench/backend/clients/oceanbase/oceanbase.py +20 -4
- vectordb_bench/backend/clients/pgdiskann/cli.py +45 -0
- vectordb_bench/backend/clients/pgdiskann/config.py +16 -0
- vectordb_bench/backend/clients/pgdiskann/pgdiskann.py +94 -26
- vectordb_bench/backend/clients/zilliz_cloud/cli.py +14 -1
- vectordb_bench/backend/clients/zilliz_cloud/config.py +4 -1
- vectordb_bench/backend/runner/rate_runner.py +23 -11
- vectordb_bench/cli/cli.py +59 -1
- vectordb_bench/cli/vectordbbench.py +2 -0
- vectordb_bench/frontend/config/dbCaseConfigs.py +82 -3
- vectordb_bench/frontend/config/styles.py +1 -0
- vectordb_bench/interface.py +5 -1
- vectordb_bench/models.py +4 -0
- vectordb_bench/results/getLeaderboardDataV2.py +23 -2
- vectordb_bench/results/leaderboard_v2.json +200 -0
- vectordb_bench/results/leaderboard_v2_streaming.json +128 -0
- {vectordb_bench-1.0.5.dist-info → vectordb_bench-1.0.8.dist-info}/METADATA +40 -8
- {vectordb_bench-1.0.5.dist-info → vectordb_bench-1.0.8.dist-info}/RECORD +37 -33
- {vectordb_bench-1.0.5.dist-info → vectordb_bench-1.0.8.dist-info}/WHEEL +0 -0
- {vectordb_bench-1.0.5.dist-info → vectordb_bench-1.0.8.dist-info}/entry_points.txt +0 -0
- {vectordb_bench-1.0.5.dist-info → vectordb_bench-1.0.8.dist-info}/licenses/LICENSE +0 -0
- {vectordb_bench-1.0.5.dist-info → vectordb_bench-1.0.8.dist-info}/top_level.txt +0 -0
@@ -2,10 +2,11 @@ import json
|
|
2
2
|
import logging
|
3
3
|
|
4
4
|
|
5
|
-
from vectordb_bench.backend.cases import CaseType
|
5
|
+
from vectordb_bench.backend.cases import CaseType, StreamingPerformanceCase
|
6
6
|
from vectordb_bench.backend.clients import DB
|
7
7
|
from vectordb_bench.models import CaseResult
|
8
8
|
from vectordb_bench import config
|
9
|
+
import numpy as np
|
9
10
|
|
10
11
|
logging.basicConfig(level=logging.DEBUG, format="%(asctime)s - %(levelname)s - %(message)s")
|
11
12
|
|
@@ -29,9 +30,11 @@ def save_to_json(data: list[dict], file_name: str):
|
|
29
30
|
def main():
|
30
31
|
standard_2025_case_results = get_standard_2025_results()
|
31
32
|
data = []
|
33
|
+
streaming_data = []
|
32
34
|
for case_result in standard_2025_case_results:
|
33
35
|
db = case_result.task_config.db
|
34
36
|
label = case_result.task_config.db_config.db_label
|
37
|
+
db_name = f"{db.value}{f'-{label}' if label else ''}"
|
35
38
|
metrics = case_result.metrics
|
36
39
|
qps = metrics.qps
|
37
40
|
latency = metrics.serial_latency_p99
|
@@ -45,14 +48,32 @@ def main():
|
|
45
48
|
"dataset": dataset,
|
46
49
|
"db": db.value,
|
47
50
|
"label": label,
|
48
|
-
"db_name":
|
51
|
+
"db_name": db_name,
|
49
52
|
"qps": round(qps, 4),
|
50
53
|
"latency": round(latency, 4),
|
51
54
|
"recall": round(recall, 4),
|
52
55
|
"filter_ratio": round(filter_ratio, 3),
|
53
56
|
}
|
54
57
|
)
|
58
|
+
else:
|
59
|
+
case: StreamingPerformanceCase = case
|
60
|
+
# use 90p search stage results to represent streaming performance
|
61
|
+
qps_90p = metrics.st_max_qps_list_list[metrics.st_search_stage_list.index(90)]
|
62
|
+
latency_90p = metrics.st_serial_latency_p99_list[metrics.st_search_stage_list.index(90)]
|
63
|
+
insert_rate = case.insert_rate
|
64
|
+
streaming_data.append(
|
65
|
+
{
|
66
|
+
"dataset": dataset,
|
67
|
+
"db": db.value,
|
68
|
+
"label": label,
|
69
|
+
"db_name": db_name,
|
70
|
+
"insert_rate": insert_rate,
|
71
|
+
"streaming_qps": round(qps_90p, 4),
|
72
|
+
"streaming_latency": round(latency_90p, 4),
|
73
|
+
}
|
74
|
+
)
|
55
75
|
save_to_json(data, config.RESULTS_LOCAL_DIR / "leaderboard_v2.json")
|
76
|
+
save_to_json(streaming_data, config.RESULTS_LOCAL_DIR / "leaderboard_v2_streaming.json")
|
56
77
|
|
57
78
|
|
58
79
|
if __name__ == "__main__":
|
@@ -2658,5 +2658,205 @@
|
|
2658
2658
|
"latency": 3.3,
|
2659
2659
|
"recall": 0.9147,
|
2660
2660
|
"filter_ratio": 0.5
|
2661
|
+
},
|
2662
|
+
{
|
2663
|
+
"dataset": "Cohere (Medium)",
|
2664
|
+
"db": "S3Vectors",
|
2665
|
+
"label": "",
|
2666
|
+
"db_name": "S3Vectors",
|
2667
|
+
"qps": 199.4972,
|
2668
|
+
"latency": 337.1,
|
2669
|
+
"recall": 0.8717,
|
2670
|
+
"filter_ratio": 0.0
|
2671
|
+
},
|
2672
|
+
{
|
2673
|
+
"dataset": "Cohere (Medium)",
|
2674
|
+
"db": "S3Vectors",
|
2675
|
+
"label": "",
|
2676
|
+
"db_name": "S3Vectors",
|
2677
|
+
"qps": 192.1164,
|
2678
|
+
"latency": 345.6,
|
2679
|
+
"recall": 0.4276,
|
2680
|
+
"filter_ratio": 0.999
|
2681
|
+
},
|
2682
|
+
{
|
2683
|
+
"dataset": "Cohere (Medium)",
|
2684
|
+
"db": "S3Vectors",
|
2685
|
+
"label": "",
|
2686
|
+
"db_name": "S3Vectors",
|
2687
|
+
"qps": 197.4455,
|
2688
|
+
"latency": 349.3,
|
2689
|
+
"recall": 0.5314,
|
2690
|
+
"filter_ratio": 0.998
|
2691
|
+
},
|
2692
|
+
{
|
2693
|
+
"dataset": "Cohere (Medium)",
|
2694
|
+
"db": "S3Vectors",
|
2695
|
+
"label": "",
|
2696
|
+
"db_name": "S3Vectors",
|
2697
|
+
"qps": 196.9391,
|
2698
|
+
"latency": 263.4,
|
2699
|
+
"recall": 0.6549,
|
2700
|
+
"filter_ratio": 0.995
|
2701
|
+
},
|
2702
|
+
{
|
2703
|
+
"dataset": "Cohere (Medium)",
|
2704
|
+
"db": "S3Vectors",
|
2705
|
+
"label": "",
|
2706
|
+
"db_name": "S3Vectors",
|
2707
|
+
"qps": 201.5401,
|
2708
|
+
"latency": 282.4,
|
2709
|
+
"recall": 0.7086,
|
2710
|
+
"filter_ratio": 0.99
|
2711
|
+
},
|
2712
|
+
{
|
2713
|
+
"dataset": "Cohere (Medium)",
|
2714
|
+
"db": "S3Vectors",
|
2715
|
+
"label": "",
|
2716
|
+
"db_name": "S3Vectors",
|
2717
|
+
"qps": 202.2424,
|
2718
|
+
"latency": 301.7,
|
2719
|
+
"recall": 0.7592,
|
2720
|
+
"filter_ratio": 0.98
|
2721
|
+
},
|
2722
|
+
{
|
2723
|
+
"dataset": "Cohere (Medium)",
|
2724
|
+
"db": "S3Vectors",
|
2725
|
+
"label": "",
|
2726
|
+
"db_name": "S3Vectors",
|
2727
|
+
"qps": 198.599,
|
2728
|
+
"latency": 358.8,
|
2729
|
+
"recall": 0.8085,
|
2730
|
+
"filter_ratio": 0.95
|
2731
|
+
},
|
2732
|
+
{
|
2733
|
+
"dataset": "Cohere (Medium)",
|
2734
|
+
"db": "S3Vectors",
|
2735
|
+
"label": "",
|
2736
|
+
"db_name": "S3Vectors",
|
2737
|
+
"qps": 199.0349,
|
2738
|
+
"latency": 275.3,
|
2739
|
+
"recall": 0.8325,
|
2740
|
+
"filter_ratio": 0.9
|
2741
|
+
},
|
2742
|
+
{
|
2743
|
+
"dataset": "Cohere (Medium)",
|
2744
|
+
"db": "S3Vectors",
|
2745
|
+
"label": "",
|
2746
|
+
"db_name": "S3Vectors",
|
2747
|
+
"qps": 202.1405,
|
2748
|
+
"latency": 282.6,
|
2749
|
+
"recall": 0.8492,
|
2750
|
+
"filter_ratio": 0.8
|
2751
|
+
},
|
2752
|
+
{
|
2753
|
+
"dataset": "Cohere (Medium)",
|
2754
|
+
"db": "S3Vectors",
|
2755
|
+
"label": "",
|
2756
|
+
"db_name": "S3Vectors",
|
2757
|
+
"qps": 201.1282,
|
2758
|
+
"latency": 269.2,
|
2759
|
+
"recall": 0.8637,
|
2760
|
+
"filter_ratio": 0.5
|
2761
|
+
},
|
2762
|
+
{
|
2763
|
+
"dataset": "Cohere (Large)",
|
2764
|
+
"db": "S3Vectors",
|
2765
|
+
"label": "",
|
2766
|
+
"db_name": "S3Vectors",
|
2767
|
+
"qps": 194.8021,
|
2768
|
+
"latency": 559.8,
|
2769
|
+
"recall": 0.86,
|
2770
|
+
"filter_ratio": 0.0
|
2771
|
+
},
|
2772
|
+
{
|
2773
|
+
"dataset": "Cohere (Large)",
|
2774
|
+
"db": "S3Vectors",
|
2775
|
+
"label": "",
|
2776
|
+
"db_name": "S3Vectors",
|
2777
|
+
"qps": 187.4268,
|
2778
|
+
"latency": 453.7,
|
2779
|
+
"recall": 0.4692,
|
2780
|
+
"filter_ratio": 0.999
|
2781
|
+
},
|
2782
|
+
{
|
2783
|
+
"dataset": "Cohere (Large)",
|
2784
|
+
"db": "S3Vectors",
|
2785
|
+
"label": "",
|
2786
|
+
"db_name": "S3Vectors",
|
2787
|
+
"qps": 198.397,
|
2788
|
+
"latency": 506.9,
|
2789
|
+
"recall": 0.5409,
|
2790
|
+
"filter_ratio": 0.998
|
2791
|
+
},
|
2792
|
+
{
|
2793
|
+
"dataset": "Cohere (Large)",
|
2794
|
+
"db": "S3Vectors",
|
2795
|
+
"label": "",
|
2796
|
+
"db_name": "S3Vectors",
|
2797
|
+
"qps": 174.3549,
|
2798
|
+
"latency": 496.9,
|
2799
|
+
"recall": 0.6279,
|
2800
|
+
"filter_ratio": 0.995
|
2801
|
+
},
|
2802
|
+
{
|
2803
|
+
"dataset": "Cohere (Large)",
|
2804
|
+
"db": "S3Vectors",
|
2805
|
+
"label": "",
|
2806
|
+
"db_name": "S3Vectors",
|
2807
|
+
"qps": 172.95,
|
2808
|
+
"latency": 515.6,
|
2809
|
+
"recall": 0.7004,
|
2810
|
+
"filter_ratio": 0.99
|
2811
|
+
},
|
2812
|
+
{
|
2813
|
+
"dataset": "Cohere (Large)",
|
2814
|
+
"db": "S3Vectors",
|
2815
|
+
"label": "",
|
2816
|
+
"db_name": "S3Vectors",
|
2817
|
+
"qps": 190.9747,
|
2818
|
+
"latency": 517.4,
|
2819
|
+
"recall": 0.7398,
|
2820
|
+
"filter_ratio": 0.98
|
2821
|
+
},
|
2822
|
+
{
|
2823
|
+
"dataset": "Cohere (Large)",
|
2824
|
+
"db": "S3Vectors",
|
2825
|
+
"label": "",
|
2826
|
+
"db_name": "S3Vectors",
|
2827
|
+
"qps": 186.0237,
|
2828
|
+
"latency": 474.0,
|
2829
|
+
"recall": 0.7847,
|
2830
|
+
"filter_ratio": 0.95
|
2831
|
+
},
|
2832
|
+
{
|
2833
|
+
"dataset": "Cohere (Large)",
|
2834
|
+
"db": "S3Vectors",
|
2835
|
+
"label": "",
|
2836
|
+
"db_name": "S3Vectors",
|
2837
|
+
"qps": 192.1458,
|
2838
|
+
"latency": 480.5,
|
2839
|
+
"recall": 0.8103,
|
2840
|
+
"filter_ratio": 0.9
|
2841
|
+
},
|
2842
|
+
{
|
2843
|
+
"dataset": "Cohere (Large)",
|
2844
|
+
"db": "S3Vectors",
|
2845
|
+
"label": "",
|
2846
|
+
"db_name": "S3Vectors",
|
2847
|
+
"qps": 179.4203,
|
2848
|
+
"latency": 497.5,
|
2849
|
+
"recall": 0.8273,
|
2850
|
+
"filter_ratio": 0.8
|
2851
|
+
},
|
2852
|
+
{
|
2853
|
+
"dataset": "Cohere (Large)",
|
2854
|
+
"db": "S3Vectors",
|
2855
|
+
"label": "",
|
2856
|
+
"db_name": "S3Vectors",
|
2857
|
+
"qps": 199.5444,
|
2858
|
+
"latency": 463.9,
|
2859
|
+
"recall": 0.8478,
|
2860
|
+
"filter_ratio": 0.5
|
2661
2861
|
}
|
2662
2862
|
]
|
@@ -0,0 +1,128 @@
|
|
1
|
+
[
|
2
|
+
{
|
3
|
+
"dataset": "Cohere (Large)",
|
4
|
+
"db": "ElasticCloud",
|
5
|
+
"label": "8c60g",
|
6
|
+
"db_name": "ElasticCloud-8c60g",
|
7
|
+
"insert_rate": 500,
|
8
|
+
"streaming_qps": 61.6708,
|
9
|
+
"streaming_latency": 0.0794
|
10
|
+
},
|
11
|
+
{
|
12
|
+
"dataset": "Cohere (Large)",
|
13
|
+
"db": "ElasticCloud",
|
14
|
+
"label": "8c60g",
|
15
|
+
"db_name": "ElasticCloud-8c60g",
|
16
|
+
"insert_rate": 1000,
|
17
|
+
"streaming_qps": 61.8172,
|
18
|
+
"streaming_latency": 0.2223
|
19
|
+
},
|
20
|
+
{
|
21
|
+
"dataset": "Cohere (Large)",
|
22
|
+
"db": "Milvus",
|
23
|
+
"label": "16c64g-sq8",
|
24
|
+
"db_name": "Milvus-16c64g-sq8",
|
25
|
+
"insert_rate": 500,
|
26
|
+
"streaming_qps": 305.9971,
|
27
|
+
"streaming_latency": 0.005
|
28
|
+
},
|
29
|
+
{
|
30
|
+
"dataset": "Cohere (Large)",
|
31
|
+
"db": "Milvus",
|
32
|
+
"label": "16c64g-sq8",
|
33
|
+
"db_name": "Milvus-16c64g-sq8",
|
34
|
+
"insert_rate": 1000,
|
35
|
+
"streaming_qps": 155.9613,
|
36
|
+
"streaming_latency": 0.0203
|
37
|
+
},
|
38
|
+
{
|
39
|
+
"dataset": "Cohere (Large)",
|
40
|
+
"db": "Pinecone",
|
41
|
+
"label": "p2.x8-1node",
|
42
|
+
"db_name": "Pinecone-p2.x8-1node",
|
43
|
+
"insert_rate": 500,
|
44
|
+
"streaming_qps": 367.4299,
|
45
|
+
"streaming_latency": 1.8286
|
46
|
+
},
|
47
|
+
{
|
48
|
+
"dataset": "Cohere (Large)",
|
49
|
+
"db": "Pinecone",
|
50
|
+
"label": "p2.x8-1node",
|
51
|
+
"db_name": "Pinecone-p2.x8-1node",
|
52
|
+
"insert_rate": 1000,
|
53
|
+
"streaming_qps": 369.6771,
|
54
|
+
"streaming_latency": 5.992
|
55
|
+
},
|
56
|
+
{
|
57
|
+
"dataset": "Cohere (Large)",
|
58
|
+
"db": "QdrantCloud",
|
59
|
+
"label": "16c64g",
|
60
|
+
"db_name": "QdrantCloud-16c64g",
|
61
|
+
"insert_rate": 500,
|
62
|
+
"streaming_qps": 393.753,
|
63
|
+
"streaming_latency": 0.0162
|
64
|
+
},
|
65
|
+
{
|
66
|
+
"dataset": "Cohere (Large)",
|
67
|
+
"db": "QdrantCloud",
|
68
|
+
"label": "16c64g",
|
69
|
+
"db_name": "QdrantCloud-16c64g",
|
70
|
+
"insert_rate": 1000,
|
71
|
+
"streaming_qps": 347.5774,
|
72
|
+
"streaming_latency": 0.0118
|
73
|
+
},
|
74
|
+
{
|
75
|
+
"dataset": "Cohere (Large)",
|
76
|
+
"db": "OpenSearch",
|
77
|
+
"label": "16c128g",
|
78
|
+
"db_name": "OpenSearch-16c128g",
|
79
|
+
"insert_rate": 1000,
|
80
|
+
"streaming_qps": 149.7168,
|
81
|
+
"streaming_latency": 0.098
|
82
|
+
},
|
83
|
+
{
|
84
|
+
"dataset": "Cohere (Large)",
|
85
|
+
"db": "OpenSearch",
|
86
|
+
"label": "16c128g",
|
87
|
+
"db_name": "OpenSearch-16c128g",
|
88
|
+
"insert_rate": 500,
|
89
|
+
"streaming_qps": 161.6694,
|
90
|
+
"streaming_latency": 0.052
|
91
|
+
},
|
92
|
+
{
|
93
|
+
"dataset": "Cohere (Large)",
|
94
|
+
"db": "ZillizCloud",
|
95
|
+
"label": "8cu-perf",
|
96
|
+
"db_name": "ZillizCloud-8cu-perf",
|
97
|
+
"insert_rate": 500,
|
98
|
+
"streaming_qps": 2118.7516,
|
99
|
+
"streaming_latency": 0.0068
|
100
|
+
},
|
101
|
+
{
|
102
|
+
"dataset": "Cohere (Large)",
|
103
|
+
"db": "ZillizCloud",
|
104
|
+
"label": "8cu-perf",
|
105
|
+
"db_name": "ZillizCloud-8cu-perf",
|
106
|
+
"insert_rate": 1000,
|
107
|
+
"streaming_qps": 1860.2575,
|
108
|
+
"streaming_latency": 0.0101
|
109
|
+
},
|
110
|
+
{
|
111
|
+
"dataset": "Cohere (Large)",
|
112
|
+
"db": "S3Vectors",
|
113
|
+
"label": "",
|
114
|
+
"db_name": "S3Vectors",
|
115
|
+
"insert_rate": 500,
|
116
|
+
"streaming_qps": 180.9549,
|
117
|
+
"streaming_latency": 0.4204
|
118
|
+
},
|
119
|
+
{
|
120
|
+
"dataset": "Cohere (Large)",
|
121
|
+
"db": "S3Vectors",
|
122
|
+
"label": "",
|
123
|
+
"db_name": "S3Vectors",
|
124
|
+
"insert_rate": 1000,
|
125
|
+
"streaming_qps": 167.2689,
|
126
|
+
"streaming_latency": 0.5048
|
127
|
+
}
|
128
|
+
]
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: vectordb-bench
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.8
|
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
|
@@ -153,6 +153,7 @@ All the database client supported
|
|
153
153
|
| tidb | `pip install vectordb-bench[tidb]` |
|
154
154
|
| vespa | `pip install vectordb-bench[vespa]` |
|
155
155
|
| oceanbase | `pip install vectordb-bench[oceanbase]` |
|
156
|
+
| hologres | `pip install vectordb-bench[hologres]` |
|
156
157
|
|
157
158
|
### Run
|
158
159
|
|
@@ -269,7 +270,7 @@ vectordbbench awsopensearch --db-label awsopensearch \
|
|
269
270
|
--m 16 --ef-construction 256 \
|
270
271
|
--host search-vector-db-prod-h4f6m4of6x7yp2rz7gdmots7w4.us-west-2.es.amazonaws.com --port 443 \
|
271
272
|
--user vector --password '<password>' \
|
272
|
-
--case-type Performance1536D5M --
|
273
|
+
--case-type Performance1536D5M --number-of-indexing-clients 10 \
|
273
274
|
--skip-load --num-concurrency 75
|
274
275
|
```
|
275
276
|
|
@@ -297,7 +298,7 @@ Options:
|
|
297
298
|
--force-merge-enabled BOOLEAN Whether to perform force merge operation
|
298
299
|
--flush-threshold-size TEXT Size threshold for flushing the transaction
|
299
300
|
log
|
300
|
-
--engine TEXT type of engine to use valid values [faiss, lucene]
|
301
|
+
--engine TEXT type of engine to use valid values [faiss, lucene, s3vector]
|
301
302
|
# Memory Management
|
302
303
|
--cb-threshold TEXT k-NN Memory circuit breaker threshold
|
303
304
|
|
@@ -372,6 +373,37 @@ Options:
|
|
372
373
|
--help Show this message and exit. Show this message and exit.
|
373
374
|
```
|
374
375
|
|
376
|
+
### Run Hologres from command line
|
377
|
+
|
378
|
+
Execute tests for the index types: HGraph.
|
379
|
+
|
380
|
+
```shell
|
381
|
+
vectordbbench hologreshgraph --host xxx --port xxx --user ACCESS_ID --password ACCESS_KEY --database test \
|
382
|
+
--m 64 --ef-construction 400 --case-type Performance768D1M \
|
383
|
+
--index-type HGraph --ef-search 51 --k 10
|
384
|
+
```
|
385
|
+
|
386
|
+
To list the options for Hologres, execute `vectordbbench hologreshgraph --help`, The following are some Hologres-specific command-line options.
|
387
|
+
|
388
|
+
```text
|
389
|
+
$ vectordbbench hologreshgraph --help
|
390
|
+
Usage: vectordbbench hologreshgraph [OPTIONS]
|
391
|
+
|
392
|
+
Options:
|
393
|
+
[...]
|
394
|
+
--host TEXT Hologres host
|
395
|
+
--user TEXT Hologres username [required]
|
396
|
+
--password TEXT Hologres database password
|
397
|
+
--database TEXT Hologres database name [required]
|
398
|
+
--port INTEGER Hologres port [required]
|
399
|
+
--m INTEGER hnsw m [required]
|
400
|
+
--ef-construction INTEGER hnsw ef-construction [required]
|
401
|
+
--ef-search INTEGER hnsw ef-search [required]
|
402
|
+
--index-type [HGraph] Type of index to use. Supported values:
|
403
|
+
HGraph [required]
|
404
|
+
--help Show this message and exit.
|
405
|
+
```
|
406
|
+
|
375
407
|
#### Using a configuration file.
|
376
408
|
|
377
409
|
The vectordbbench command can optionally read some or all the options from a yaml formatted configuration file.
|
@@ -525,9 +557,9 @@ All standard benchmark results are generated by a client running on an 8 core, 3
|
|
525
557
|
2. The next step is to select the test cases you want to perform. You can select multiple cases at once, and a form to collect corresponding parameters will appear.
|
526
558
|
3. Finally, you'll need to provide a task label to distinguish different test results. Using the same label for different tests will result in the previous results being overwritten.
|
527
559
|
Now we can only run one task at the same time.
|
528
|
-

|
529
|
-

|
530
|
-

|
560
|
+

|
561
|
+

|
562
|
+

|
531
563
|
|
532
564
|
|
533
565
|
## Module
|
@@ -557,8 +589,8 @@ Each case provides an in-depth examination of a vector database's abilities, pro
|
|
557
589
|
|
558
590
|
Through the `/custom` page, users can customize their own performance case using local datasets. After saving, the corresponding case can be selected from the `/run_test` page to perform the test.
|
559
591
|
|
560
|
-

|
561
|
-

|
592
|
+

|
593
|
+

|
562
594
|
|
563
595
|
We have strict requirements for the data set format, please follow them.
|
564
596
|
- `Folder Path` - The path to the folder containing all the files. Please ensure that all files in the folder are in the `Parquet` format.
|
@@ -1,10 +1,10 @@
|
|
1
|
-
vectordb_bench/__init__.py,sha256=
|
1
|
+
vectordb_bench/__init__.py,sha256=JkFWNtQCp6wKVFtBvf5oMwMTli6erkpzcbcYbnYPML4,2581
|
2
2
|
vectordb_bench/__main__.py,sha256=2zZQJ9tg7gVCWWq9HaoJ8_hTR-3AXZgFHfJK4l88DFA,853
|
3
3
|
vectordb_bench/base.py,sha256=AgavIF0P9ku_RmCRk1KKziba-wI4ZpA2aJvjJzNhRSs,129
|
4
|
-
vectordb_bench/interface.py,sha256=
|
4
|
+
vectordb_bench/interface.py,sha256=SQBJl_VTglok5TV7MaKBu-v4D07_NSvaRiYqY8AY02w,10186
|
5
5
|
vectordb_bench/log_util.py,sha256=wDNaU_JBBOfKi_Z4vq7LDa0kOlLjoNNzDX3VZQn_Dxo,3239
|
6
6
|
vectordb_bench/metric.py,sha256=c73EOPHGXwTInl85MNLPJb9oWrFRYAtp-e5qfFoxw34,3020
|
7
|
-
vectordb_bench/models.py,sha256=
|
7
|
+
vectordb_bench/models.py,sha256=aEZsn_Hs8oL04g7rzZcZ7NRu-HpXOr6qtOyEc_XM3ro,15198
|
8
8
|
vectordb_bench/backend/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
9
9
|
vectordb_bench/backend/assembler.py,sha256=MdAOXVhCrRGT76Q21xBusCmDc4mXS7yMrhSYAlKPQVA,2785
|
10
10
|
vectordb_bench/backend/cases.py,sha256=cU5mX7f5iar_dSUJGk9-rfwtaMq1vX4JMsEkAFLLup8,25181
|
@@ -14,8 +14,8 @@ vectordb_bench/backend/filter.py,sha256=VeuIzLZ-yi20k6KXwDh8x-PKQfw78xZ46VIj9e3r
|
|
14
14
|
vectordb_bench/backend/result_collector.py,sha256=mpROVdZ-HChKBVyMV5TZ5v7YGRb69bvfT7Gezn5F5sY,819
|
15
15
|
vectordb_bench/backend/task_runner.py,sha256=O8uija2ferfqLXiJIZV-yFeP7wa9RsKgsY3P9GFR1Uc,13164
|
16
16
|
vectordb_bench/backend/utils.py,sha256=R6THuJdZhiQYSSJTqv0Uegl2B20taV_QjwvFrun2yxE,1949
|
17
|
-
vectordb_bench/backend/clients/__init__.py,sha256=
|
18
|
-
vectordb_bench/backend/clients/api.py,sha256=
|
17
|
+
vectordb_bench/backend/clients/__init__.py,sha256=fhNY5xi0bjXk4qSEZp1f-Pc2SslwaVTrRMPi9NgP7dU,12734
|
18
|
+
vectordb_bench/backend/clients/api.py,sha256=_r5g5kykvcY1R5x8FeEuLLFSidGBOGffbL6eEolP4P0,7428
|
19
19
|
vectordb_bench/backend/clients/aliyun_elasticsearch/aliyun_elasticsearch.py,sha256=7yPYaWoHeHNxDMtpReGXsdEPFD1e4vQblFor7TmLq5o,770
|
20
20
|
vectordb_bench/backend/clients/aliyun_elasticsearch/config.py,sha256=d9RCgfCgauKvy6z9ig_wBormgwiGtkh8POyoHloHnJA,505
|
21
21
|
vectordb_bench/backend/clients/aliyun_opensearch/aliyun_opensearch.py,sha256=YoQr9Gw8yulE9bM3QOSYyK-qIQyoXzl9nvCdDCwN1H4,12505
|
@@ -23,9 +23,9 @@ vectordb_bench/backend/clients/aliyun_opensearch/config.py,sha256=tJonjx703YRqyS
|
|
23
23
|
vectordb_bench/backend/clients/alloydb/alloydb.py,sha256=E24hxCUgpBCRiScdcS_iBk8n0wngUgVg8qujOWiUhw0,13009
|
24
24
|
vectordb_bench/backend/clients/alloydb/cli.py,sha256=G6Q0WApoDXDG_pqmK2lEKFIvKB8qAsZFPM8TfsURydE,5086
|
25
25
|
vectordb_bench/backend/clients/alloydb/config.py,sha256=PJs2wIJqwcG6UJ3T8R7Pi3xTMBfxTZiNkcWyhtHv5dc,5313
|
26
|
-
vectordb_bench/backend/clients/aws_opensearch/aws_opensearch.py,sha256=
|
27
|
-
vectordb_bench/backend/clients/aws_opensearch/cli.py,sha256=
|
28
|
-
vectordb_bench/backend/clients/aws_opensearch/config.py,sha256=
|
26
|
+
vectordb_bench/backend/clients/aws_opensearch/aws_opensearch.py,sha256=0NUltgetJ2yVq7rtMjuCgfO1JFzu0lrpZzgguxKfODg,22374
|
27
|
+
vectordb_bench/backend/clients/aws_opensearch/cli.py,sha256=AD7ouOGZxiU2zrW-2hOmXDnestzwhHml5SPIJcktNmw,6067
|
28
|
+
vectordb_bench/backend/clients/aws_opensearch/config.py,sha256=ZWNvT6BpcPbJ6d5CuaVxx_v91bbEIYVfOh1hvedoHes,5270
|
29
29
|
vectordb_bench/backend/clients/aws_opensearch/run.py,sha256=Ry5aAlielWjq0hx7LnbdShfOwzZhz3Gq9WYu5U43x9s,5001
|
30
30
|
vectordb_bench/backend/clients/chroma/chroma.py,sha256=ifoEgo7jSkJ6pPixiUd2zuV75FvgvODCfZTfC8fK0ak,3759
|
31
31
|
vectordb_bench/backend/clients/chroma/config.py,sha256=8nXpPdecQ5HrNqcsQwAVgacSz6uLgI-BI7v4tB8CeDk,347
|
@@ -34,30 +34,33 @@ vectordb_bench/backend/clients/clickhouse/clickhouse.py,sha256=1i-64mzluloJ3fXT7
|
|
34
34
|
vectordb_bench/backend/clients/clickhouse/config.py,sha256=-waHUHrT9WwuSNjHYE7T5j8s8RTsHNTDFuzmqT4nQWI,2649
|
35
35
|
vectordb_bench/backend/clients/elastic_cloud/config.py,sha256=Xq1zcWamswuFkrcjmIKCkSADlmk01MVsCfWFK4cWh1E,2466
|
36
36
|
vectordb_bench/backend/clients/elastic_cloud/elastic_cloud.py,sha256=ZdQaR3rbfiGk_ul93H31kvITtcXAuzU6jX5kQ5s8fSg,8888
|
37
|
+
vectordb_bench/backend/clients/hologres/cli.py,sha256=uR6e5qDLbrJEIQFlyVpvF3-Sz5qN2RSbTg0T6DeEovs,1803
|
38
|
+
vectordb_bench/backend/clients/hologres/config.py,sha256=3UwVB-AOzEOtuIsvG7pDZ8DVPH0GHGluGjC_brUvLpo,4022
|
39
|
+
vectordb_bench/backend/clients/hologres/hologres.py,sha256=nnGIXeWUCsMYgYnHE3SpMxGjNPpNLrdhw_BBE1opLno,14088
|
37
40
|
vectordb_bench/backend/clients/lancedb/cli.py,sha256=BxTkyNtOPXEogSoqBKrK9m_RF_WTXDvHg8HBFLNa1uw,4429
|
38
41
|
vectordb_bench/backend/clients/lancedb/config.py,sha256=NshH3VrJjy78aYBI-di33x4ko5xkTr16mkZ1liNu550,3233
|
39
|
-
vectordb_bench/backend/clients/lancedb/lancedb.py,sha256=
|
42
|
+
vectordb_bench/backend/clients/lancedb/lancedb.py,sha256=k71_6cv9TjucW6_W7so5XmVKgg3oYwdmwMu_ZS6Wosc,4127
|
40
43
|
vectordb_bench/backend/clients/mariadb/cli.py,sha256=nqV9V-gOSKGQ1y6VmxOMxGz0a3jz860Va55x7JBcuPk,2727
|
41
44
|
vectordb_bench/backend/clients/mariadb/config.py,sha256=DNxo0i1c0wIfii78Luv9GeOFq-74yvkkg3Np9sNUyFI,1870
|
42
45
|
vectordb_bench/backend/clients/mariadb/mariadb.py,sha256=O2PY7pP3dYdp-aTOQLDVckdNabCZscw5Xup7Z8LnWIg,7137
|
43
46
|
vectordb_bench/backend/clients/memorydb/cli.py,sha256=mUpBN0VoE6M55AAEwyd20uEtPkOpckJzmcP2XXpue30,2659
|
44
47
|
vectordb_bench/backend/clients/memorydb/config.py,sha256=D2Q-HkDwnmz98ek1e_iNu4o9CIRB14pOQWSZgRvd6oY,1500
|
45
48
|
vectordb_bench/backend/clients/memorydb/memorydb.py,sha256=5PPOSdFLQes6Gq5H3Yfi_q2m32eErMfNVO86qIjlnoc,10219
|
46
|
-
vectordb_bench/backend/clients/milvus/cli.py,sha256=
|
47
|
-
vectordb_bench/backend/clients/milvus/config.py,sha256=
|
48
|
-
vectordb_bench/backend/clients/milvus/milvus.py,sha256=
|
49
|
+
vectordb_bench/backend/clients/milvus/cli.py,sha256=sovr2pCRrTzoZddNvQeWWOruyWqAzwpt1rlShIwxdws,18847
|
50
|
+
vectordb_bench/backend/clients/milvus/config.py,sha256=yrtPLWBnDvah2YZFnn3V_oOL-52GfM-uIgkQjd1REME,12870
|
51
|
+
vectordb_bench/backend/clients/milvus/milvus.py,sha256=w_ANUibqxjffqFR-irRAvo4dBDSeXKU4dLZGLvZIYCo,9332
|
49
52
|
vectordb_bench/backend/clients/mongodb/config.py,sha256=7DZCh0bjPiqJW2luPypfpNeGfvKxVC4mdHLqgcjF1hA,1745
|
50
53
|
vectordb_bench/backend/clients/mongodb/mongodb.py,sha256=ts2gpAzUTarpkfMFnM5ANi6T-xvcjS8kc4-apPt9jug,7225
|
51
|
-
vectordb_bench/backend/clients/oceanbase/cli.py,sha256=
|
52
|
-
vectordb_bench/backend/clients/oceanbase/config.py,sha256=
|
53
|
-
vectordb_bench/backend/clients/oceanbase/oceanbase.py,sha256=
|
54
|
+
vectordb_bench/backend/clients/oceanbase/cli.py,sha256=UpRt9TDZ9j8lcidhjLNeZ7H1RBb2KsxwdyDtVFAi4q4,3238
|
55
|
+
vectordb_bench/backend/clients/oceanbase/config.py,sha256=TiKL-MhFgpRxoqgZXgiMueBiT0IFURFWiSjp2wciFcA,3730
|
56
|
+
vectordb_bench/backend/clients/oceanbase/oceanbase.py,sha256=FZ-WRHeXWVnqQ8RA71fYwQvbhzMHRgeWfb5jQE4szT4,7851
|
54
57
|
vectordb_bench/backend/clients/oss_opensearch/cli.py,sha256=HngDYMnRQZ-HKP7Vj1XU_rz80KRb-vnoAIBPhz0u4HE,4967
|
55
58
|
vectordb_bench/backend/clients/oss_opensearch/config.py,sha256=9AdjaflMF-0G8_8WSvgqcPXwvwm47x11-mEMdHzaTkw,5328
|
56
59
|
vectordb_bench/backend/clients/oss_opensearch/oss_opensearch.py,sha256=zW2Lt6kFIThJixoTZJJaJAOmEJwYvaaVXjQBjqNGZDM,25136
|
57
60
|
vectordb_bench/backend/clients/oss_opensearch/run.py,sha256=Ry5aAlielWjq0hx7LnbdShfOwzZhz3Gq9WYu5U43x9s,5001
|
58
|
-
vectordb_bench/backend/clients/pgdiskann/cli.py,sha256=
|
59
|
-
vectordb_bench/backend/clients/pgdiskann/config.py,sha256=
|
60
|
-
vectordb_bench/backend/clients/pgdiskann/pgdiskann.py,sha256=
|
61
|
+
vectordb_bench/backend/clients/pgdiskann/cli.py,sha256=0OKn977Pkhz2borEGfG5sMU5RMVAUXLCwFwWuC5gAfc,4563
|
62
|
+
vectordb_bench/backend/clients/pgdiskann/config.py,sha256=hIRAOweDfzdAj5qbLYblpnbXQbDDNzzM4y65k29H6CQ,5109
|
63
|
+
vectordb_bench/backend/clients/pgdiskann/pgdiskann.py,sha256=ureijVHRfXMDzfOqPKTgQQwIqENCLvnriJtJWRBA8oU,14896
|
61
64
|
vectordb_bench/backend/clients/pgvecto_rs/cli.py,sha256=n0cMbUrGS2jzCpusVExxRDJb3iUzWblkeNmuRzLPmoE,4686
|
62
65
|
vectordb_bench/backend/clients/pgvecto_rs/config.py,sha256=jWs3078s5chH37O94zSHoQ98ptLTYiJeHiLy6BQgTE4,4725
|
63
66
|
vectordb_bench/backend/clients/pgvecto_rs/pgvecto_rs.py,sha256=ZSOPpQjLtWxpQz7-R24X-e2oVLHJsZeEmaOzfd5pELA,9828
|
@@ -93,19 +96,19 @@ vectordb_bench/backend/clients/vespa/vespa.py,sha256=cCqVMni7CKsPOkwGjCMihXk9hlE
|
|
93
96
|
vectordb_bench/backend/clients/weaviate_cloud/cli.py,sha256=PPkZgSMThFwgJUp8eIwKbJiCB_szP7jcRbYjctLX1cE,1926
|
94
97
|
vectordb_bench/backend/clients/weaviate_cloud/config.py,sha256=v7s0RCkg4R6Iw451Jynq2EqmiDqdkTV16DX_TOPLHOo,1315
|
95
98
|
vectordb_bench/backend/clients/weaviate_cloud/weaviate_cloud.py,sha256=HEzhkGHgEz2YyEV-6qV_JYx1cbvvol9nuOtSzZU6OxM,5347
|
96
|
-
vectordb_bench/backend/clients/zilliz_cloud/cli.py,sha256=
|
97
|
-
vectordb_bench/backend/clients/zilliz_cloud/config.py,sha256
|
99
|
+
vectordb_bench/backend/clients/zilliz_cloud/cli.py,sha256=baMRyI3IzJ8psHIReR2oxmjbGZAvgD5UjDj2TJbJeyE,1929
|
100
|
+
vectordb_bench/backend/clients/zilliz_cloud/config.py,sha256=aWWMQUvToy5rIT7MKA9LuJfOlpO87PNKuajDZjivj1Q,1028
|
98
101
|
vectordb_bench/backend/clients/zilliz_cloud/zilliz_cloud.py,sha256=l6udLfkCHusTvyRK8bvdWKo-AZ91WZOfi7ZciEECpHs,676
|
99
102
|
vectordb_bench/backend/runner/__init__.py,sha256=lkk-naYS2ai3kQLwNaqSsnudL9SVl0OYy1uCstgUAtM,289
|
100
103
|
vectordb_bench/backend/runner/mp_runner.py,sha256=qPjMkusf2Uicm8ROzhjsJ7dYI6SCbINDRBkM5_x5zi8,11191
|
101
|
-
vectordb_bench/backend/runner/rate_runner.py,sha256=
|
104
|
+
vectordb_bench/backend/runner/rate_runner.py,sha256=onC1FOT0LosunRq1CW8VRX7XoWF2xgslZVRGHYryTrk,5763
|
102
105
|
vectordb_bench/backend/runner/read_write_runner.py,sha256=dqlaEkTb4mAZ45DRAlt-bIQMQ3aTZ6JDG778jb2eb8c,11410
|
103
106
|
vectordb_bench/backend/runner/serial_runner.py,sha256=TEps9zgToGqhG5gadLlo87nFvtiOUBbdqX8Hm-XLsbM,12792
|
104
107
|
vectordb_bench/backend/runner/util.py,sha256=tjTFUxth6hNnVrlU82TqkHhfeZo4ymj7WlyK4zFyPTg,522
|
105
108
|
vectordb_bench/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
106
109
|
vectordb_bench/cli/batch_cli.py,sha256=lnVrIP1rweoqfFkrdTLzxnLzy713xP2AnW6xmhd4bu0,3658
|
107
|
-
vectordb_bench/cli/cli.py,sha256=
|
108
|
-
vectordb_bench/cli/vectordbbench.py,sha256=
|
110
|
+
vectordb_bench/cli/cli.py,sha256=JLeOIurQJyFhVVmAhefY5tBurkos6vhD1c_FCjIa35A,19704
|
111
|
+
vectordb_bench/cli/vectordbbench.py,sha256=g61M3naKy87AeblCfh2P9U2jKWKmcNjburLNFsfK6QE,2067
|
109
112
|
vectordb_bench/config-files/batch_sample_config.yml,sha256=3n0SfLgVWeboAZZcO8j_UP4A9CExHGPE8tOmtVPPFiA,370
|
110
113
|
vectordb_bench/config-files/sample_config.yml,sha256=yw9ZgHczNi9PedNuTVxZKiOTI6AVoQS1h8INNgoDjPk,340
|
111
114
|
vectordb_bench/custom/custom_case.json,sha256=uKo7NJgXDPPLtf_V6y1uc5w1aIcjLp-GCJEYOCty1As,475
|
@@ -156,9 +159,9 @@ vectordb_bench/frontend/components/tables/data.py,sha256=Qc9joj8gBlIDebT4B5E5EFY
|
|
156
159
|
vectordb_bench/frontend/components/welcome/explainPrams.py,sha256=fIcB3TVNrlpw-pFBUivs1qZ8vxtiRXjxSRFcyQeh78E,6291
|
157
160
|
vectordb_bench/frontend/components/welcome/pagestyle.py,sha256=PMqE0yhDdWKciMIiuF0zSPxHGLEJYj95cYDCN_Knoko,2381
|
158
161
|
vectordb_bench/frontend/components/welcome/welcomePrams.py,sha256=b4c3LB-BYvTM6gYiEddY8UL35aeZu_ixpwbYlu4NE5w,6435
|
159
|
-
vectordb_bench/frontend/config/dbCaseConfigs.py,sha256=
|
162
|
+
vectordb_bench/frontend/config/dbCaseConfigs.py,sha256=s6LQB3ynH-jS04GIL6pvuguPnN7bocR1x_uarNApfgI,69859
|
160
163
|
vectordb_bench/frontend/config/dbPrices.py,sha256=10aBKjVcEg8y7TPSda28opmBM1KmXNrvbU9WM_BsZcE,176
|
161
|
-
vectordb_bench/frontend/config/styles.py,sha256=
|
164
|
+
vectordb_bench/frontend/config/styles.py,sha256=ze7dnc8eOPz8D6JnlfmntH8CzXyeOXBhW-2c3MU8B5U,53228
|
162
165
|
vectordb_bench/frontend/pages/concurrent.py,sha256=_sWH4gWgkTC84Ico1fXuBMa4KhL7z64PoJkWS0rugXo,2148
|
163
166
|
vectordb_bench/frontend/pages/custom.py,sha256=pIXgYwiZsm-fvGMWAenv32S63Byq1aGqZNelBFPtkYA,2546
|
164
167
|
vectordb_bench/frontend/pages/int_filter.py,sha256=8j-WGz0aLLQEndNbD0EuLwmk5R3Oz1JAdQcNKg6Tfu8,1517
|
@@ -170,9 +173,10 @@ vectordb_bench/frontend/pages/streaming.py,sha256=rsJV5mJHV_e1KfI-zZAvDNc6ggr4LU
|
|
170
173
|
vectordb_bench/frontend/pages/tables.py,sha256=ANJhrykG94ec3Vs7HJiymvzH5NbjLCei78Sf8nTTG_I,677
|
171
174
|
vectordb_bench/results/dbPrices.json,sha256=50y-RrqDN3oAdwiUW4irMKV1IRgzR1iFOQcl8lG7950,749
|
172
175
|
vectordb_bench/results/getLeaderboardData.py,sha256=fuNQmFuWEdm60McaQrXSGLApNOHRnfmvzn1soT3iGHE,2323
|
173
|
-
vectordb_bench/results/getLeaderboardDataV2.py,sha256=
|
176
|
+
vectordb_bench/results/getLeaderboardDataV2.py,sha256=SkjIqmdKp_fZwWMOWVq6SalBu4x3w-wUYUd72owzXmk,2931
|
174
177
|
vectordb_bench/results/leaderboard.json,sha256=OooOar8Pj0hG-HlpOU8N_hNjJS53PaMMRSoSUtqLJ-k,69276
|
175
|
-
vectordb_bench/results/leaderboard_v2.json,sha256=
|
178
|
+
vectordb_bench/results/leaderboard_v2.json,sha256=8xtzC7KQSn2XyMMnDiZS7DV-mRWFtfjMalvo6v25sdY,76003
|
179
|
+
vectordb_bench/results/leaderboard_v2_streaming.json,sha256=XkuMkHNhZR_Ed6qdFuG3B6TQqNkwvySD_HzmWOvBqrk,3426
|
176
180
|
vectordb_bench/results/ElasticCloud/result_20230727_standard_elasticcloud.json,sha256=IyJKjHGwTCcqKJAaBgfI_hhvMIGrXMl8S9Z2-19BvEE,5807
|
177
181
|
vectordb_bench/results/ElasticCloud/result_20230808_standard_elasticcloud.json,sha256=sx_B3lbWICcMrePiYqeoJ179pwHD2l78bMf2B880QI0,4431
|
178
182
|
vectordb_bench/results/ElasticCloud/result_20250318_standard_elasticcloud.json,sha256=MhOGcXwbuuRt3w1ItWiCsRI4tfY81G_JmC6-SW_-dsk,204925
|
@@ -192,9 +196,9 @@ vectordb_bench/results/S3Vectors/result_20250722_standard_s3vectors.json,sha256=
|
|
192
196
|
vectordb_bench/results/WeaviateCloud/result_20230727_standard_weaviatecloud.json,sha256=WBlfjmbO3R4G6F4lDuneEigffUyTU7ti1SyWoff3oNI,15497
|
193
197
|
vectordb_bench/results/WeaviateCloud/result_20230808_standard_weaviatecloud.json,sha256=lXjudo-l-6H0EOIemoB5n4GddOOHJnwndrGwCJIH-EY,7865
|
194
198
|
vectordb_bench/results/ZillizCloud/result_20250613_standard_zillizcloud.json,sha256=gZCnDanS5Yb6Uzvb0Q6wDxMl81UAoGzsZRHU8JwqNds,215610
|
195
|
-
vectordb_bench-1.0.
|
196
|
-
vectordb_bench-1.0.
|
197
|
-
vectordb_bench-1.0.
|
198
|
-
vectordb_bench-1.0.
|
199
|
-
vectordb_bench-1.0.
|
200
|
-
vectordb_bench-1.0.
|
199
|
+
vectordb_bench-1.0.8.dist-info/licenses/LICENSE,sha256=HXbxhrb5u5SegVzeLNF_voVgRsJMavcLaOmD1N0lZkM,1067
|
200
|
+
vectordb_bench-1.0.8.dist-info/METADATA,sha256=JSjAun4ffKunabx-VqH8V1bkDMLCxKTd8CPcaiaAxas,42015
|
201
|
+
vectordb_bench-1.0.8.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
202
|
+
vectordb_bench-1.0.8.dist-info/entry_points.txt,sha256=Qzw6gVx96ui8esG21H6yHsI6nboEohRmV424TYhQNrA,113
|
203
|
+
vectordb_bench-1.0.8.dist-info/top_level.txt,sha256=jnhZFZAuKX1J60yt-XOeBZ__ctiZMvoC_s0RFq29lpM,15
|
204
|
+
vectordb_bench-1.0.8.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|