You upsert a document and query for it 200 milliseconds later, but it never appears. Pick the most likely cause.
Options
The write landed in a buffer or fresh segment that is not yet searchable; the index has a freshness lag between acknowledged write and queryable vector
The vector was silently rejected because its values were not normalized to unit length
ANN search is approximate, so a brand new vector has a permanently lower chance of being found
The query embedding model must be restarted before it can see new vectors
Stuck? Peek. Progressively more specific. Each peek narrows the answer further.
L1Hint 1
The write succeeded. Think about when a write becomes searchable, not whether it was stored.
L2Hint 2
Search engines distinguish acknowledged writes from queryable ones; there is a refresh or flush step in between.