Skip to content

Add PyLucene backend for cuVS-Lucene vector search in cuvs-bench - #2385

Draft
nvzm123 wants to merge 18 commits into
NVIDIA:mainfrom
nvzm123:agent/pylucene-benchmark-backend
Draft

Add PyLucene backend for cuVS-Lucene vector search in cuvs-bench#2385
nvzm123 wants to merge 18 commits into
NVIDIA:mainfrom
nvzm123:agent/pylucene-benchmark-backend

Conversation

@nvzm123

@nvzm123 nvzm123 commented Jul 31, 2026

Copy link
Copy Markdown
Contributor

Summary

This PR adds a built-in pylucene backend to cuVS Bench for building and searching local Lucene vector indexes through PyLucene and cuVS-Lucene.

It supports:

  • Lucene101AcceleratedHNSWCodec for cuVS-assisted HNSW construction with Lucene HNSW search;
  • CuVS2510GPUSearchCodec for GPU CAGRA construction and search;
  • packaged configurations, deterministic parameter sweeps, automatic tuning, dry runs, index reuse, forced rebuilds, query batching, and standard cuVS Bench CSV results; and
  • h5py as an explicit dependency for the existing dataset-preparation path.

HNSW parameters and topology

The HNSW backend exposes these benchmark parameters:

  • m maps to AcceleratedHNSWParams.maxConn;
  • ef_construction maps to AcceleratedHNSWParams.beamWidth;
  • both inputs use cuVS-Lucene's SAME_GRAPH_FOOTPRINT heuristic to derive the underlying CAGRA build parameters;
  • num_candidates controls Lucene's KnnFloatVectorQuery candidate budget and may be swept independently for each built index; and
  • direct_single_segment requests one direct Lucene segment without a force merge and verifies the committed topology.

Stock PyLucene instantiates codecs through no-argument constructors. The backend therefore compiles a small Java adapter before JVM startup that delegates to the production accelerated codec with the requested heuristic parameters. It does not reimplement the codec.

Automatic tuning covers m, ef_construction, and num_candidates, with the candidate lower bound resolved from top_k. Build parameters and segment count are recorded in schema-v4 provenance so incompatible indexes cannot be silently reused.

Runtime and integrity behavior

The backend validates the PyLucene 10.2 ABI, JAR layout, native-library paths, Lucene SPI codecs, dataset shape, and index location before execution. PyLucene and the JVM are initialized lazily.

HNSW preserves cuVS-Lucene's production behavior: it uses the accelerated writer when available and intentionally falls back to Lucene's CPU writer otherwise. CAGRA requires GPU support and is validated fail-closed. CAGRA segment metadata, vector dimensions and counts, file coverage, headers, footers, and checksums are verified before results are accepted.

Atomic, commit-bound provenance protects index reuse. Failed new builds remove only their partial output, and preflight failures preserve an existing index. In-process backend results use the shared direct CSV exporter and preserve build/search identity, latency percentiles, and failure handling.

Requirements and limits

  • FLOAT32 Euclidean/L2 datasets, at most 4096 dimensions, and at least two indexed vectors
  • latency mode with one search thread; query batching through --batch-size
  • num_candidates >= top_k for HNSW; this is Lucene's candidate budget, not a direct cuVS ef_search setting
  • CAGRA searches with k <= 1024
  • direct_single_segment remains subject to Lucene's per-indexing-thread hard RAM limit and fails if Lucene commits more than one segment
  • process-wide PyLucene JVM settings cannot change after initialization

PyLucene 10.2 remains a source-built external dependency. This PR depends on the in-tree PyLucene support in NVIDIA/cuvs#2475 until that PR is merged. Exact tested revisions and artifact provenance are recorded under Validation. PR #2475 ports the PyLucene work originally developed in NVIDIA/cuvs-lucene#174; no standalone cuvs-lucene checkout or patch composition is required.

Test coverage

Pytest coverage includes backend registration, configuration expansion and tuning, parameter validation, adapter compilation and classpath failures, JVM and SPI validation, index build/reuse/cleanup, single- and multi-segment topology, search candidate propagation, result export, provenance mismatches, CAGRA corruption detection, and CLI failure handling.

The opt-in live suite exercises both production codecs with a real PyLucene/JVM/cuVS runtime. It proves configured accelerated-writer selection, intentional CPU fallback in a fresh process, sequential parameter isolation, direct single-segment construction, num_candidates wiring, CAGRA validation, index reuse, search correctness, and CLI build/search execution.

Validation

Validation was performed against these revisions, which were current when the run completed:

The native cuVS libraries, cuvs-java JAR, and cuvs-lucene JAR used below were built from the same #2475 checkout. Before the downstream run, an import and native-map check confirmed that Python loaded cuvs_bench.backends.pylucene from the #2385 source tree while the four cuVS/RMM native libraries came from the #2475 build tree.

Upstream dependency validation

This suite validates #2475's PyLucene integration independently. It does not exercise the cuVS Bench backend.

Downstream cuVS Bench integration validation

This suite imports and executes #2385's PyLuceneBackend and cuVS Bench orchestration against artifacts built from #2475. It includes a fresh-process python -m cuvs_bench.run build/search sweep and validates cuVS Bench CSV output, so it tests the downstream integration rather than only the dependency.

