Hacker News new | ask | show | jobs
by levkk 897 days ago
Curious about the "outside of the database" index generation part. Is this index WAL-protected eventually?
1 comments

Yes it is WAL protected: the advantage of external indexing is that the HNSW graph is being constructed externally on multiple cores instead on a single core inside the Postgres process. But eventually the graph is being parsed and processed inside Postgres with all the necessary WAL logs for blocks.