Expand description
Point-in-time snapshot restore for vector indexes.
Enables recovery of a vector store to its exact state at any historical timestamp by:
- Locating the latest WAL checkpoint whose timestamp precedes the target.
- Replaying WAL entries from that checkpoint up to (and including) the target timestamp.
WAL timestamps are Unix-epoch seconds (u64) matching the format used by
crate::wal::WalEntry.
Structsยง
- Checkpoint
Ref - Reference to a WAL checkpoint discovered during point-in-time search.
- Point
InTime Restore - Driver for point-in-time recovery.