[Feature] Add cloud leaderboard benchmark cases and client support#775
Open
jamesgao-jpg wants to merge 33 commits into
Open
[Feature] Add cloud leaderboard benchmark cases and client support#775jamesgao-jpg wants to merge 33 commits into
jamesgao-jpg wants to merge 33 commits into
Conversation
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: jamesgao-jpg The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
e258154 to
f909086
Compare
…h-case # Conflicts: # vectordb_bench/backend/clients/milvus/milvus.py # vectordb_bench/backend/clients/turbopuffer/turbopuffer.py # vectordb_bench/backend/dataset.py # vectordb_bench/backend/runner/serial_runner.py
f909086 to
c943513
Compare
…lution # Conflicts: # tests/test_milvus.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR adds the CloudLeadboard v2 benchmark surface to VectorDBBench. The goal is to complement the existing raw-performance leaderboard with cloud-oriented cases that capture production behaviors managed vector database users care about: ingest readiness, payload-aware search, tenant-shaped traffic, cold latency, and cost-aware interpretation.
What is added
New cloud leaderboard cases
CloudPayloadSearchCase: measures search performance with explicit response payload profiles:ids_only,scalar_label, andvector. It supports unfiltered search, integer-filter search, and scalar-label filter search.CloudInsertCase: measures insert throughput and separates client insert completion from downstream readiness signals such as fully searchable and fully indexed.CloudColdLatencyCase: measures cold and warm serial latency so first-query and cache-sensitive serving behavior are visible instead of hidden by warm concurrent loops.CloudMultiTenantSearchCase: models SaaS-style tenant-routed workloads with deterministic tenant assignment and tenant-aware query routing.Runtime and metric plumbing
Client support
CLI, frontend, and docs
docs/release/2026-05-cloud-leadboard.md.README.mdto mention the new CloudLeadboard v2 benchmark cases and link to the release note.Notes
Test Plan
python -m pytest tests/test_cloud_payload_case.py tests/test_cloud_payload_search.py tests/test_cloud_insert_case.py tests/test_cloud_cold_latency_case.py tests/test_multitenant_case.py tests/test_turbopuffer_cli.py tests/test_pinecone_multitenant.py -q