Regression and static validation

  • Full python/cuvs_bench pytest suite in the dedicated GPU regression environment: 487 passed, 49 skipped in 72.56s
  • Ruff lint and format checks for all 23 Python files changed by this PR, using the monorepo root configuration: passed
  • Worktree and full PR git diff --check: passed

Related work

nvzm123 added 5 commits July 31, 2026 13:27
Dataset preparation imports h5py at runtime. Declare it in both the dependency manifest and project metadata so supported environments install it consistently.
Add opt-in atomic JSON persistence for Python-native backends, preserve canonical result fields, and keep derived CSV artifacts synchronized. Propagate sweep failures through the CLI and cover result identity, export, and cleanup behavior.
Register a local PyLucene backend for cuVS-Lucene HNSW and CAGRA codecs. Add deterministic config selection, lazy JVM and codec resolution, GPU writer validation, safe index lifecycle handling, commit-bound provenance, CAGRA integrity checks, and focused unit coverage.
Exercise real JVM and cuVS-Lucene HNSW and CAGRA build/search paths behind an opt-in pytest marker. Cover persisted GPU formats, index reuse, CLI execution, fallback rejection, and integrity failures.
Document the verified dependency build, runtime configuration, supported codecs and limits, manual smoke workflow, index reuse behavior, and benchmark result semantics.
@copy-pr-bot

copy-pr-bot Bot commented Jul 31, 2026

Copy link
Copy Markdown

This pull request requires additional validation before any workflows can run on NVIDIA's runners.

Pull request vetters can view their responsibilities here.

Contributors can view more details about this message here.

@cjnolet cjnolet added improvement Improves an existing functionality non-breaking Introduces a non-breaking change labels Aug 1, 2026
nvzm123 added 13 commits August 14, 2026 17:00
…ark-backend

Signed-off-by: nvzm123 <zmeeks@nvidia.com>

# Conflicts:
#	python/cuvs_bench/cuvs_bench/orchestrator/orchestrator.py
#	python/cuvs_bench/cuvs_bench/run/__main__.py
#	python/cuvs_bench/cuvs_bench/run/data_export.py
#	python/cuvs_bench/cuvs_bench/tests/test_data_export.py
Use the shared direct CSV exporter for in-process backends and remove the redundant JSON persistence layer. Preserve scoped result identities, latency percentiles, safe artifact paths, stale-result cleanup, and accurate CLI exit behavior.

Signed-off-by: nvzm123 <zmeeks@nvidia.com>
Target the production HNSW and CAGRA codecs exposed by the current cuVS-Lucene PR. Preserve the intentional HNSW CPU fallback, keep fail-closed CAGRA integrity checks, and verify actual HNSW writer selection through a downstream test-only codec adapter.

Signed-off-by: nvzm123 <zmeeks@nvidia.com>
Document the current JDK, PyLucene, cuVS Java, and cuVS-Lucene requirements. Describe the two supported production codecs, HNSW fallback behavior, CAGRA validation contract, and the current manual validation workflow.

Signed-off-by: nvzm123 <zmeeks@nvidia.com>
Signed-off-by: nvzm123 <zmeeks@nvidia.com>
Signed-off-by: nvzm123 <zmeeks@nvidia.com>
Validate the generated PyLucene ABI before JVM startup and follow the current cuVS-Lucene codec and writer-selection contracts. Preserve Lucene defaults for HNSW while keeping CAGRA segment files directly verifiable across flushes and merges. Extend provenance and live coverage for GPU selection, CPU fallback, and merged CAGRA indexes.

Signed-off-by: nvzm123 <zmeeks@nvidia.com>
Document the custom Lucene 10.2 wrapper requirement, temporary PR 174 artifact workflow, codec-specific compound-file policies, fallback behavior, and latency units.

Signed-off-by: nvzm123 <zmeeks@nvidia.com>
Pass m and ef_construction through a PyLucene-compatible codec adapter, expose num_candidates sweeps, and support verified direct single-segment builds. Persist the complete build identity and extend unit and live coverage for writer selection, fallback, topology, tuning, and reuse.

Signed-off-by: nvzm123 <zmeeks@nvidia.com>
Describe the validated cuVS-Lucene source combination and adapter requirements. Document supported HNSW parameters, tuning ranges, single-segment constraints, and a manual sweep workflow.

Signed-off-by: nvzm123 <zmeeks@nvidia.com>
Use cuVS PR NVIDIA#2475 as the pinned source for matching native, cuvs-java, and cuvs-lucene artifacts. Refresh monorepo paths, validation commands, and adapter compatibility guidance.

Signed-off-by: nvzm123 <zmeeks@nvidia.com>
Signed-off-by: nvzm123 <zmeeks@nvidia.com>
Group PyLucene unit, runtime, provenance, and integration coverage under a dedicated test subtree. Preserve recursive discovery and update shared helper and project fixture paths.

Signed-off-by: nvzm123 <zmeeks@nvidia.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

improvement Improves an existing functionality non-breaking Introduces a non-breaking change

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants