Indexes

pgContext adds HNSW indexing. The pure Rust context-index implementation stores typed point IDs, node IDs, and graph layers, validates HNSW parameters, and performs deterministic hierarchical insertion. A stable seed and insertion ordinal assign a bounded level; each insertion descends existing upper layers, explores at most the configured ef_construction candidate frontier per layer, and retains reciprocal neighbor lists bounded by m.

Quantized HNSW and mapped HNSW serving are tracked in the post-V1 roadmap; metadata and helpers below do not imply those serving paths exist just yet.

m is limited to 2..=128. The lower bound is required because a reciprocal graph with more than two nodes cannot remain connected with degree one. Construction and search budgets are also rejected above the shared policy limits before they can drive allocation or work.

Duplicate vectors are stored as separate nodes, while duplicate stable point IDs are rejected without mutating graph state. Equal-distance graph decisions use node ID ordering so repeated builds remain deterministic for the same insertion order.

The pure graph exposes a versioned full-hierarchy snapshot for deterministic roundtrips and tests. Decoding checks counts before allocation and restoring checks contiguous node IDs, unique point IDs, dimensions, entry level, reciprocal links, and connectivity on every induced layer. This portable pure Rust format is separate from the PostgreSQL page codec.

The PostgreSQL access method uses a version-three metapage and typed data-page envelopes. The metapage records dimensions, node count, entry point, stored metric identity, m, and ef_construction. Bulk build and incremental insert persist complete bounded hierarchy records and publish the new graph identity only after the page writes finish. Readers reject corrupt, unsupported, or operator-class-incompatible metadata instead of guessing a configuration. The shared data-page envelope is continuously exercised by the bounded hnsw_page fuzz target; the target only validates portable headers and never claims live PostgreSQL page or WAL recovery coverage.

The pure graph searches from upper layers down to the base layer with the configured ef_search frontier. Controlled search exposes bounded distance, expansion, edge, and cancellation-check counters; its reusable mask is applied only to returned points, so masked nodes can still preserve traversal connectivity. Fixed exact-oracle fixtures verify deterministic recall and work bounds. The experimental SQL access method remains outside the first stable compatibility promise while indexed serving matures.

Candidate masks can restrict returned point IDs during pure HNSW search. Masked points may still be visited as traversal connectors, but they are not returned. An empty mask returns no results without panics. Distinct mask point IDs are bounded by the same 10,000 point policy used by SQL recall checks; over-budget masks fail with the RecallBudgetExceeded category before traversal so callers do not silently receive partial or empty results. HNSW search also accepts adaptive candidate pre-filters that store sparse point sets as sorted IDs and dense point ranges as packed bitmaps. The packed pre-filter path uses the same traversal and budget checks as ordinary candidate masks, but avoids carrying broad dense candidate sets as transient SQL arrays.

The pure graph is covered by hierarchy/state-machine properties for arbitrary levels and insertions, bounded and reciprocal neighbor lists, per-layer connectivity, reusable masks including missing or logically deleted points, duplicate handling, cancellation atomicity, deterministic snapshots, and hard construction-work bounds.

The pure index layer also defines incremental graph read/write ports with an owned per-node and per-layer return contract. This prevents storage adapters from leaking PostgreSQL buffer pins or mapped-file borrows and avoids requiring whole-graph reconstruction for traversal. The current in-memory adapter is a contract fixture, not evidence that PostgreSQL page writes are WAL-safe or that the experimental SQL access method is ready to serve production queries. Both in-memory and persisted-port traversal use the selected ascending-distance kernel for L2, negative inner product, cosine, or L1. Raw inner product is rejected before traversal because nearest-first HNSW requires its negative ascending form. Result ties are ordered by stable point ID, and only the bounded traversal candidate set is sorted.

Every PostgreSQL HNSW index stores its metric identity plus m and ef_construction on the versioned metapage. Build, later inserts/rewiring, and page traversal validate the operator class against that identity instead of substituting L2. Session ef_search remains a query-time traversal budget; changing build-shape GUCs after index creation does not change the persisted graph configuration used for maintenance.

context-index also exposes a deterministic memory estimate for stored vector payload bytes and graph-link bytes. The estimate excludes allocator-dependent container overhead.

