Skip to content

Commit

Permalink
Implement update and delete
Browse files Browse the repository at this point in the history
  • Loading branch information
sanketkedia committed Dec 4, 2024
1 parent 92829d5 commit 65dcb09
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 3 deletions.
12 changes: 12 additions & 0 deletions rust/index/src/spann/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -945,6 +945,18 @@ impl SpannIndexWriter {
.await
}

pub async fn update(&self, id: u32, embedding: &[f32]) -> Result<(), SpannIndexWriterError> {
// Delete and then add.
self.delete(id).await?;
self.add(id, embedding).await
}

pub async fn delete(&self, id: u32) -> Result<(), SpannIndexWriterError> {
let mut version_map_guard = self.versions_map.write();
version_map_guard.versions_map.insert(id, 0);
Ok(())
}

pub async fn commit(self) -> Result<SpannIndexFlusher, SpannIndexWriterError> {
// Pl list.
let pl_flusher = match Arc::try_unwrap(self.posting_list_writer) {
Expand Down
36 changes: 33 additions & 3 deletions rust/worker/src/segment/spann_segment.rs
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,26 @@ impl SpannSegmentWriter {
.await
.map_err(SpannSegmentWriterError::SpannSegmentWriterAddRecordError)
}

async fn delete(
&self,
record: &MaterializedLogRecord<'_>,
) -> Result<(), SpannSegmentWriterError> {
self.index
.delete(record.offset_id)
.await
.map_err(SpannSegmentWriterError::SpannSegmentWriterAddRecordError)
}

async fn update(
&self,
record: &MaterializedLogRecord<'_>,
) -> Result<(), SpannSegmentWriterError> {
self.index
.update(record.offset_id, record.merged_embeddings())
.await
.map_err(SpannSegmentWriterError::SpannSegmentWriterAddRecordError)
}
}

struct SpannSegmentFlusher {
Expand All @@ -224,10 +244,20 @@ impl<'referred_data> SegmentWriter<'referred_data> for SpannSegmentWriter {
.await
.map_err(ApplyMaterializedLogError::SpannSegmentError)?;
}
// TODO(Sanket): Implement other operations.
_ => {
todo!()
MaterializedLogOperation::UpdateExisting
| MaterializedLogOperation::OverwriteExisting => {
self.update(record)
.await
.map_err(|_| ApplyMaterializedLogError::BlockfileUpdate)?;
}
MaterializedLogOperation::DeleteExisting => {
self.delete(record)
.await
.map_err(|_| ApplyMaterializedLogError::BlockfileDelete)?;
}
MaterializedLogOperation::Initial => panic!(
"Invariant violation. Mat records should not contain logs in initial state"
),
}
}
Ok(())
Expand Down

0 comments on commit 65dcb09

Please sign in to comment.