2019-10-18 13:05:28 +02:00
|
|
|
use std::collections::{BTreeSet, HashMap, HashSet};
|
2019-10-03 15:04:11 +02:00
|
|
|
|
|
|
|
use fst::{SetBuilder, Streamer};
|
2019-11-26 11:06:55 +01:00
|
|
|
use meilisearch_schema::Schema;
|
2019-10-18 13:05:28 +02:00
|
|
|
use sdset::{duo::DifferenceByKey, SetBuf, SetOperation};
|
2019-10-03 15:04:11 +02:00
|
|
|
|
2019-11-26 16:12:06 +01:00
|
|
|
use crate::database::{MainT, UpdateT};
|
2019-11-06 10:49:13 +01:00
|
|
|
use crate::database::{UpdateEvent, UpdateEventsEmitter};
|
2019-10-03 15:04:11 +02:00
|
|
|
use crate::serde::extract_document_id;
|
|
|
|
use crate::store;
|
2020-01-16 16:19:04 +01:00
|
|
|
use crate::update::{next_update_id, compute_short_prefixes, Update};
|
2019-10-18 13:05:28 +02:00
|
|
|
use crate::{DocumentId, Error, MResult, RankedMap};
|
2019-10-03 15:04:11 +02:00
|
|
|
|
|
|
|
pub struct DocumentsDeletion {
|
|
|
|
updates_store: store::Updates,
|
2019-10-07 16:16:04 +02:00
|
|
|
updates_results_store: store::UpdatesResults,
|
2019-11-06 10:49:13 +01:00
|
|
|
updates_notifier: UpdateEventsEmitter,
|
2019-10-03 15:04:11 +02:00
|
|
|
documents: Vec<DocumentId>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl DocumentsDeletion {
|
2019-10-07 16:16:04 +02:00
|
|
|
pub fn new(
|
|
|
|
updates_store: store::Updates,
|
|
|
|
updates_results_store: store::UpdatesResults,
|
2019-11-06 10:49:13 +01:00
|
|
|
updates_notifier: UpdateEventsEmitter,
|
2019-10-18 13:05:28 +02:00
|
|
|
) -> DocumentsDeletion {
|
2019-10-07 16:16:04 +02:00
|
|
|
DocumentsDeletion {
|
|
|
|
updates_store,
|
|
|
|
updates_results_store,
|
|
|
|
updates_notifier,
|
|
|
|
documents: Vec::new(),
|
|
|
|
}
|
2019-10-03 15:04:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn delete_document_by_id(&mut self, document_id: DocumentId) {
|
|
|
|
self.documents.push(document_id);
|
|
|
|
}
|
|
|
|
|
2019-10-07 17:48:26 +02:00
|
|
|
pub fn delete_document<D>(&mut self, schema: &Schema, document: D) -> MResult<()>
|
2019-10-18 13:05:28 +02:00
|
|
|
where
|
|
|
|
D: serde::Serialize,
|
2019-10-03 15:04:11 +02:00
|
|
|
{
|
|
|
|
let identifier = schema.identifier_name();
|
|
|
|
let document_id = match extract_document_id(identifier, &document)? {
|
|
|
|
Some(id) => id,
|
|
|
|
None => return Err(Error::MissingDocumentId),
|
|
|
|
};
|
|
|
|
|
|
|
|
self.delete_document_by_id(document_id);
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2019-11-26 16:12:06 +01:00
|
|
|
pub fn finalize(self, writer: &mut heed::RwTxn<UpdateT>) -> MResult<u64> {
|
2019-11-06 10:49:13 +01:00
|
|
|
let _ = self.updates_notifier.send(UpdateEvent::NewUpdate);
|
2019-10-07 16:16:04 +02:00
|
|
|
let update_id = push_documents_deletion(
|
2019-10-11 11:29:47 +02:00
|
|
|
writer,
|
2019-10-07 16:16:04 +02:00
|
|
|
self.updates_store,
|
|
|
|
self.updates_results_store,
|
|
|
|
self.documents,
|
|
|
|
)?;
|
|
|
|
Ok(update_id)
|
2019-10-03 15:04:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Extend<DocumentId> for DocumentsDeletion {
|
2019-10-18 13:05:28 +02:00
|
|
|
fn extend<T: IntoIterator<Item = DocumentId>>(&mut self, iter: T) {
|
2019-10-03 15:04:11 +02:00
|
|
|
self.documents.extend(iter)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-08 17:24:11 +02:00
|
|
|
pub fn push_documents_deletion(
|
2019-11-26 16:12:06 +01:00
|
|
|
writer: &mut heed::RwTxn<UpdateT>,
|
2019-10-08 17:24:11 +02:00
|
|
|
updates_store: store::Updates,
|
|
|
|
updates_results_store: store::UpdatesResults,
|
|
|
|
deletion: Vec<DocumentId>,
|
2019-10-18 13:05:28 +02:00
|
|
|
) -> MResult<u64> {
|
2019-10-08 17:24:11 +02:00
|
|
|
let last_update_id = next_update_id(writer, updates_store, updates_results_store)?;
|
|
|
|
|
2019-11-12 18:00:47 +01:00
|
|
|
let update = Update::documents_deletion(deletion);
|
2019-10-08 17:31:07 +02:00
|
|
|
updates_store.put_update(writer, last_update_id, &update)?;
|
2019-10-08 17:24:11 +02:00
|
|
|
|
|
|
|
Ok(last_update_id)
|
|
|
|
}
|
|
|
|
|
2019-10-03 15:04:11 +02:00
|
|
|
pub fn apply_documents_deletion(
|
2019-11-26 16:12:06 +01:00
|
|
|
writer: &mut heed::RwTxn<MainT>,
|
2020-01-16 16:29:50 +01:00
|
|
|
index: &store::Index,
|
2019-10-03 15:04:11 +02:00
|
|
|
deletion: Vec<DocumentId>,
|
2019-10-18 13:05:28 +02:00
|
|
|
) -> MResult<()> {
|
2019-10-03 15:04:11 +02:00
|
|
|
let idset = SetBuf::from_dirty(deletion);
|
|
|
|
|
2020-01-16 16:29:50 +01:00
|
|
|
let schema = match index.main.schema(writer)? {
|
2019-10-07 17:48:26 +02:00
|
|
|
Some(schema) => schema,
|
|
|
|
None => return Err(Error::SchemaMissing),
|
|
|
|
};
|
|
|
|
|
2020-01-16 16:29:50 +01:00
|
|
|
let mut ranked_map = match index.main.ranked_map(writer)? {
|
2019-10-21 17:33:52 +02:00
|
|
|
Some(ranked_map) => ranked_map,
|
|
|
|
None => RankedMap::default(),
|
|
|
|
};
|
|
|
|
|
2019-10-03 15:04:11 +02:00
|
|
|
// collect the ranked attributes according to the schema
|
2019-10-18 13:05:28 +02:00
|
|
|
let ranked_attrs: Vec<_> = schema
|
|
|
|
.iter()
|
|
|
|
.filter_map(
|
|
|
|
|(_, attr, prop)| {
|
|
|
|
if prop.is_ranked() {
|
|
|
|
Some(attr)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
},
|
|
|
|
)
|
2019-10-03 15:04:11 +02:00
|
|
|
.collect();
|
|
|
|
|
|
|
|
let mut words_document_ids = HashMap::new();
|
|
|
|
for id in idset {
|
|
|
|
// remove all the ranked attributes from the ranked_map
|
|
|
|
for ranked_attr in &ranked_attrs {
|
|
|
|
ranked_map.remove(id, *ranked_attr);
|
|
|
|
}
|
|
|
|
|
2020-01-16 16:29:50 +01:00
|
|
|
if let Some(words) = index.docs_words.doc_words(writer, id)? {
|
2019-10-03 15:04:11 +02:00
|
|
|
let mut stream = words.stream();
|
|
|
|
while let Some(word) = stream.next() {
|
|
|
|
let word = word.to_vec();
|
2019-10-18 13:05:28 +02:00
|
|
|
words_document_ids
|
|
|
|
.entry(word)
|
|
|
|
.or_insert_with(Vec::new)
|
|
|
|
.push(id);
|
2019-10-03 15:04:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut deleted_documents = HashSet::new();
|
|
|
|
let mut removed_words = BTreeSet::new();
|
|
|
|
for (word, document_ids) in words_document_ids {
|
|
|
|
let document_ids = SetBuf::from_dirty(document_ids);
|
|
|
|
|
2020-01-16 16:29:50 +01:00
|
|
|
if let Some(postings) = index.postings_lists.postings_list(writer, &word)? {
|
2020-01-08 15:30:43 +01:00
|
|
|
let op = DifferenceByKey::new(&postings.matches, &document_ids, |d| d.document_id, |id| *id);
|
2019-10-03 15:04:11 +02:00
|
|
|
let doc_indexes = op.into_set_buf();
|
|
|
|
|
|
|
|
if !doc_indexes.is_empty() {
|
2020-01-16 16:29:50 +01:00
|
|
|
index.postings_lists.put_postings_list(writer, &word, &doc_indexes)?;
|
2019-10-03 15:04:11 +02:00
|
|
|
} else {
|
2020-01-16 16:29:50 +01:00
|
|
|
index.postings_lists.del_postings_list(writer, &word)?;
|
2019-10-03 15:04:11 +02:00
|
|
|
removed_words.insert(word);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for id in document_ids {
|
2020-01-16 16:29:50 +01:00
|
|
|
index.documents_fields_counts.del_all_document_fields_counts(writer, id)?;
|
|
|
|
if index.documents_fields.del_all_document_fields(writer, id)? != 0 {
|
2019-10-03 15:04:11 +02:00
|
|
|
deleted_documents.insert(id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-08 14:53:35 +02:00
|
|
|
let deleted_documents_len = deleted_documents.len() as u64;
|
|
|
|
for id in deleted_documents {
|
2020-01-16 16:29:50 +01:00
|
|
|
index.docs_words.del_doc_words(writer, id)?;
|
2019-10-08 14:53:35 +02:00
|
|
|
}
|
|
|
|
|
2019-10-03 15:04:11 +02:00
|
|
|
let removed_words = fst::Set::from_iter(removed_words).unwrap();
|
2020-01-16 16:29:50 +01:00
|
|
|
let words = match index.main.words_fst(writer)? {
|
2019-10-03 15:04:11 +02:00
|
|
|
Some(words_set) => {
|
|
|
|
let op = fst::set::OpBuilder::new()
|
|
|
|
.add(words_set.stream())
|
|
|
|
.add(removed_words.stream())
|
|
|
|
.difference();
|
|
|
|
|
|
|
|
let mut words_builder = SetBuilder::memory();
|
|
|
|
words_builder.extend_stream(op).unwrap();
|
|
|
|
words_builder
|
|
|
|
.into_inner()
|
|
|
|
.and_then(fst::Set::from_bytes)
|
|
|
|
.unwrap()
|
2019-10-18 13:05:28 +02:00
|
|
|
}
|
2019-10-03 15:04:11 +02:00
|
|
|
None => fst::Set::default(),
|
|
|
|
};
|
|
|
|
|
2020-01-16 16:29:50 +01:00
|
|
|
index.main.put_words_fst(writer, &words)?;
|
|
|
|
index.main.put_ranked_map(writer, &ranked_map)?;
|
|
|
|
index.main.put_number_of_documents(writer, |old| old - deleted_documents_len)?;
|
2019-10-03 15:04:11 +02:00
|
|
|
|
2020-01-16 16:29:50 +01:00
|
|
|
compute_short_prefixes(writer, index)?;
|
2020-01-16 16:19:04 +01:00
|
|
|
|
2019-10-03 15:04:11 +02:00
|
|
|
Ok(())
|
|
|
|
}
|