2022-01-19 21:30:03 +08:00
|
|
|
use std::collections::HashMap;
|
2021-03-25 18:10:12 +08:00
|
|
|
|
2022-01-19 21:30:03 +08:00
|
|
|
use fst::IntoStreamer;
|
2022-01-18 22:23:18 +08:00
|
|
|
use grenad::{CompressionType, MergerBuilder};
|
|
|
|
use heed::BytesDecode;
|
2021-03-25 18:10:12 +08:00
|
|
|
use log::debug;
|
2021-08-19 00:04:24 +08:00
|
|
|
use slice_group_by::GroupBy;
|
2021-03-25 18:10:12 +08:00
|
|
|
|
|
|
|
use crate::update::index_documents::{
|
2022-01-19 21:30:03 +08:00
|
|
|
create_sorter, fst_stream_into_hashset, merge_cbo_roaring_bitmaps, sorter_into_lmdb_database,
|
|
|
|
CursorClonableMmap, MergeFn, WriteMethod,
|
2021-03-25 18:10:12 +08:00
|
|
|
};
|
2022-01-18 22:23:18 +08:00
|
|
|
use crate::{Index, Result, StrStrU8Codec};
|
2021-03-25 18:10:12 +08:00
|
|
|
|
|
|
|
pub struct WordPrefixPairProximityDocids<'t, 'u, 'i> {
|
|
|
|
wtxn: &'t mut heed::RwTxn<'i, 'u>,
|
|
|
|
index: &'i Index,
|
|
|
|
pub(crate) chunk_compression_type: CompressionType,
|
|
|
|
pub(crate) chunk_compression_level: Option<u32>,
|
|
|
|
pub(crate) max_nb_chunks: Option<usize>,
|
|
|
|
pub(crate) max_memory: Option<usize>,
|
2022-01-12 22:40:51 +08:00
|
|
|
max_proximity: u8,
|
2022-01-12 23:14:53 +08:00
|
|
|
max_prefix_length: usize,
|
2021-03-25 18:10:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'t, 'u, 'i> WordPrefixPairProximityDocids<'t, 'u, 'i> {
|
|
|
|
pub fn new(
|
|
|
|
wtxn: &'t mut heed::RwTxn<'i, 'u>,
|
|
|
|
index: &'i Index,
|
2021-06-17 00:33:33 +08:00
|
|
|
) -> WordPrefixPairProximityDocids<'t, 'u, 'i> {
|
2021-03-25 18:10:12 +08:00
|
|
|
WordPrefixPairProximityDocids {
|
|
|
|
wtxn,
|
|
|
|
index,
|
|
|
|
chunk_compression_type: CompressionType::None,
|
|
|
|
chunk_compression_level: None,
|
|
|
|
max_nb_chunks: None,
|
|
|
|
max_memory: None,
|
2022-01-12 22:40:51 +08:00
|
|
|
max_proximity: 4,
|
2022-01-12 23:14:53 +08:00
|
|
|
max_prefix_length: 2,
|
2021-03-25 18:10:12 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-12 22:40:51 +08:00
|
|
|
/// Set the maximum proximity required to make a prefix be part of the words prefixes
|
2022-01-26 18:28:11 +08:00
|
|
|
/// database. If two words are too far from the threshold the associated documents will
|
2022-01-12 22:40:51 +08:00
|
|
|
/// not be part of the prefix database.
|
|
|
|
///
|
2022-01-26 18:28:11 +08:00
|
|
|
/// Default value is 4. This value must be lower or equal than 7 and will be clamped
|
2022-01-12 22:40:51 +08:00
|
|
|
/// to this bound otherwise.
|
|
|
|
pub fn max_proximity(&mut self, value: u8) -> &mut Self {
|
|
|
|
self.max_proximity = value.max(7);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2022-01-26 18:28:11 +08:00
|
|
|
/// Set the maximum length the prefix of a word pair is allowed to have to be part of the words
|
|
|
|
/// prefixes database. If the prefix length is higher than the threshold, the associated documents
|
2022-01-12 23:14:53 +08:00
|
|
|
/// will not be part of the prefix database.
|
|
|
|
///
|
2022-01-26 18:28:11 +08:00
|
|
|
/// Default value is 2.
|
2022-01-12 23:14:53 +08:00
|
|
|
pub fn max_prefix_length(&mut self, value: usize) -> &mut Self {
|
|
|
|
self.max_prefix_length = value;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2021-08-24 19:55:53 +08:00
|
|
|
#[logging_timer::time("WordPrefixPairProximityDocids::{}")]
|
2022-01-18 21:59:51 +08:00
|
|
|
pub fn execute<A: AsRef<[u8]>>(
|
|
|
|
self,
|
|
|
|
new_word_pair_proximity_docids: Vec<grenad::Reader<CursorClonableMmap>>,
|
|
|
|
old_prefix_fst: &fst::Set<A>,
|
|
|
|
) -> Result<()> {
|
2021-03-25 18:10:12 +08:00
|
|
|
debug!("Computing and writing the word prefix pair proximity docids into LMDB on disk...");
|
|
|
|
|
2022-01-18 22:23:18 +08:00
|
|
|
// We retrieve and merge the created word pair proximities docids entries
|
|
|
|
// for the newly added documents.
|
|
|
|
let mut wppd_merger = MergerBuilder::new(merge_cbo_roaring_bitmaps);
|
|
|
|
wppd_merger.extend(new_word_pair_proximity_docids);
|
|
|
|
let mut wppd_iter = wppd_merger.build().into_merger_iter()?;
|
2021-03-25 18:10:12 +08:00
|
|
|
|
|
|
|
let mut word_prefix_pair_proximity_docids_sorter = create_sorter(
|
2021-08-16 19:36:30 +08:00
|
|
|
merge_cbo_roaring_bitmaps,
|
2021-03-25 18:10:12 +08:00
|
|
|
self.chunk_compression_type,
|
|
|
|
self.chunk_compression_level,
|
|
|
|
self.max_nb_chunks,
|
|
|
|
self.max_memory,
|
|
|
|
);
|
|
|
|
|
2021-08-19 00:04:24 +08:00
|
|
|
let prefix_fst = self.index.words_prefixes_fst(self.wtxn)?;
|
2022-01-12 22:22:06 +08:00
|
|
|
let prefix_fst_keys = prefix_fst.into_stream().into_strs()?;
|
|
|
|
let prefix_fst_keys: Vec<_> =
|
|
|
|
prefix_fst_keys.as_slice().linear_group_by_key(|x| x.chars().nth(0).unwrap()).collect();
|
2021-08-19 00:04:24 +08:00
|
|
|
|
2022-01-18 22:23:18 +08:00
|
|
|
// We compute the set of prefixes that are no more part of the prefix fst.
|
2022-01-19 21:30:03 +08:00
|
|
|
let suppr_pw = fst_stream_into_hashset(old_prefix_fst.op().add(&prefix_fst).difference());
|
2021-08-19 00:04:24 +08:00
|
|
|
|
|
|
|
let mut buffer = Vec::new();
|
2022-01-12 22:22:06 +08:00
|
|
|
let mut current_prefixes: Option<&&[String]> = None;
|
2021-08-19 00:04:24 +08:00
|
|
|
let mut prefixes_cache = HashMap::new();
|
2022-01-18 22:23:18 +08:00
|
|
|
while let Some((key, data)) = wppd_iter.next()? {
|
|
|
|
let (w1, w2, prox) = StrStrU8Codec::bytes_decode(key).ok_or(heed::Error::Decoding)?;
|
2022-01-12 22:40:51 +08:00
|
|
|
if prox > self.max_proximity {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2021-08-19 00:04:24 +08:00
|
|
|
current_prefixes = match current_prefixes.take() {
|
2022-01-12 22:22:06 +08:00
|
|
|
Some(prefixes) if w2.starts_with(&prefixes[0]) => Some(prefixes),
|
2021-08-19 00:04:24 +08:00
|
|
|
_otherwise => {
|
|
|
|
write_prefixes_in_sorter(
|
|
|
|
&mut prefixes_cache,
|
|
|
|
&mut word_prefix_pair_proximity_docids_sorter,
|
|
|
|
)?;
|
2022-01-12 22:22:06 +08:00
|
|
|
prefix_fst_keys.iter().find(|prefixes| w2.starts_with(&prefixes[0]))
|
2021-08-19 00:04:24 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
if let Some(prefixes) = current_prefixes {
|
|
|
|
buffer.clear();
|
|
|
|
buffer.extend_from_slice(w1.as_bytes());
|
|
|
|
buffer.push(0);
|
2022-01-12 23:14:53 +08:00
|
|
|
for prefix in prefixes.iter() {
|
|
|
|
if prefix.len() <= self.max_prefix_length && w2.starts_with(prefix) {
|
|
|
|
buffer.truncate(w1.len() + 1);
|
|
|
|
buffer.extend_from_slice(prefix.as_bytes());
|
|
|
|
buffer.push(prox);
|
|
|
|
|
|
|
|
match prefixes_cache.get_mut(&buffer) {
|
2022-01-18 22:23:18 +08:00
|
|
|
Some(value) => value.push(data.to_owned()),
|
2022-01-12 23:14:53 +08:00
|
|
|
None => {
|
2022-01-18 22:23:18 +08:00
|
|
|
prefixes_cache.insert(buffer.clone(), vec![data.to_owned()]);
|
2022-01-12 23:14:53 +08:00
|
|
|
}
|
2021-08-19 00:04:24 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-03-25 18:10:12 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-19 00:04:24 +08:00
|
|
|
write_prefixes_in_sorter(
|
|
|
|
&mut prefixes_cache,
|
|
|
|
&mut word_prefix_pair_proximity_docids_sorter,
|
|
|
|
)?;
|
|
|
|
|
2021-03-25 18:10:12 +08:00
|
|
|
drop(prefix_fst);
|
|
|
|
|
2022-01-18 22:23:18 +08:00
|
|
|
// All of the word prefix pairs in the database that have a w2
|
|
|
|
// that is contained in the `suppr_pw` set must be removed as well.
|
|
|
|
let mut iter =
|
|
|
|
self.index.word_prefix_pair_proximity_docids.iter_mut(self.wtxn)?.lazily_decode_data();
|
|
|
|
while let Some(((_, w2, _), _)) = iter.next().transpose()? {
|
|
|
|
if suppr_pw.contains(w2.as_bytes()) {
|
|
|
|
// Delete this entry as the w2 prefix is no more in the words prefix fst.
|
|
|
|
unsafe { iter.del_current()? };
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
drop(iter);
|
|
|
|
|
|
|
|
// We finally write and merge the new word prefix pair proximity docids
|
|
|
|
// in the LMDB database.
|
2021-03-25 18:10:12 +08:00
|
|
|
sorter_into_lmdb_database(
|
|
|
|
self.wtxn,
|
|
|
|
*self.index.word_prefix_pair_proximity_docids.as_polymorph(),
|
|
|
|
word_prefix_pair_proximity_docids_sorter,
|
2021-08-16 19:36:30 +08:00
|
|
|
merge_cbo_roaring_bitmaps,
|
2022-01-18 22:23:18 +08:00
|
|
|
WriteMethod::GetMergePut,
|
2021-03-25 18:10:12 +08:00
|
|
|
)?;
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
2021-08-19 00:04:24 +08:00
|
|
|
|
|
|
|
fn write_prefixes_in_sorter(
|
2022-01-18 22:23:18 +08:00
|
|
|
prefixes: &mut HashMap<Vec<u8>, Vec<Vec<u8>>>,
|
2021-08-19 00:04:24 +08:00
|
|
|
sorter: &mut grenad::Sorter<MergeFn>,
|
|
|
|
) -> Result<()> {
|
2022-01-12 22:22:06 +08:00
|
|
|
for (key, data_slices) in prefixes.drain() {
|
2022-01-12 22:23:46 +08:00
|
|
|
for data in data_slices {
|
|
|
|
sorter.insert(&key, data)?;
|
2021-08-19 00:04:24 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|