2021-03-12 01:42:21 +08:00
|
|
|
use chrono::Utc;
|
2020-10-26 17:57:34 +08:00
|
|
|
use roaring::RoaringBitmap;
|
2021-06-14 22:46:19 +08:00
|
|
|
|
2021-06-21 21:57:41 +08:00
|
|
|
use crate::{ExternalDocumentsIds, FieldDistribution, Index, Result};
|
2020-10-26 17:57:34 +08:00
|
|
|
|
|
|
|
pub struct ClearDocuments<'t, 'u, 'i> {
|
2020-10-30 18:42:00 +08:00
|
|
|
wtxn: &'t mut heed::RwTxn<'i, 'u>,
|
2020-10-26 17:57:34 +08:00
|
|
|
index: &'i Index,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'t, 'u, 'i> ClearDocuments<'t, 'u, 'i> {
|
2021-11-03 20:12:01 +08:00
|
|
|
pub fn new(wtxn: &'t mut heed::RwTxn<'i, 'u>, index: &'i Index) -> ClearDocuments<'t, 'u, 'i> {
|
|
|
|
ClearDocuments { wtxn, index }
|
2020-10-26 17:57:34 +08:00
|
|
|
}
|
|
|
|
|
2021-06-14 22:46:19 +08:00
|
|
|
pub fn execute(self) -> Result<u64> {
|
2021-03-12 01:42:21 +08:00
|
|
|
self.index.set_updated_at(self.wtxn, &Utc::now())?;
|
2020-10-26 17:57:34 +08:00
|
|
|
let Index {
|
2020-10-30 17:56:35 +08:00
|
|
|
env: _env,
|
2020-10-26 17:57:34 +08:00
|
|
|
main: _main,
|
|
|
|
word_docids,
|
2021-02-03 17:30:33 +08:00
|
|
|
word_prefix_docids,
|
2020-10-26 17:57:34 +08:00
|
|
|
docid_word_positions,
|
|
|
|
word_pair_proximity_docids,
|
2021-02-10 17:28:15 +08:00
|
|
|
word_prefix_pair_proximity_docids,
|
2021-10-05 17:18:42 +08:00
|
|
|
word_position_docids,
|
2021-05-27 21:27:41 +08:00
|
|
|
field_id_word_count_docids,
|
2021-10-05 17:18:42 +08:00
|
|
|
word_prefix_position_docids,
|
2021-04-21 21:43:44 +08:00
|
|
|
facet_id_f64_docids,
|
|
|
|
facet_id_string_docids,
|
|
|
|
field_id_docid_facet_f64s,
|
|
|
|
field_id_docid_facet_strings,
|
2020-10-26 17:57:34 +08:00
|
|
|
documents,
|
|
|
|
} = self.index;
|
|
|
|
|
2020-11-11 23:04:04 +08:00
|
|
|
// We retrieve the number of documents ids that we are deleting.
|
|
|
|
let number_of_documents = self.index.number_of_documents(self.wtxn)?;
|
2021-01-21 00:27:43 +08:00
|
|
|
let faceted_fields = self.index.faceted_fields_ids(self.wtxn)?;
|
2020-10-26 17:57:34 +08:00
|
|
|
|
2020-11-11 23:04:04 +08:00
|
|
|
// We clean some of the main engine datastructures.
|
|
|
|
self.index.put_words_fst(self.wtxn, &fst::Set::default())?;
|
2021-02-03 17:36:07 +08:00
|
|
|
self.index.put_words_prefixes_fst(self.wtxn, &fst::Set::default())?;
|
2020-11-23 00:53:33 +08:00
|
|
|
self.index.put_external_documents_ids(self.wtxn, &ExternalDocumentsIds::default())?;
|
2020-10-26 17:57:34 +08:00
|
|
|
self.index.put_documents_ids(self.wtxn, &RoaringBitmap::default())?;
|
2021-06-21 21:57:41 +08:00
|
|
|
self.index.put_field_distribution(self.wtxn, &FieldDistribution::default())?;
|
2021-08-25 21:32:41 +08:00
|
|
|
self.index.delete_geo_rtree(self.wtxn)?;
|
2021-08-26 23:49:50 +08:00
|
|
|
self.index.delete_geo_faceted_documents_ids(self.wtxn)?;
|
2020-10-26 17:57:34 +08:00
|
|
|
|
2020-11-23 20:08:57 +08:00
|
|
|
// We clean all the faceted documents ids.
|
2021-04-28 23:58:16 +08:00
|
|
|
let empty = RoaringBitmap::default();
|
|
|
|
for field_id in faceted_fields {
|
|
|
|
self.index.put_number_faceted_documents_ids(self.wtxn, field_id, &empty)?;
|
|
|
|
self.index.put_string_faceted_documents_ids(self.wtxn, field_id, &empty)?;
|
2020-11-23 20:08:57 +08:00
|
|
|
}
|
|
|
|
|
2020-11-11 23:04:04 +08:00
|
|
|
// Clear the other databases.
|
2020-10-26 17:57:34 +08:00
|
|
|
word_docids.clear(self.wtxn)?;
|
2021-02-03 17:36:07 +08:00
|
|
|
word_prefix_docids.clear(self.wtxn)?;
|
2020-10-26 17:57:34 +08:00
|
|
|
docid_word_positions.clear(self.wtxn)?;
|
|
|
|
word_pair_proximity_docids.clear(self.wtxn)?;
|
2021-02-10 17:28:15 +08:00
|
|
|
word_prefix_pair_proximity_docids.clear(self.wtxn)?;
|
2021-10-05 17:18:42 +08:00
|
|
|
word_position_docids.clear(self.wtxn)?;
|
2021-05-27 21:27:41 +08:00
|
|
|
field_id_word_count_docids.clear(self.wtxn)?;
|
2021-10-05 17:18:42 +08:00
|
|
|
word_prefix_position_docids.clear(self.wtxn)?;
|
2021-04-21 21:43:44 +08:00
|
|
|
facet_id_f64_docids.clear(self.wtxn)?;
|
|
|
|
facet_id_string_docids.clear(self.wtxn)?;
|
|
|
|
field_id_docid_facet_f64s.clear(self.wtxn)?;
|
|
|
|
field_id_docid_facet_strings.clear(self.wtxn)?;
|
2020-10-26 17:57:34 +08:00
|
|
|
documents.clear(self.wtxn)?;
|
|
|
|
|
2020-11-11 23:04:04 +08:00
|
|
|
Ok(number_of_documents)
|
2020-10-26 17:57:34 +08:00
|
|
|
}
|
|
|
|
}
|
2021-04-01 15:07:16 +08:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use heed::EnvOpenOptions;
|
|
|
|
|
|
|
|
use super::*;
|
2021-08-31 17:44:15 +08:00
|
|
|
use crate::update::IndexDocuments;
|
2021-04-01 15:07:16 +08:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn clear_documents() {
|
|
|
|
let path = tempfile::tempdir().unwrap();
|
|
|
|
let mut options = EnvOpenOptions::new();
|
|
|
|
options.map_size(10 * 1024 * 1024); // 10 MB
|
|
|
|
let index = Index::new(options, &path).unwrap();
|
|
|
|
|
|
|
|
let mut wtxn = index.write_txn().unwrap();
|
2021-08-31 17:44:15 +08:00
|
|
|
let content = documents!([
|
2021-04-01 15:07:16 +08:00
|
|
|
{ "id": 0, "name": "kevin", "age": 20 },
|
|
|
|
{ "id": 1, "name": "kevina" },
|
2021-08-25 21:32:41 +08:00
|
|
|
{ "id": 2, "name": "benoit", "country": "France", "_geo": { "lng": 42, "lat": 35 } }
|
2021-08-31 17:44:15 +08:00
|
|
|
]);
|
2021-11-03 20:12:01 +08:00
|
|
|
IndexDocuments::new(&mut wtxn, &index).execute(content, |_| ()).unwrap();
|
2021-04-01 15:07:16 +08:00
|
|
|
|
|
|
|
// Clear all documents from the database.
|
2021-11-03 20:12:01 +08:00
|
|
|
let builder = ClearDocuments::new(&mut wtxn, &index);
|
2021-04-01 15:07:16 +08:00
|
|
|
assert_eq!(builder.execute().unwrap(), 3);
|
|
|
|
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
|
|
|
|
let rtxn = index.read_txn().unwrap();
|
|
|
|
|
2021-08-25 21:32:41 +08:00
|
|
|
assert_eq!(index.fields_ids_map(&rtxn).unwrap().len(), 5);
|
2021-04-01 15:07:16 +08:00
|
|
|
|
|
|
|
assert!(index.words_fst(&rtxn).unwrap().is_empty());
|
|
|
|
assert!(index.words_prefixes_fst(&rtxn).unwrap().is_empty());
|
|
|
|
assert!(index.external_documents_ids(&rtxn).unwrap().is_empty());
|
|
|
|
assert!(index.documents_ids(&rtxn).unwrap().is_empty());
|
2021-06-17 21:16:20 +08:00
|
|
|
assert!(index.field_distribution(&rtxn).unwrap().is_empty());
|
2021-08-25 21:32:41 +08:00
|
|
|
assert!(index.geo_rtree(&rtxn).unwrap().is_none());
|
2021-08-26 23:49:50 +08:00
|
|
|
assert!(index.geo_faceted_documents_ids(&rtxn).unwrap().is_empty());
|
2021-04-01 15:07:16 +08:00
|
|
|
|
|
|
|
assert!(index.word_docids.is_empty(&rtxn).unwrap());
|
|
|
|
assert!(index.word_prefix_docids.is_empty(&rtxn).unwrap());
|
|
|
|
assert!(index.docid_word_positions.is_empty(&rtxn).unwrap());
|
|
|
|
assert!(index.word_pair_proximity_docids.is_empty(&rtxn).unwrap());
|
2021-05-27 21:27:41 +08:00
|
|
|
assert!(index.field_id_word_count_docids.is_empty(&rtxn).unwrap());
|
2021-04-01 15:07:16 +08:00
|
|
|
assert!(index.word_prefix_pair_proximity_docids.is_empty(&rtxn).unwrap());
|
2021-05-03 21:58:47 +08:00
|
|
|
assert!(index.facet_id_f64_docids.is_empty(&rtxn).unwrap());
|
|
|
|
assert!(index.facet_id_string_docids.is_empty(&rtxn).unwrap());
|
|
|
|
assert!(index.field_id_docid_facet_f64s.is_empty(&rtxn).unwrap());
|
|
|
|
assert!(index.field_id_docid_facet_strings.is_empty(&rtxn).unwrap());
|
2021-04-01 15:07:16 +08:00
|
|
|
assert!(index.documents.is_empty(&rtxn).unwrap());
|
|
|
|
}
|
|
|
|
}
|