The pure index crate includes binary quantization for dense vectors. It emits a core BitVector sign code where non-negative dimensions become 1 and negative dimensions become 0. The SQL API exposes pgcontext.binary_quantize for the same sign-code transformation. SQL exposes pgcontext.rerank_quantized_candidates as the final quantized-candidate gate: approximate candidate order is ignored, every surviving point must supply its original dense vector, and final SQL scores are exact metric scores against those originals. The pure crate uses the same rerank primitive and rejects candidates whose original vector data is missing. Fixed recall fixtures compare binary-quantized candidate selection plus exact rerank against exact top-k ordering.

Scalar quantization is available in the pure index crate through uniform codebooks with 2 to 256 reconstruction levels. Values are mapped to nearest byte codes, values outside the codebook range are clamped to the nearest endpoint, and reconstruction rejects codes that do not fit the codebook. SQL helpers expose scalar/SQ8-style byte-code quantize and reconstruct operations. The pure index crate also includes a product-quantization prototype with fixed-size subvectors, one centroid codebook per subvector, nearest-centroid encoding, and reconstruction by concatenating coded centroids. SQL product quantization accepts JSONB centroid codebooks for encode/reconstruct tests.

pgcontext_hnsw accepts validated quantization index options so operators can record the intended candidate-encoding mode at index creation:

CREATE INDEX docs_embedding_scalar_idx
    ON docs USING pgcontext_hnsw (embedding)
  WITH (
      quantization = 'scalar',
      scalar_min = -1.0,
      scalar_max = 1.0,
      scalar_levels = 256
  );

CREATE INDEX docs_embedding_pq_idx
    ON docs USING pgcontext_hnsw (embedding)
  WITH (
      quantization = 'pq',
      pq_subvector_dimensions = 2,
      pq_codebooks = '[[[0,0],[1,1]],[[1,0],[0,1]]]'
  );

quantization accepts none, scalar, sq8, or pq. Scalar and SQ8 modes validate finite scalar_min/scalar_max bounds and scalar_levels in the 2..=256 byte-code range. PQ mode validates a positive pq_subvector_dimensions value and JSON-array pq_codebooks. Invalid options fail CREATE INDEX with SQLSTATE 22023 (invalid_parameter_value). These reloptions are catalog-visible configuration today; storing quantized metadata in the HNSW metapage records the selected mode, metadata version, scalar bounds/levels, PQ subvector width, and a deterministic PQ codebook hash so restart and upgrade checks can reject incompatible metadata safely. Serving quantized candidates must still pass through exact rerank before rows are returned to SQL.

The SQL extension registers the pgcontext_hnsw index access method and can create HNSW indexes on empty or populated vector columns. Static builds scan the heap table, decode vector datums, use heap TIDs as graph point IDs, and materialize the pure Rust HNSW graph during CREATE INDEX. Inserts publish complete replacement topology, and VACUUM records idempotent tombstones for callback-confirmed dead heap TIDs. Ordered scans rebuild bounded traversal state from persisted pages, skip unpublished or tombstoned records, and never replace a selected HNSW scan with exact record scoring. PostgreSQL heap visibility and the public table-search recheck remain authoritative for returned rows.

The access method remains experimental because the V1 release does not promise a long-term on-disk compatibility window or broad workload certification. Bounded tests cover insert, update, delete, abort, HOT/TID reuse, VACUUM, REINDEX, restart, forced index plans, exact-oracle ordering, and all four dense metrics.

IVFFlat

pgContext does not support IVFFlat in the first production compatibility surface. This is an intentional product and operations boundary, not an unimplemented SQL spelling. pgContext is standardizing production retrieval on PostgreSQL source tables, exact correctness, filter rechecks, and the experimental pgcontext_hnsw path; IVFFlat’s trained list/probe model would require a separate artifact lifecycle, planner contract, recall harness, and filtered search policy that are not part of the release contract.

For pgvector migrations, keep existing pgvector IVFFlat indexes for queries that still need them, then introduce pgContext exact or HNSW-backed paths where recall checks and operational diagnostics meet the workload target. Do not treat pgContext HNSW as a drop-in IVFFlat replacement without validating recall, latency, MVCC visibility, ACL/RLS behavior, and final predicate rechecks.

HNSW Settings

HNSW tuning uses PostgreSQL GUCs with defaults checked against shared context-core policy constants:

