docs/documentation/vector/tuning.mdx
Vector search is approximate: it probes a subset of the index's vector clusters rather than scanning every vector. Probing more clusters improves recall (i.e. how often the true nearest neighbors are returned) at the cost of higher latency. Two session-level settings control this tradeoff:
SET paradedb.vector_cluster_probe_epsilon = 0.5;
SET paradedb.vector_cluster_max_probe = 0.02;
Note that setting this value to 1.0 does not equal exhaustive search, since the epsilon value still drives early termination.