Setting Default Purpose
pgcontext.hnsw_m 16 Maximum retained HNSW neighbors per node.
pgcontext.hnsw_ef_construction 64 Build-time candidate budget.
pgcontext.hnsw_ef_search 32 Search visit budget for pure HNSW traversal.
pgcontext.hnsw_candidate_budget 32 Default candidate budget for filtered or iterative HNSW search.
pgcontext.hnsw_iterative_expansion_limit 10000 Maximum candidate batch size for iterative HNSW recheck.
pgcontext.hnsw_recall_threshold 0.95 Default minimum recall target for approximate HNSW health checks.
pgcontext.hnsw_shared_serving on Publish packed HNSW graph generations to a shared registry so other backends attach instead of rebuilding.
pgcontext.hnsw_shared_serving_budget_mb 512 Total shared-registry bytes across all indexes; a publish that would exceed this is skipped.
pgcontext.hnsw_pack_on_first_use on When off and no pack is available anywhere, serve queries from unpacked directory reads instead of paying a full pack inline.
pgcontext.hnsw_mask_candidate_limit 10000 Maximum distinct point IDs a filter-aware HNSW scan (pgcontext._hnsw_masked_candidates and the collection-search masked path) accepts as its candidate mask. Independent of pgcontext.hnsw_iterative_expansion_limit; raise it to serve larger filtered result sets through the masked scan instead of falling back to an exact scan.
pgcontext.hnsw_build_parallel_workers 1 Threads used to construct the in-memory HNSW graph during CREATE INDEX/REINDEX. 1 (default) builds single-threaded and deterministic. Raising this parallelizes graph construction across threads in the building backend using per-node locking; the resulting graph is structurally valid but not bit-identical to a sequential build of the same rows. Measured 2-3.5x faster at 2-8 workers on a 20k-row/384-dim corpus.
pgcontext.pgvector_compat_warnings on In pgvector coexist mode, emit one advisory NOTICE per backend and index when serving a pgvector-typed column, recommending pgcontext.migration_report(). Results are always complete either way; see pgvector_coexist.md.
pgcontext.hnsw_delta_segment_limit 10000 Rows an HNSW index absorbs through the segmented-write delta region before falling back to inline graph-splice inserts. Inserts append a small fixed-format record instead of splicing into the graph; scans merge an exact scan over the region with base-graph results. 0 disables the delta region (every insert splices inline).
pgcontext.hnsw_compact_on_threshold on Whether the insert that fills the delta segment compacts the index in place before appending, draining the segment so later inserts stay on the fast path. That insert pays for a full rebuild, so turn this off if uniform insert latency matters more than sustained throughput and schedule pgcontext.compact() yourself. Ignored when the delta region is disabled (hnsw_delta_segment_limit = 0) or was never opened. Compaction declines, leaving the insert on the inline path, if the parent-table lock is not immediately available or the rebuilt graph would exceed maintenance_work_mem.
pgcontext.hnsw_compact_on_threshold_max_mb 1024 Largest index an insert may compact by itself, in megabytes of projected vectors (rows x dimensions x 4). Bounds how long a single INSERT can block, because compaction runs synchronously on the write path and its cost grows with the graph: on a 100,000-row 384-dimension index (~146MB of vectors) a compaction takes roughly a minute, so the 1GB default admits stalls of several minutes on the largest index it accepts. The default is deliberately permissive so ordinary workloads keep self-maintaining; lower it when bounded write latency matters more than sustained throughput. Above the bound the insert declines and takes the inline path, leaving the rebuild to pgcontext.compact() or REINDEX. maintenance_work_mem applies independently and is often the tighter limit. 0 removes this bound.

Set these with SET LOCAL inside controlled build or validation sessions, then validate approximate paths with pgcontext.recall_check before any controlled rollout. Do not route production traffic to HNSW until approximate serving is validated for your workload’s recall, latency, and correctness targets.

Index Status

Use pgcontext.index_status(index_name) to inspect PostgreSQL catalog status for an index:

SELECT index_schema,
       index_name,
       table_schema,
       table_name,
       access_method,
       is_valid,
       is_ready,
       is_live,
       status
FROM pgcontext.index_status('public.docs_embedding_idx');

The status column is the typed enum pgcontext."IndexLifecycleStatus" with Ready, Building, or Invalid. Missing indexes use SQLSTATE 42704 (undefined_object).

Use pgcontext.index_diagnostics(index_name) when an operator needs a typed serving decision plus repair advice:

SELECT status,
       context_error,
       sqlstate,
       repair_advice
FROM pgcontext.index_diagnostics('public.docs_embedding_idx');

The diagnostic status is Ready, IndexNotReady, IndexCorrupt, or UnsupportedAccessMethod. Not-ready and corrupt pgContext serving indexes include the stable context error name and SQLSTATE.

Use pgcontext.index_advisor(collection) to inspect ordinary PostgreSQL index gaps for registered filters:

SELECT filter_key,
       column_name,
       recommendation,
       detail,
       suggested_sql
FROM pgcontext.index_advisor('docs');

The advisor can recommend B-tree indexes for ordinary filter columns, GIN indexes for JSONB filter columns, ANALYZE for stale statistics, and HNSW settings review when no pgContext HNSW index is present.

Index Memory Estimate

Use pgcontext.estimate_index_memory(index_name) to inspect the projected in-memory search payload for a pgContext index:

SELECT index_schema,
       index_name,
       table_schema,
       table_name,
       access_method,
       estimated_rows,
       dimensions,
       vector_bytes,
       link_bytes,
       total_bytes,
       status
FROM pgcontext.estimate_index_memory('public.docs_embedding_idx');

For pgcontext_hnsw, vector_bytes projects dense f32 payload bytes and link_bytes projects retained graph-neighbor identifier bytes from PostgreSQL index row estimates and an observed non-null indexed vector. The estimate excludes allocator-dependent container overhead and is not the on-disk relation size. status is the typed enum pgcontext."IndexMemoryEstimateStatus" with Projected, UnsupportedAccessMethod, or UnavailableStatistics. Missing indexes use SQLSTATE 42704 (undefined_object).

Build Memory Budget

CREATE INDEX ... USING pgcontext_hnsw builds the graph in backend memory and enforces PostgreSQL’s maintenance_work_mem as a hard budget. When the estimated build memory exceeds the budget, the build stops with SQLSTATE 22023 and a HINT carrying a suggested setting instead of silently spilling:

ERROR:  HNSW build estimated memory 67475472 bytes exceeds maintenance_work_mem budget 67108864 bytes after 98304 indexed vectors
HINT:  Raise the build budget for this session, for example SET maintenance_work_mem = '97MB', then retry CREATE INDEX.

Size the budget before building: roughly rows × (dimensions × 4 bytes + m × 16 bytes) plus headroom, or run pgcontext.estimate_index_memory against an existing index of the same shape. PostgreSQL’s default 64MB budget caps out near 100,000 384-dimensional vectors. Set the budget for the build session only:

SET maintenance_work_mem = '2GB';
CREATE INDEX docs_embedding_hnsw ON docs
    USING pgcontext_hnsw (embedding pgcontext.vector_hnsw_cosine_ops);
RESET maintenance_work_mem;

pgvector degrades to slower incremental insertion when its in-memory phase fills; pgContext currently refuses instead so the budget stays honest. A within-budget streaming build path is tracked on the roadmap.

Vacuum Advice

Use pgcontext.vacuum_advice(index_name) to inspect PostgreSQL-visible maintenance signals for an index and its owning table:

SELECT index_schema,
       index_name,
       table_schema,
       table_name,
       access_method,
       estimated_index_tuples,
       index_pages,
       dead_table_tuples,
       status
FROM pgcontext.vacuum_advice('public.docs_embedding_idx');

For pgcontext_hnsw, the advice uses catalog tuple/page estimates and dead heap tuple statistics, so maintenance recommendations follow PostgreSQL statistics collection timing. Callback-confirmed tombstone revisions are excluded from query candidates immediately; delayed statistics affect recommendation timing, not result correctness. status is the typed enum pgcontext."VacuumAdviceStatus" with Healthy, VacuumRecommended, AnalyzeRecommended, or UnsupportedAccessMethod. Missing indexes use SQLSTATE 42704 (undefined_object).

Recall Check

Use pgcontext.recall_check(exact_point_ids, candidate_point_ids, min_recall) to compare an approximate or filtered candidate set with exact point IDs:

SELECT exact_count,
       candidate_count,
       intersection_count,
       recall,
       status
FROM pgcontext.recall_check(
  ARRAY[10,20,30]::bigint[],
  ARRAY[20,30,40]::bigint[],
  0.95
);

Duplicate point IDs are counted once. status is the typed enum pgcontext."RecallCheckStatus" with Passing, Failing, or EmptyExact. Invalid min_recall values and negative point IDs use SQLSTATE 22023 (invalid_parameter_value). Each input array is limited by the core MAX_RECALL_CHECK_POINT_IDS policy, currently 10,000; larger recall checks fail with SQLSTATE 54000 (program_limit_exceeded) before set construction. The measured counters are the returned exact_count, candidate_count, and intersection_count. pgcontext.explain exposes the current recall-check budget as a recall_budget stage, and candidate counts can be recorded through pgcontext.record_query_stat for query-cohort diagnostics.