2021-08-16 13:36:30 +02:00
|
|
|
|
mod extract;
|
|
|
|
|
mod helpers;
|
|
|
|
|
mod transform;
|
|
|
|
|
mod typed_chunk;
|
2022-06-14 18:12:15 +02:00
|
|
|
|
mod validate;
|
2021-08-16 13:36:30 +02:00
|
|
|
|
|
2020-11-03 13:42:29 +01:00
|
|
|
|
use std::collections::HashSet;
|
2022-03-25 16:17:55 +01:00
|
|
|
|
use std::io::{Cursor, Read, Seek};
|
2021-08-16 13:36:30 +02:00
|
|
|
|
use std::iter::FromIterator;
|
2021-03-24 15:06:54 +01:00
|
|
|
|
use std::num::{NonZeroU32, NonZeroUsize};
|
2022-06-14 18:12:15 +02:00
|
|
|
|
use std::result::Result as StdResult;
|
2020-10-26 20:18:10 +01:00
|
|
|
|
|
2021-08-16 13:36:30 +02:00
|
|
|
|
use crossbeam_channel::{Receiver, Sender};
|
2022-03-25 16:17:55 +01:00
|
|
|
|
use heed::types::Str;
|
|
|
|
|
use heed::Database;
|
2021-12-08 14:12:07 +01:00
|
|
|
|
use log::debug;
|
2021-08-16 13:36:30 +02:00
|
|
|
|
use roaring::RoaringBitmap;
|
2021-06-16 18:33:33 +02:00
|
|
|
|
use serde::{Deserialize, Serialize};
|
2022-01-27 11:00:18 +01:00
|
|
|
|
use slice_group_by::GroupBy;
|
2021-08-16 13:36:30 +02:00
|
|
|
|
use typed_chunk::{write_typed_chunk_into_index, TypedChunk};
|
2020-11-03 13:20:11 +01:00
|
|
|
|
|
2021-08-16 13:36:30 +02:00
|
|
|
|
pub use self::helpers::{
|
2022-02-16 15:40:08 +01:00
|
|
|
|
as_cloneable_grenad, create_sorter, create_writer, fst_stream_into_hashset,
|
|
|
|
|
fst_stream_into_vec, merge_cbo_roaring_bitmaps, merge_roaring_bitmaps,
|
2022-05-03 09:57:03 +02:00
|
|
|
|
sorter_into_lmdb_database, valid_lmdb_key, write_into_lmdb_database, writer_into_reader,
|
|
|
|
|
ClonableMmap, MergeFn,
|
2020-10-26 20:18:10 +01:00
|
|
|
|
};
|
2022-03-25 16:17:55 +01:00
|
|
|
|
use self::helpers::{grenad_obkv_into_chunks, GrenadParameters};
|
2020-10-26 20:18:10 +01:00
|
|
|
|
pub use self::transform::{Transform, TransformOutput};
|
2022-06-14 18:12:15 +02:00
|
|
|
|
use self::validate::validate_documents_batch;
|
|
|
|
|
pub use self::validate::{
|
|
|
|
|
extract_float_from_value, validate_document_id, validate_document_id_from_json,
|
|
|
|
|
validate_geo_from_json,
|
|
|
|
|
};
|
|
|
|
|
use crate::documents::{obkv_to_object, DocumentsBatchReader};
|
|
|
|
|
use crate::error::UserError;
|
2022-01-18 14:59:51 +01:00
|
|
|
|
pub use crate::update::index_documents::helpers::CursorClonableMmap;
|
2021-06-16 18:33:33 +02:00
|
|
|
|
use crate::update::{
|
2021-12-08 14:12:07 +01:00
|
|
|
|
self, Facets, IndexerConfig, UpdateIndexingStep, WordPrefixDocids,
|
|
|
|
|
WordPrefixPairProximityDocids, WordPrefixPositionDocids, WordsPrefixesFst,
|
2021-06-16 18:33:33 +02:00
|
|
|
|
};
|
2022-06-14 18:12:15 +02:00
|
|
|
|
use crate::{Index, Result, RoaringBitmapCodec};
|
2020-10-26 20:18:10 +01:00
|
|
|
|
|
2021-08-17 10:56:06 +02:00
|
|
|
|
static MERGED_DATABASE_COUNT: usize = 7;
|
|
|
|
|
static PREFIX_DATABASE_COUNT: usize = 5;
|
|
|
|
|
static TOTAL_POSTING_DATABASE_COUNT: usize = MERGED_DATABASE_COUNT + PREFIX_DATABASE_COUNT;
|
|
|
|
|
|
2021-11-10 14:08:36 +01:00
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
|
2020-12-30 18:43:50 +01:00
|
|
|
|
pub struct DocumentAdditionResult {
|
2021-11-10 14:08:36 +01:00
|
|
|
|
/// The number of documents that were indexed during the update
|
|
|
|
|
pub indexed_documents: u64,
|
|
|
|
|
/// The total number of documents in the index after the update
|
|
|
|
|
pub number_of_documents: u64,
|
2020-12-30 18:43:50 +01:00
|
|
|
|
}
|
|
|
|
|
|
2020-12-22 18:17:35 +01:00
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
|
2020-10-31 16:10:15 +01:00
|
|
|
|
#[non_exhaustive]
|
2020-10-26 11:02:44 +01:00
|
|
|
|
pub enum IndexDocumentsMethod {
|
|
|
|
|
/// Replace the previous document with the new one,
|
|
|
|
|
/// removing all the already known attributes.
|
|
|
|
|
ReplaceDocuments,
|
|
|
|
|
|
|
|
|
|
/// Merge the previous version of the document with the new version,
|
|
|
|
|
/// replacing old attributes values with the new ones and add the new attributes.
|
|
|
|
|
UpdateDocuments,
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-08 14:12:07 +01:00
|
|
|
|
impl Default for IndexDocumentsMethod {
|
|
|
|
|
fn default() -> Self {
|
|
|
|
|
Self::ReplaceDocuments
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub struct IndexDocuments<'t, 'u, 'i, 'a, F> {
|
2020-10-30 11:42:00 +01:00
|
|
|
|
wtxn: &'t mut heed::RwTxn<'i, 'u>,
|
2020-10-26 11:02:44 +01:00
|
|
|
|
index: &'i Index,
|
2021-12-08 14:12:07 +01:00
|
|
|
|
config: IndexDocumentsConfig,
|
|
|
|
|
indexer_config: &'a IndexerConfig,
|
|
|
|
|
transform: Option<Transform<'a, 'i>>,
|
|
|
|
|
progress: F,
|
|
|
|
|
added_documents: u64,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[derive(Default, Debug, Clone)]
|
|
|
|
|
pub struct IndexDocumentsConfig {
|
|
|
|
|
pub facet_level_group_size: Option<NonZeroUsize>,
|
|
|
|
|
pub facet_min_level_size: Option<NonZeroUsize>,
|
|
|
|
|
pub words_prefix_threshold: Option<u32>,
|
|
|
|
|
pub max_prefix_length: Option<usize>,
|
|
|
|
|
pub words_positions_level_group_size: Option<NonZeroU32>,
|
|
|
|
|
pub words_positions_min_level_size: Option<NonZeroU32>,
|
|
|
|
|
pub update_method: IndexDocumentsMethod,
|
|
|
|
|
pub autogenerate_docids: bool,
|
2020-10-26 11:02:44 +01:00
|
|
|
|
}
|
|
|
|
|
|
2021-12-08 14:12:07 +01:00
|
|
|
|
impl<'t, 'u, 'i, 'a, F> IndexDocuments<'t, 'u, 'i, 'a, F>
|
|
|
|
|
where
|
|
|
|
|
F: Fn(UpdateIndexingStep) + Sync,
|
|
|
|
|
{
|
2020-12-22 16:21:07 +01:00
|
|
|
|
pub fn new(
|
|
|
|
|
wtxn: &'t mut heed::RwTxn<'i, 'u>,
|
|
|
|
|
index: &'i Index,
|
2021-12-08 14:12:07 +01:00
|
|
|
|
indexer_config: &'a IndexerConfig,
|
|
|
|
|
config: IndexDocumentsConfig,
|
|
|
|
|
progress: F,
|
2022-03-23 17:28:41 +01:00
|
|
|
|
) -> Result<IndexDocuments<'t, 'u, 'i, 'a, F>> {
|
2021-12-08 14:12:07 +01:00
|
|
|
|
let transform = Some(Transform::new(
|
2022-03-23 17:28:41 +01:00
|
|
|
|
wtxn,
|
2021-12-08 14:12:07 +01:00
|
|
|
|
&index,
|
|
|
|
|
indexer_config,
|
|
|
|
|
config.update_method,
|
|
|
|
|
config.autogenerate_docids,
|
2022-03-23 17:28:41 +01:00
|
|
|
|
)?);
|
2021-12-08 14:12:07 +01:00
|
|
|
|
|
2022-03-23 17:28:41 +01:00
|
|
|
|
Ok(IndexDocuments {
|
2021-12-08 14:12:07 +01:00
|
|
|
|
transform,
|
|
|
|
|
config,
|
|
|
|
|
indexer_config,
|
|
|
|
|
progress,
|
2020-10-26 20:18:10 +01:00
|
|
|
|
wtxn,
|
|
|
|
|
index,
|
2021-12-08 14:12:07 +01:00
|
|
|
|
added_documents: 0,
|
2022-03-23 17:28:41 +01:00
|
|
|
|
})
|
2020-10-26 20:18:10 +01:00
|
|
|
|
}
|
|
|
|
|
|
2021-12-08 14:12:07 +01:00
|
|
|
|
/// Adds a batch of documents to the current builder.
|
|
|
|
|
///
|
2022-06-14 18:12:15 +02:00
|
|
|
|
/// Since the documents are progressively added to the writer, a failure will cause only
|
|
|
|
|
/// return an error and not the `IndexDocuments` struct as it is invalid to use it afterward.
|
2021-12-08 14:12:07 +01:00
|
|
|
|
///
|
|
|
|
|
/// Returns the number of documents added to the builder.
|
2022-06-14 18:12:15 +02:00
|
|
|
|
pub fn add_documents<R: Read + Seek>(
|
|
|
|
|
mut self,
|
|
|
|
|
reader: DocumentsBatchReader<R>,
|
|
|
|
|
) -> Result<(Self, StdResult<u64, UserError>)> {
|
2021-05-06 21:16:40 +02:00
|
|
|
|
// Early return when there is no document to add
|
2021-08-31 11:44:15 +02:00
|
|
|
|
if reader.is_empty() {
|
2022-06-14 18:12:15 +02:00
|
|
|
|
return Ok((self, Ok(0)));
|
2021-05-06 18:14:16 +02:00
|
|
|
|
}
|
|
|
|
|
|
2022-06-14 18:12:15 +02:00
|
|
|
|
// We check for user errors in this validator and if there is one, we can return
|
|
|
|
|
// the `IndexDocument` struct as it is valid to send more documents into it.
|
|
|
|
|
// However, if there is an internal error we throw it away!
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let reader = match validate_documents_batch(
|
|
|
|
|
self.wtxn,
|
|
|
|
|
self.index,
|
|
|
|
|
self.config.autogenerate_docids,
|
|
|
|
|
reader,
|
|
|
|
|
)? {
|
2022-06-14 18:12:15 +02:00
|
|
|
|
Ok(reader) => reader,
|
|
|
|
|
Err(user_error) => return Ok((self, Err(user_error))),
|
|
|
|
|
};
|
|
|
|
|
|
2021-12-08 14:12:07 +01:00
|
|
|
|
let indexed_documents = self
|
|
|
|
|
.transform
|
|
|
|
|
.as_mut()
|
|
|
|
|
.expect("Invalid document addition state")
|
|
|
|
|
.read_documents(reader, self.wtxn, &self.progress)?
|
|
|
|
|
as u64;
|
2020-10-26 20:18:10 +01:00
|
|
|
|
|
2021-12-08 14:12:07 +01:00
|
|
|
|
self.added_documents += indexed_documents;
|
2020-12-30 18:43:50 +01:00
|
|
|
|
|
2022-06-14 18:12:15 +02:00
|
|
|
|
Ok((self, Ok(indexed_documents)))
|
2021-12-08 14:12:07 +01:00
|
|
|
|
}
|
2020-11-03 13:20:11 +01:00
|
|
|
|
|
2021-12-08 14:12:07 +01:00
|
|
|
|
#[logging_timer::time("IndexDocuments::{}")]
|
|
|
|
|
pub fn execute(mut self) -> Result<DocumentAdditionResult> {
|
|
|
|
|
if self.added_documents == 0 {
|
|
|
|
|
let number_of_documents = self.index.number_of_documents(self.wtxn)?;
|
|
|
|
|
return Ok(DocumentAdditionResult { indexed_documents: 0, number_of_documents });
|
|
|
|
|
}
|
|
|
|
|
let output = self
|
|
|
|
|
.transform
|
|
|
|
|
.take()
|
|
|
|
|
.expect("Invalid document addition state")
|
|
|
|
|
.output_from_sorter(self.wtxn, &self.progress)?;
|
2022-03-23 17:28:41 +01:00
|
|
|
|
|
|
|
|
|
let new_facets = output.compute_real_facets(self.wtxn, self.index)?;
|
|
|
|
|
self.index.put_faceted_fields(self.wtxn, &new_facets)?;
|
|
|
|
|
|
2022-05-16 15:22:52 +02:00
|
|
|
|
// in case new fields were introduced we're going to recreate the searchable fields.
|
|
|
|
|
if let Some(faceted_fields) = self.index.user_defined_searchable_fields(self.wtxn)? {
|
|
|
|
|
// we can't keep references on the faceted fields while we update the index thus we need to own it.
|
|
|
|
|
let faceted_fields: Vec<String> =
|
|
|
|
|
faceted_fields.into_iter().map(str::to_string).collect();
|
|
|
|
|
self.index.put_all_searchable_fields_from_fields_ids_map(
|
|
|
|
|
self.wtxn,
|
|
|
|
|
&faceted_fields.iter().map(String::as_ref).collect::<Vec<_>>(),
|
|
|
|
|
&output.fields_ids_map,
|
|
|
|
|
)?;
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-08 14:12:07 +01:00
|
|
|
|
let indexed_documents = output.documents_count as u64;
|
|
|
|
|
let number_of_documents = self.execute_raw(output)?;
|
2020-11-03 13:20:11 +01:00
|
|
|
|
|
2021-11-10 14:08:36 +01:00
|
|
|
|
Ok(DocumentAdditionResult { indexed_documents, number_of_documents })
|
|
|
|
|
}
|
2021-12-08 14:12:07 +01:00
|
|
|
|
|
2021-11-10 14:08:36 +01:00
|
|
|
|
/// Returns the total number of documents in the index after the update.
|
2021-08-24 13:55:53 +02:00
|
|
|
|
#[logging_timer::time("IndexDocuments::{}")]
|
2021-12-08 14:12:07 +01:00
|
|
|
|
pub fn execute_raw(self, output: TransformOutput) -> Result<u64>
|
2020-11-03 13:20:11 +01:00
|
|
|
|
where
|
2021-06-16 18:33:33 +02:00
|
|
|
|
F: Fn(UpdateIndexingStep) + Sync,
|
2020-11-03 13:20:11 +01:00
|
|
|
|
{
|
2020-10-26 20:18:10 +01:00
|
|
|
|
let TransformOutput {
|
2020-10-31 12:54:43 +01:00
|
|
|
|
primary_key,
|
2020-10-26 20:18:10 +01:00
|
|
|
|
fields_ids_map,
|
2021-06-17 15:16:20 +02:00
|
|
|
|
field_distribution,
|
2020-11-22 11:54:04 +01:00
|
|
|
|
external_documents_ids,
|
2020-10-26 20:18:10 +01:00
|
|
|
|
new_documents_ids,
|
|
|
|
|
replaced_documents_ids,
|
|
|
|
|
documents_count,
|
2022-03-23 17:28:41 +01:00
|
|
|
|
original_documents,
|
|
|
|
|
flattened_documents,
|
2020-10-31 16:10:15 +01:00
|
|
|
|
} = output;
|
2020-10-26 20:18:10 +01:00
|
|
|
|
|
2021-07-27 16:24:21 +02:00
|
|
|
|
// The fields_ids_map is put back to the store now so the rest of the transaction sees an
|
|
|
|
|
// up to date field map.
|
|
|
|
|
self.index.put_fields_ids_map(self.wtxn, &fields_ids_map)?;
|
|
|
|
|
|
2021-08-16 13:36:30 +02:00
|
|
|
|
let backup_pool;
|
2021-12-08 14:12:07 +01:00
|
|
|
|
let pool = match self.indexer_config.thread_pool {
|
|
|
|
|
Some(ref pool) => pool,
|
2021-08-16 13:36:30 +02:00
|
|
|
|
#[cfg(not(test))]
|
|
|
|
|
None => {
|
|
|
|
|
// We initialize a bakcup pool with the default
|
|
|
|
|
// settings if none have already been set.
|
|
|
|
|
backup_pool = rayon::ThreadPoolBuilder::new().build()?;
|
|
|
|
|
&backup_pool
|
|
|
|
|
}
|
|
|
|
|
#[cfg(test)]
|
|
|
|
|
None => {
|
|
|
|
|
// We initialize a bakcup pool with the default
|
|
|
|
|
// settings if none have already been set.
|
|
|
|
|
backup_pool = rayon::ThreadPoolBuilder::new().num_threads(1).build()?;
|
|
|
|
|
&backup_pool
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2022-03-23 17:28:41 +01:00
|
|
|
|
let original_documents = grenad::Reader::new(original_documents)?;
|
|
|
|
|
let flattened_documents = grenad::Reader::new(flattened_documents)?;
|
2021-08-16 13:36:30 +02:00
|
|
|
|
|
|
|
|
|
// create LMDB writer channel
|
2021-08-24 13:01:31 +02:00
|
|
|
|
let (lmdb_writer_sx, lmdb_writer_rx): (
|
|
|
|
|
Sender<Result<TypedChunk>>,
|
|
|
|
|
Receiver<Result<TypedChunk>>,
|
|
|
|
|
) = crossbeam_channel::unbounded();
|
2021-08-16 13:36:30 +02:00
|
|
|
|
|
2021-09-02 15:57:40 +02:00
|
|
|
|
// get the primary key field id
|
2021-09-08 18:12:10 +02:00
|
|
|
|
let primary_key_id = fields_ids_map.id(&primary_key).unwrap();
|
2021-09-02 15:57:40 +02:00
|
|
|
|
|
2021-08-16 13:36:30 +02:00
|
|
|
|
// get searchable fields for word databases
|
|
|
|
|
let searchable_fields =
|
|
|
|
|
self.index.searchable_fields_ids(self.wtxn)?.map(HashSet::from_iter);
|
|
|
|
|
// get filterable fields for facet databases
|
|
|
|
|
let faceted_fields = self.index.faceted_fields_ids(self.wtxn)?;
|
2022-03-23 17:28:41 +01:00
|
|
|
|
// get the fid of the `_geo.lat` and `_geo.lng` fields.
|
|
|
|
|
let geo_fields_ids = match self.index.fields_ids_map(self.wtxn)?.id("_geo") {
|
2021-09-09 12:20:08 +02:00
|
|
|
|
Some(gfid) => {
|
|
|
|
|
let is_sortable = self.index.sortable_fields_ids(self.wtxn)?.contains(&gfid);
|
|
|
|
|
let is_filterable = self.index.filterable_fields_ids(self.wtxn)?.contains(&gfid);
|
2022-03-23 17:28:41 +01:00
|
|
|
|
// if `_geo` is faceted then we get the `lat` and `lng`
|
2021-09-09 12:20:08 +02:00
|
|
|
|
if is_sortable || is_filterable {
|
2022-03-23 17:28:41 +01:00
|
|
|
|
let field_ids = self
|
|
|
|
|
.index
|
|
|
|
|
.fields_ids_map(self.wtxn)?
|
|
|
|
|
.insert("_geo.lat")
|
|
|
|
|
.zip(self.index.fields_ids_map(self.wtxn)?.insert("_geo.lng"))
|
|
|
|
|
.ok_or(UserError::AttributeLimitReached)?;
|
|
|
|
|
Some(field_ids)
|
2021-09-09 12:20:08 +02:00
|
|
|
|
} else {
|
|
|
|
|
None
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
None => None,
|
2021-08-30 15:47:33 +02:00
|
|
|
|
};
|
2021-08-16 13:36:30 +02:00
|
|
|
|
|
2021-08-17 12:25:07 +02:00
|
|
|
|
let stop_words = self.index.stop_words(self.wtxn)?;
|
2022-03-24 17:00:29 +01:00
|
|
|
|
let exact_attributes = self.index.exact_attributes_ids(self.wtxn)?;
|
2021-08-17 12:25:07 +02:00
|
|
|
|
|
2021-08-16 13:36:30 +02:00
|
|
|
|
// Run extraction pipeline in parallel.
|
|
|
|
|
pool.install(|| {
|
|
|
|
|
let params = GrenadParameters {
|
2021-12-08 14:12:07 +01:00
|
|
|
|
chunk_compression_type: self.indexer_config.chunk_compression_type,
|
|
|
|
|
chunk_compression_level: self.indexer_config.chunk_compression_level,
|
|
|
|
|
max_memory: self.indexer_config.max_memory,
|
|
|
|
|
max_nb_chunks: self.indexer_config.max_nb_chunks, // default value, may be chosen.
|
2021-08-16 13:36:30 +02:00
|
|
|
|
};
|
|
|
|
|
|
2022-03-23 17:28:41 +01:00
|
|
|
|
// split obkv file into several chunks
|
|
|
|
|
let original_chunk_iter = grenad_obkv_into_chunks(
|
|
|
|
|
original_documents,
|
|
|
|
|
params.clone(),
|
|
|
|
|
self.indexer_config.documents_chunk_size.unwrap_or(1024 * 1024 * 4), // 4MiB
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// split obkv file into several chunks
|
|
|
|
|
let flattened_chunk_iter = grenad_obkv_into_chunks(
|
|
|
|
|
flattened_documents,
|
2021-08-16 13:36:30 +02:00
|
|
|
|
params.clone(),
|
2021-11-18 17:04:09 +01:00
|
|
|
|
self.indexer_config.documents_chunk_size.unwrap_or(1024 * 1024 * 4), // 4MiB
|
2021-08-24 13:01:31 +02:00
|
|
|
|
);
|
|
|
|
|
|
2022-03-23 17:28:41 +01:00
|
|
|
|
let result = original_chunk_iter
|
|
|
|
|
.and_then(|original_chunk_iter| Ok((original_chunk_iter, flattened_chunk_iter?)))
|
|
|
|
|
.map(|(original_chunk, flattened_chunk)| {
|
|
|
|
|
// extract all databases from the chunked obkv douments
|
|
|
|
|
extract::data_from_obkv_documents(
|
|
|
|
|
original_chunk,
|
|
|
|
|
flattened_chunk,
|
|
|
|
|
params,
|
|
|
|
|
lmdb_writer_sx.clone(),
|
|
|
|
|
searchable_fields,
|
|
|
|
|
faceted_fields,
|
|
|
|
|
primary_key_id,
|
|
|
|
|
geo_fields_ids,
|
|
|
|
|
stop_words,
|
|
|
|
|
self.indexer_config.max_positions_per_attributes,
|
|
|
|
|
exact_attributes,
|
|
|
|
|
)
|
|
|
|
|
});
|
2021-08-24 13:01:31 +02:00
|
|
|
|
|
|
|
|
|
if let Err(e) = result {
|
2021-08-26 11:01:30 +02:00
|
|
|
|
let _ = lmdb_writer_sx.send(Err(e));
|
2021-08-24 13:01:31 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// needs to be droped to avoid channel waiting lock.
|
|
|
|
|
drop(lmdb_writer_sx)
|
2021-08-16 13:36:30 +02:00
|
|
|
|
});
|
|
|
|
|
|
2020-10-26 20:18:10 +01:00
|
|
|
|
// We delete the documents that this document addition replaces. This way we are
|
|
|
|
|
// able to simply insert all the documents even if they already exist in the database.
|
|
|
|
|
if !replaced_documents_ids.is_empty() {
|
2021-12-08 14:12:07 +01:00
|
|
|
|
let mut deletion_builder = update::DeleteDocuments::new(self.wtxn, self.index)?;
|
2020-11-19 11:18:52 +01:00
|
|
|
|
debug!("documents to delete {:?}", replaced_documents_ids);
|
2020-10-26 20:18:10 +01:00
|
|
|
|
deletion_builder.delete_documents(&replaced_documents_ids);
|
2020-11-19 11:18:52 +01:00
|
|
|
|
let deleted_documents_count = deletion_builder.execute()?;
|
2021-11-10 14:08:36 +01:00
|
|
|
|
debug!("{} documents actually deleted", deleted_documents_count.deleted_documents);
|
2020-10-26 20:18:10 +01:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-16 13:36:30 +02:00
|
|
|
|
let index_documents_ids = self.index.documents_ids(self.wtxn)?;
|
|
|
|
|
let index_is_empty = index_documents_ids.len() == 0;
|
|
|
|
|
let mut final_documents_ids = RoaringBitmap::new();
|
2022-02-28 10:14:54 +01:00
|
|
|
|
let mut word_pair_proximity_docids = None;
|
|
|
|
|
let mut word_position_docids = None;
|
|
|
|
|
let mut word_docids = None;
|
2022-03-24 19:25:11 +01:00
|
|
|
|
let mut exact_word_docids = None;
|
2021-08-16 13:36:30 +02:00
|
|
|
|
|
2021-08-17 10:56:06 +02:00
|
|
|
|
let mut databases_seen = 0;
|
2021-12-08 14:12:07 +01:00
|
|
|
|
(self.progress)(UpdateIndexingStep::MergeDataIntoFinalDatabase {
|
2021-08-17 10:56:06 +02:00
|
|
|
|
databases_seen,
|
|
|
|
|
total_databases: TOTAL_POSTING_DATABASE_COUNT,
|
|
|
|
|
});
|
|
|
|
|
|
2022-01-18 14:59:51 +01:00
|
|
|
|
for result in lmdb_writer_rx {
|
|
|
|
|
let typed_chunk = match result? {
|
2022-03-24 15:22:57 +01:00
|
|
|
|
TypedChunk::WordDocids { word_docids_reader, exact_word_docids_reader } => {
|
|
|
|
|
let cloneable_chunk = unsafe { as_cloneable_grenad(&word_docids_reader)? };
|
2022-02-28 10:14:54 +01:00
|
|
|
|
word_docids = Some(cloneable_chunk);
|
2022-03-24 15:22:57 +01:00
|
|
|
|
let cloneable_chunk =
|
|
|
|
|
unsafe { as_cloneable_grenad(&exact_word_docids_reader)? };
|
2022-03-24 19:25:11 +01:00
|
|
|
|
exact_word_docids = Some(cloneable_chunk);
|
2022-03-24 15:22:57 +01:00
|
|
|
|
TypedChunk::WordDocids { word_docids_reader, exact_word_docids_reader }
|
2022-01-19 15:02:04 +01:00
|
|
|
|
}
|
2022-01-18 14:59:51 +01:00
|
|
|
|
TypedChunk::WordPairProximityDocids(chunk) => {
|
2022-02-16 15:40:08 +01:00
|
|
|
|
let cloneable_chunk = unsafe { as_cloneable_grenad(&chunk)? };
|
2022-02-28 10:14:54 +01:00
|
|
|
|
word_pair_proximity_docids = Some(cloneable_chunk);
|
2022-01-18 14:59:51 +01:00
|
|
|
|
TypedChunk::WordPairProximityDocids(chunk)
|
|
|
|
|
}
|
2022-01-25 14:06:45 +01:00
|
|
|
|
TypedChunk::WordPositionDocids(chunk) => {
|
2022-02-16 15:40:08 +01:00
|
|
|
|
let cloneable_chunk = unsafe { as_cloneable_grenad(&chunk)? };
|
2022-02-28 10:14:54 +01:00
|
|
|
|
word_position_docids = Some(cloneable_chunk);
|
2022-01-25 14:06:45 +01:00
|
|
|
|
TypedChunk::WordPositionDocids(chunk)
|
|
|
|
|
}
|
2022-01-18 14:59:51 +01:00
|
|
|
|
otherwise => otherwise,
|
|
|
|
|
};
|
|
|
|
|
|
2021-08-17 10:56:06 +02:00
|
|
|
|
let (docids, is_merged_database) =
|
2022-01-18 14:59:51 +01:00
|
|
|
|
write_typed_chunk_into_index(typed_chunk, &self.index, self.wtxn, index_is_empty)?;
|
2021-08-17 10:56:06 +02:00
|
|
|
|
if !docids.is_empty() {
|
|
|
|
|
final_documents_ids |= docids;
|
|
|
|
|
let documents_seen_count = final_documents_ids.len();
|
2021-12-08 14:12:07 +01:00
|
|
|
|
(self.progress)(UpdateIndexingStep::IndexDocuments {
|
2021-08-17 10:56:06 +02:00
|
|
|
|
documents_seen: documents_seen_count as usize,
|
|
|
|
|
total_documents: documents_count,
|
|
|
|
|
});
|
|
|
|
|
debug!(
|
|
|
|
|
"We have seen {} documents on {} total document so far",
|
|
|
|
|
documents_seen_count, documents_count
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
if is_merged_database {
|
|
|
|
|
databases_seen += 1;
|
2021-12-08 14:12:07 +01:00
|
|
|
|
(self.progress)(UpdateIndexingStep::MergeDataIntoFinalDatabase {
|
2021-11-10 14:08:36 +01:00
|
|
|
|
databases_seen,
|
2021-08-17 10:56:06 +02:00
|
|
|
|
total_databases: TOTAL_POSTING_DATABASE_COUNT,
|
|
|
|
|
});
|
|
|
|
|
}
|
2020-10-26 20:18:10 +01:00
|
|
|
|
}
|
|
|
|
|
|
2021-06-17 15:16:20 +02:00
|
|
|
|
// We write the field distribution into the main database
|
|
|
|
|
self.index.put_field_distribution(self.wtxn, &field_distribution)?;
|
2021-03-31 17:14:23 +02:00
|
|
|
|
|
2020-10-31 12:54:43 +01:00
|
|
|
|
// We write the primary key field id into the main database
|
2021-01-20 17:27:43 +01:00
|
|
|
|
self.index.put_primary_key(self.wtxn, &primary_key)?;
|
2020-10-31 12:54:43 +01:00
|
|
|
|
|
2020-11-22 11:54:04 +01:00
|
|
|
|
// We write the external documents ids into the main database.
|
|
|
|
|
self.index.put_external_documents_ids(self.wtxn, &external_documents_ids)?;
|
2020-10-26 20:18:10 +01:00
|
|
|
|
|
2021-08-17 10:56:06 +02:00
|
|
|
|
let all_documents_ids = index_documents_ids | new_documents_ids | replaced_documents_ids;
|
2021-08-16 13:36:30 +02:00
|
|
|
|
self.index.put_documents_ids(self.wtxn, &all_documents_ids)?;
|
2020-11-11 12:39:09 +01:00
|
|
|
|
|
2022-01-25 14:06:45 +01:00
|
|
|
|
self.execute_prefix_databases(
|
2022-02-28 16:00:33 +01:00
|
|
|
|
word_docids,
|
2022-03-24 19:25:11 +01:00
|
|
|
|
exact_word_docids,
|
2022-02-28 16:00:33 +01:00
|
|
|
|
word_pair_proximity_docids,
|
|
|
|
|
word_position_docids,
|
2022-01-25 14:06:45 +01:00
|
|
|
|
)?;
|
2021-11-10 14:08:36 +01:00
|
|
|
|
|
|
|
|
|
Ok(all_documents_ids.len())
|
2021-08-16 13:36:30 +02:00
|
|
|
|
}
|
2020-10-26 20:18:10 +01:00
|
|
|
|
|
2021-08-24 13:55:53 +02:00
|
|
|
|
#[logging_timer::time("IndexDocuments::{}")]
|
2022-01-18 14:59:51 +01:00
|
|
|
|
pub fn execute_prefix_databases(
|
|
|
|
|
self,
|
2022-02-28 16:00:33 +01:00
|
|
|
|
word_docids: Option<grenad::Reader<CursorClonableMmap>>,
|
2022-03-24 19:25:11 +01:00
|
|
|
|
exact_word_docids: Option<grenad::Reader<CursorClonableMmap>>,
|
2022-02-28 16:00:33 +01:00
|
|
|
|
word_pair_proximity_docids: Option<grenad::Reader<CursorClonableMmap>>,
|
|
|
|
|
word_position_docids: Option<grenad::Reader<CursorClonableMmap>>,
|
2022-01-18 14:59:51 +01:00
|
|
|
|
) -> Result<()>
|
|
|
|
|
where
|
|
|
|
|
F: Fn(UpdateIndexingStep) + Sync,
|
|
|
|
|
{
|
2021-08-17 10:56:06 +02:00
|
|
|
|
// Merged databases are already been indexed, we start from this count;
|
|
|
|
|
let mut databases_seen = MERGED_DATABASE_COUNT;
|
|
|
|
|
|
2021-02-10 11:53:13 +01:00
|
|
|
|
// Run the facets update operation.
|
2021-11-03 13:12:01 +01:00
|
|
|
|
let mut builder = Facets::new(self.wtxn, self.index);
|
2021-12-08 14:12:07 +01:00
|
|
|
|
builder.chunk_compression_type = self.indexer_config.chunk_compression_type;
|
|
|
|
|
builder.chunk_compression_level = self.indexer_config.chunk_compression_level;
|
|
|
|
|
if let Some(value) = self.config.facet_level_group_size {
|
2020-11-28 12:43:43 +01:00
|
|
|
|
builder.level_group_size(value);
|
2020-11-17 21:19:25 +01:00
|
|
|
|
}
|
2021-12-08 14:12:07 +01:00
|
|
|
|
if let Some(value) = self.config.facet_min_level_size {
|
2020-11-28 12:43:43 +01:00
|
|
|
|
builder.min_level_size(value);
|
2020-11-18 16:29:07 +01:00
|
|
|
|
}
|
2020-11-17 21:19:25 +01:00
|
|
|
|
builder.execute()?;
|
2021-03-11 17:23:46 +01:00
|
|
|
|
|
2021-08-17 10:56:06 +02:00
|
|
|
|
databases_seen += 1;
|
2021-12-08 14:12:07 +01:00
|
|
|
|
(self.progress)(UpdateIndexingStep::MergeDataIntoFinalDatabase {
|
|
|
|
|
databases_seen,
|
2021-08-17 10:56:06 +02:00
|
|
|
|
total_databases: TOTAL_POSTING_DATABASE_COUNT,
|
|
|
|
|
});
|
|
|
|
|
|
2022-01-18 14:02:24 +01:00
|
|
|
|
let previous_words_prefixes_fst =
|
|
|
|
|
self.index.words_prefixes_fst(self.wtxn)?.map_data(|cow| cow.into_owned())?;
|
|
|
|
|
|
2021-02-10 11:53:13 +01:00
|
|
|
|
// Run the words prefixes update operation.
|
2021-11-03 13:12:01 +01:00
|
|
|
|
let mut builder = WordsPrefixesFst::new(self.wtxn, self.index);
|
2021-12-08 14:12:07 +01:00
|
|
|
|
if let Some(value) = self.config.words_prefix_threshold {
|
2021-02-10 11:53:13 +01:00
|
|
|
|
builder.threshold(value);
|
|
|
|
|
}
|
2021-12-08 14:12:07 +01:00
|
|
|
|
if let Some(value) = self.config.max_prefix_length {
|
2021-02-10 11:53:13 +01:00
|
|
|
|
builder.max_prefix_length(value);
|
|
|
|
|
}
|
|
|
|
|
builder.execute()?;
|
|
|
|
|
|
2022-01-27 11:00:18 +01:00
|
|
|
|
let current_prefix_fst = self.index.words_prefixes_fst(self.wtxn)?;
|
|
|
|
|
|
|
|
|
|
// We retrieve the common words between the previous and new prefix word fst.
|
|
|
|
|
let common_prefix_fst_words = fst_stream_into_vec(
|
|
|
|
|
previous_words_prefixes_fst.op().add(¤t_prefix_fst).intersection(),
|
|
|
|
|
);
|
|
|
|
|
let common_prefix_fst_words: Vec<_> = common_prefix_fst_words
|
|
|
|
|
.as_slice()
|
|
|
|
|
.linear_group_by_key(|x| x.chars().nth(0).unwrap())
|
|
|
|
|
.collect();
|
|
|
|
|
|
|
|
|
|
// We retrieve the newly added words between the previous and new prefix word fst.
|
|
|
|
|
let new_prefix_fst_words = fst_stream_into_vec(
|
|
|
|
|
current_prefix_fst.op().add(&previous_words_prefixes_fst).difference(),
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// We compute the set of prefixes that are no more part of the prefix fst.
|
|
|
|
|
let del_prefix_fst_words = fst_stream_into_hashset(
|
|
|
|
|
previous_words_prefixes_fst.op().add(¤t_prefix_fst).difference(),
|
|
|
|
|
);
|
|
|
|
|
|
2021-08-17 10:56:06 +02:00
|
|
|
|
databases_seen += 1;
|
2021-12-08 14:12:07 +01:00
|
|
|
|
(self.progress)(UpdateIndexingStep::MergeDataIntoFinalDatabase {
|
|
|
|
|
databases_seen,
|
2021-08-17 10:56:06 +02:00
|
|
|
|
total_databases: TOTAL_POSTING_DATABASE_COUNT,
|
|
|
|
|
});
|
|
|
|
|
|
2022-02-28 16:00:33 +01:00
|
|
|
|
if let Some(word_docids) = word_docids {
|
2022-03-25 16:17:55 +01:00
|
|
|
|
execute_word_prefix_docids(
|
2022-03-25 10:20:39 +01:00
|
|
|
|
self.wtxn,
|
2022-03-25 16:17:55 +01:00
|
|
|
|
word_docids,
|
2022-03-25 10:20:39 +01:00
|
|
|
|
self.index.word_docids.clone(),
|
|
|
|
|
self.index.word_prefix_docids.clone(),
|
2022-03-25 16:17:55 +01:00
|
|
|
|
&self.indexer_config,
|
|
|
|
|
&new_prefix_fst_words,
|
|
|
|
|
&common_prefix_fst_words,
|
|
|
|
|
&del_prefix_fst_words,
|
|
|
|
|
)?;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if let Some(exact_word_docids) = exact_word_docids {
|
|
|
|
|
execute_word_prefix_docids(
|
|
|
|
|
self.wtxn,
|
|
|
|
|
exact_word_docids,
|
|
|
|
|
self.index.exact_word_docids.clone(),
|
|
|
|
|
self.index.exact_word_prefix_docids.clone(),
|
|
|
|
|
&self.indexer_config,
|
2022-02-28 16:00:33 +01:00
|
|
|
|
&new_prefix_fst_words,
|
|
|
|
|
&common_prefix_fst_words,
|
|
|
|
|
&del_prefix_fst_words,
|
|
|
|
|
)?;
|
|
|
|
|
}
|
2021-03-25 11:10:12 +01:00
|
|
|
|
|
2021-08-17 10:56:06 +02:00
|
|
|
|
databases_seen += 1;
|
2021-12-08 14:12:07 +01:00
|
|
|
|
(self.progress)(UpdateIndexingStep::MergeDataIntoFinalDatabase {
|
|
|
|
|
databases_seen,
|
2021-08-17 10:56:06 +02:00
|
|
|
|
total_databases: TOTAL_POSTING_DATABASE_COUNT,
|
|
|
|
|
});
|
|
|
|
|
|
2022-02-28 16:00:33 +01:00
|
|
|
|
if let Some(word_pair_proximity_docids) = word_pair_proximity_docids {
|
|
|
|
|
// Run the word prefix pair proximity docids update operation.
|
|
|
|
|
let mut builder = WordPrefixPairProximityDocids::new(self.wtxn, self.index);
|
|
|
|
|
builder.chunk_compression_type = self.indexer_config.chunk_compression_type;
|
|
|
|
|
builder.chunk_compression_level = self.indexer_config.chunk_compression_level;
|
|
|
|
|
builder.max_nb_chunks = self.indexer_config.max_nb_chunks;
|
|
|
|
|
builder.max_memory = self.indexer_config.max_memory;
|
|
|
|
|
builder.execute(
|
|
|
|
|
word_pair_proximity_docids,
|
|
|
|
|
&new_prefix_fst_words,
|
|
|
|
|
&common_prefix_fst_words,
|
|
|
|
|
&del_prefix_fst_words,
|
|
|
|
|
)?;
|
|
|
|
|
}
|
2021-03-25 11:10:12 +01:00
|
|
|
|
|
2021-08-17 10:56:06 +02:00
|
|
|
|
databases_seen += 1;
|
2021-12-08 14:12:07 +01:00
|
|
|
|
(self.progress)(UpdateIndexingStep::MergeDataIntoFinalDatabase {
|
|
|
|
|
databases_seen,
|
2021-08-17 10:56:06 +02:00
|
|
|
|
total_databases: TOTAL_POSTING_DATABASE_COUNT,
|
|
|
|
|
});
|
|
|
|
|
|
2022-02-28 16:00:33 +01:00
|
|
|
|
if let Some(word_position_docids) = word_position_docids {
|
|
|
|
|
// Run the words prefix position docids update operation.
|
|
|
|
|
let mut builder = WordPrefixPositionDocids::new(self.wtxn, self.index);
|
|
|
|
|
builder.chunk_compression_type = self.indexer_config.chunk_compression_type;
|
|
|
|
|
builder.chunk_compression_level = self.indexer_config.chunk_compression_level;
|
|
|
|
|
builder.max_nb_chunks = self.indexer_config.max_nb_chunks;
|
|
|
|
|
builder.max_memory = self.indexer_config.max_memory;
|
|
|
|
|
if let Some(value) = self.config.words_positions_level_group_size {
|
|
|
|
|
builder.level_group_size(value);
|
|
|
|
|
}
|
|
|
|
|
if let Some(value) = self.config.words_positions_min_level_size {
|
|
|
|
|
builder.min_level_size(value);
|
|
|
|
|
}
|
|
|
|
|
builder.execute(
|
|
|
|
|
word_position_docids,
|
|
|
|
|
&new_prefix_fst_words,
|
|
|
|
|
&common_prefix_fst_words,
|
|
|
|
|
&del_prefix_fst_words,
|
|
|
|
|
)?;
|
2021-03-17 13:55:24 +01:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-17 10:56:06 +02:00
|
|
|
|
databases_seen += 1;
|
2021-12-08 14:12:07 +01:00
|
|
|
|
(self.progress)(UpdateIndexingStep::MergeDataIntoFinalDatabase {
|
|
|
|
|
databases_seen,
|
2021-08-17 10:56:06 +02:00
|
|
|
|
total_databases: TOTAL_POSTING_DATABASE_COUNT,
|
|
|
|
|
});
|
|
|
|
|
|
2020-10-26 20:18:10 +01:00
|
|
|
|
Ok(())
|
2020-10-26 11:02:44 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
2020-10-30 12:14:25 +01:00
|
|
|
|
|
2022-03-25 16:17:55 +01:00
|
|
|
|
/// Run the word prefix docids update operation.
|
|
|
|
|
fn execute_word_prefix_docids(
|
|
|
|
|
txn: &mut heed::RwTxn,
|
|
|
|
|
reader: grenad::Reader<Cursor<ClonableMmap>>,
|
|
|
|
|
word_docids_db: Database<Str, RoaringBitmapCodec>,
|
|
|
|
|
word_prefix_docids_db: Database<Str, RoaringBitmapCodec>,
|
|
|
|
|
indexer_config: &IndexerConfig,
|
|
|
|
|
new_prefix_fst_words: &[String],
|
|
|
|
|
common_prefix_fst_words: &[&[String]],
|
|
|
|
|
del_prefix_fst_words: &HashSet<Vec<u8>>,
|
|
|
|
|
) -> Result<()> {
|
|
|
|
|
let cursor = reader.into_cursor()?;
|
|
|
|
|
let mut builder = WordPrefixDocids::new(txn, word_docids_db, word_prefix_docids_db);
|
|
|
|
|
builder.chunk_compression_type = indexer_config.chunk_compression_type;
|
|
|
|
|
builder.chunk_compression_level = indexer_config.chunk_compression_level;
|
|
|
|
|
builder.max_nb_chunks = indexer_config.max_nb_chunks;
|
|
|
|
|
builder.max_memory = indexer_config.max_memory;
|
|
|
|
|
builder.execute(
|
|
|
|
|
cursor,
|
|
|
|
|
&new_prefix_fst_words,
|
|
|
|
|
&common_prefix_fst_words,
|
|
|
|
|
&del_prefix_fst_words,
|
|
|
|
|
)?;
|
|
|
|
|
Ok(())
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-30 12:14:25 +01:00
|
|
|
|
#[cfg(test)]
|
|
|
|
|
mod tests {
|
2021-06-23 18:35:44 +02:00
|
|
|
|
use std::io::Cursor;
|
|
|
|
|
|
2021-07-06 11:40:45 +02:00
|
|
|
|
use big_s::S;
|
2020-10-30 12:14:25 +01:00
|
|
|
|
use heed::EnvOpenOptions;
|
2022-03-23 17:28:41 +01:00
|
|
|
|
use maplit::hashset;
|
2020-10-30 12:14:25 +01:00
|
|
|
|
|
2021-06-16 18:33:33 +02:00
|
|
|
|
use super::*;
|
2022-06-14 16:04:27 +02:00
|
|
|
|
use crate::documents::DocumentsBatchBuilder;
|
2021-06-30 11:23:29 +02:00
|
|
|
|
use crate::update::DeleteDocuments;
|
2021-06-16 18:33:33 +02:00
|
|
|
|
|
2020-10-30 12:14:25 +01:00
|
|
|
|
#[test]
|
2020-10-30 13:46:56 +01:00
|
|
|
|
fn simple_document_replacement() {
|
2020-10-30 12:14:25 +01:00
|
|
|
|
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();
|
|
|
|
|
|
|
|
|
|
// First we send 3 documents with ids from 1 to 3.
|
|
|
|
|
let mut wtxn = index.write_txn().unwrap();
|
2021-08-31 11:44:15 +02:00
|
|
|
|
let content = documents!([
|
|
|
|
|
{ "id": 1, "name": "kevin" },
|
|
|
|
|
{ "id": 2, "name": "kevina" },
|
|
|
|
|
{ "id": 3, "name": "benoit" }
|
|
|
|
|
]);
|
2021-12-08 14:12:07 +01:00
|
|
|
|
|
|
|
|
|
let config = IndexerConfig::default();
|
|
|
|
|
let indexing_config = IndexDocumentsConfig::default();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let builder =
|
2022-03-23 17:28:41 +01:00
|
|
|
|
IndexDocuments::new(&mut wtxn, &index, &config, indexing_config.clone(), |_| ())
|
|
|
|
|
.unwrap();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let (builder, user_error) = builder.add_documents(content).unwrap();
|
|
|
|
|
user_error.unwrap();
|
2021-12-08 14:12:07 +01:00
|
|
|
|
builder.execute().unwrap();
|
2020-10-30 12:14:25 +01:00
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
|
|
|
|
|
|
// Check that there is 3 documents now.
|
|
|
|
|
let rtxn = index.read_txn().unwrap();
|
|
|
|
|
let count = index.number_of_documents(&rtxn).unwrap();
|
|
|
|
|
assert_eq!(count, 3);
|
|
|
|
|
drop(rtxn);
|
|
|
|
|
|
|
|
|
|
// Second we send 1 document with id 1, to erase the previous ones.
|
|
|
|
|
let mut wtxn = index.write_txn().unwrap();
|
2021-08-31 11:44:15 +02:00
|
|
|
|
let content = documents!([ { "id": 1, "name": "updated kevin" } ]);
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let builder =
|
2022-03-23 17:28:41 +01:00
|
|
|
|
IndexDocuments::new(&mut wtxn, &index, &config, indexing_config.clone(), |_| ())
|
|
|
|
|
.unwrap();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let (builder, user_error) = builder.add_documents(content).unwrap();
|
|
|
|
|
user_error.unwrap();
|
2021-12-08 14:12:07 +01:00
|
|
|
|
builder.execute().unwrap();
|
2020-10-30 12:14:25 +01:00
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
|
|
2020-10-30 13:46:56 +01:00
|
|
|
|
// Check that there is **always** 3 documents.
|
2020-10-30 12:14:25 +01:00
|
|
|
|
let rtxn = index.read_txn().unwrap();
|
|
|
|
|
let count = index.number_of_documents(&rtxn).unwrap();
|
|
|
|
|
assert_eq!(count, 3);
|
|
|
|
|
drop(rtxn);
|
|
|
|
|
|
|
|
|
|
// Third we send 3 documents again to replace the existing ones.
|
|
|
|
|
let mut wtxn = index.write_txn().unwrap();
|
2021-08-31 11:44:15 +02:00
|
|
|
|
let content = documents!([
|
|
|
|
|
{ "id": 1, "name": "updated second kevin" },
|
|
|
|
|
{ "id": 2, "name": "updated kevina" },
|
|
|
|
|
{ "id": 3, "name": "updated benoit" }
|
|
|
|
|
]);
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let builder =
|
2022-03-23 17:28:41 +01:00
|
|
|
|
IndexDocuments::new(&mut wtxn, &index, &config, indexing_config, |_| ()).unwrap();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let (builder, user_error) = builder.add_documents(content).unwrap();
|
|
|
|
|
user_error.unwrap();
|
|
|
|
|
builder.execute().unwrap();
|
2020-10-30 12:14:25 +01:00
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
|
|
2020-10-30 13:46:56 +01:00
|
|
|
|
// Check that there is **always** 3 documents.
|
2020-10-30 12:14:25 +01:00
|
|
|
|
let rtxn = index.read_txn().unwrap();
|
|
|
|
|
let count = index.number_of_documents(&rtxn).unwrap();
|
|
|
|
|
assert_eq!(count, 3);
|
|
|
|
|
drop(rtxn);
|
|
|
|
|
}
|
2020-10-30 13:46:56 +01:00
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn simple_document_merge() {
|
|
|
|
|
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();
|
|
|
|
|
|
|
|
|
|
// First we send 3 documents with duplicate ids and
|
|
|
|
|
// change the index method to merge documents.
|
|
|
|
|
let mut wtxn = index.write_txn().unwrap();
|
2021-08-31 11:44:15 +02:00
|
|
|
|
let content = documents!([
|
|
|
|
|
{ "id": 1, "name": "kevin" },
|
|
|
|
|
{ "id": 1, "name": "kevina" },
|
|
|
|
|
{ "id": 1, "name": "benoit" }
|
|
|
|
|
]);
|
2021-12-08 14:12:07 +01:00
|
|
|
|
let config = IndexerConfig::default();
|
|
|
|
|
let indexing_config = IndexDocumentsConfig {
|
|
|
|
|
update_method: IndexDocumentsMethod::UpdateDocuments,
|
|
|
|
|
..Default::default()
|
|
|
|
|
};
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let builder =
|
2022-03-23 17:28:41 +01:00
|
|
|
|
IndexDocuments::new(&mut wtxn, &index, &config, indexing_config.clone(), |_| ())
|
|
|
|
|
.unwrap();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let (builder, user_error) = builder.add_documents(content).unwrap();
|
|
|
|
|
user_error.unwrap();
|
2021-12-08 14:12:07 +01:00
|
|
|
|
builder.execute().unwrap();
|
2020-10-30 13:46:56 +01:00
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
|
|
|
|
|
|
// Check that there is only 1 document now.
|
|
|
|
|
let rtxn = index.read_txn().unwrap();
|
|
|
|
|
let count = index.number_of_documents(&rtxn).unwrap();
|
|
|
|
|
assert_eq!(count, 1);
|
|
|
|
|
|
|
|
|
|
// Check that we get only one document from the database.
|
|
|
|
|
let docs = index.documents(&rtxn, Some(0)).unwrap();
|
|
|
|
|
assert_eq!(docs.len(), 1);
|
|
|
|
|
let (id, doc) = docs[0];
|
|
|
|
|
assert_eq!(id, 0);
|
|
|
|
|
|
|
|
|
|
// Check that this document is equal to the last one sent.
|
|
|
|
|
let mut doc_iter = doc.iter();
|
2021-09-28 18:35:54 +02:00
|
|
|
|
assert_eq!(doc_iter.next(), Some((0, &b"1"[..])));
|
2020-10-30 13:46:56 +01:00
|
|
|
|
assert_eq!(doc_iter.next(), Some((1, &br#""benoit""#[..])));
|
|
|
|
|
assert_eq!(doc_iter.next(), None);
|
|
|
|
|
drop(rtxn);
|
|
|
|
|
|
|
|
|
|
// Second we send 1 document with id 1, to force it to be merged with the previous one.
|
|
|
|
|
let mut wtxn = index.write_txn().unwrap();
|
2021-08-31 11:44:15 +02:00
|
|
|
|
let content = documents!([ { "id": 1, "age": 25 } ]);
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let builder =
|
2022-03-23 17:28:41 +01:00
|
|
|
|
IndexDocuments::new(&mut wtxn, &index, &config, indexing_config, |_| ()).unwrap();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let (builder, user_error) = builder.add_documents(content).unwrap();
|
|
|
|
|
user_error.unwrap();
|
2021-12-08 14:12:07 +01:00
|
|
|
|
builder.execute().unwrap();
|
2020-10-30 13:46:56 +01:00
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
|
|
|
|
|
|
// Check that there is **always** 1 document.
|
|
|
|
|
let rtxn = index.read_txn().unwrap();
|
|
|
|
|
let count = index.number_of_documents(&rtxn).unwrap();
|
|
|
|
|
assert_eq!(count, 1);
|
|
|
|
|
|
|
|
|
|
// Check that we get only one document from the database.
|
2022-06-29 06:44:16 +02:00
|
|
|
|
// Since the document has been deleted and re-inserted, its internal docid has been incremented to 1
|
2022-06-13 17:59:34 +02:00
|
|
|
|
let docs = index.documents(&rtxn, Some(1)).unwrap();
|
2020-10-30 13:46:56 +01:00
|
|
|
|
assert_eq!(docs.len(), 1);
|
|
|
|
|
let (id, doc) = docs[0];
|
2022-06-13 17:59:34 +02:00
|
|
|
|
assert_eq!(id, 1);
|
2020-10-30 13:46:56 +01:00
|
|
|
|
|
|
|
|
|
// Check that this document is equal to the last one sent.
|
|
|
|
|
let mut doc_iter = doc.iter();
|
2021-09-28 18:35:54 +02:00
|
|
|
|
assert_eq!(doc_iter.next(), Some((0, &b"1"[..])));
|
2020-10-30 13:46:56 +01:00
|
|
|
|
assert_eq!(doc_iter.next(), Some((1, &br#""benoit""#[..])));
|
2021-09-28 18:35:54 +02:00
|
|
|
|
assert_eq!(doc_iter.next(), Some((2, &b"25"[..])));
|
2020-10-30 13:46:56 +01:00
|
|
|
|
assert_eq!(doc_iter.next(), None);
|
|
|
|
|
drop(rtxn);
|
|
|
|
|
}
|
2020-10-31 12:54:43 +01:00
|
|
|
|
|
2020-10-31 21:46:55 +01:00
|
|
|
|
#[test]
|
2021-08-31 11:44:15 +02:00
|
|
|
|
fn not_auto_generated_documents_ids() {
|
2020-10-31 21:46:55 +01:00
|
|
|
|
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();
|
|
|
|
|
|
|
|
|
|
// First we send 3 documents with ids from 1 to 3.
|
|
|
|
|
let mut wtxn = index.write_txn().unwrap();
|
2021-08-31 11:44:15 +02:00
|
|
|
|
let content = documents!([
|
2020-10-31 21:46:55 +01:00
|
|
|
|
{ "name": "kevin" },
|
2021-08-31 11:44:15 +02:00
|
|
|
|
{ "name": "kevina" },
|
2020-10-31 21:46:55 +01:00
|
|
|
|
{ "name": "benoit" }
|
2021-08-31 11:44:15 +02:00
|
|
|
|
]);
|
2021-12-08 14:12:07 +01:00
|
|
|
|
let config = IndexerConfig::default();
|
|
|
|
|
let indexing_config = IndexDocumentsConfig::default();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let builder =
|
2022-03-23 17:28:41 +01:00
|
|
|
|
IndexDocuments::new(&mut wtxn, &index, &config, indexing_config, |_| ()).unwrap();
|
2021-12-08 14:12:07 +01:00
|
|
|
|
assert!(builder.add_documents(content).is_err());
|
2020-10-31 21:46:55 +01:00
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
|
|
|
|
|
|
// Check that there is no document.
|
|
|
|
|
let rtxn = index.read_txn().unwrap();
|
|
|
|
|
let count = index.number_of_documents(&rtxn).unwrap();
|
|
|
|
|
assert_eq!(count, 0);
|
|
|
|
|
drop(rtxn);
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-31 12:54:43 +01:00
|
|
|
|
#[test]
|
|
|
|
|
fn simple_auto_generated_documents_ids() {
|
|
|
|
|
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();
|
|
|
|
|
|
|
|
|
|
// First we send 3 documents with ids from 1 to 3.
|
|
|
|
|
let mut wtxn = index.write_txn().unwrap();
|
2021-08-31 11:44:15 +02:00
|
|
|
|
let content = documents!([
|
|
|
|
|
{ "name": "kevin" },
|
|
|
|
|
{ "name": "kevina" },
|
|
|
|
|
{ "name": "benoit" }
|
|
|
|
|
]);
|
2021-12-08 14:12:07 +01:00
|
|
|
|
let config = IndexerConfig::default();
|
|
|
|
|
let indexing_config =
|
|
|
|
|
IndexDocumentsConfig { autogenerate_docids: true, ..Default::default() };
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let builder =
|
2022-03-23 17:28:41 +01:00
|
|
|
|
IndexDocuments::new(&mut wtxn, &index, &config, indexing_config.clone(), |_| ())
|
|
|
|
|
.unwrap();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let (builder, user_error) = builder.add_documents(content).unwrap();
|
|
|
|
|
user_error.unwrap();
|
2021-12-08 14:12:07 +01:00
|
|
|
|
builder.execute().unwrap();
|
2020-10-31 12:54:43 +01:00
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
|
|
|
|
|
|
// Check that there is 3 documents now.
|
|
|
|
|
let rtxn = index.read_txn().unwrap();
|
|
|
|
|
let count = index.number_of_documents(&rtxn).unwrap();
|
|
|
|
|
assert_eq!(count, 3);
|
|
|
|
|
|
|
|
|
|
let docs = index.documents(&rtxn, vec![0, 1, 2]).unwrap();
|
|
|
|
|
let (_id, obkv) = docs.iter().find(|(_id, kv)| kv.get(0) == Some(br#""kevin""#)).unwrap();
|
|
|
|
|
let kevin_uuid: String = serde_json::from_slice(&obkv.get(1).unwrap()).unwrap();
|
|
|
|
|
drop(rtxn);
|
|
|
|
|
|
|
|
|
|
// Second we send 1 document with the generated uuid, to erase the previous ones.
|
|
|
|
|
let mut wtxn = index.write_txn().unwrap();
|
2021-08-31 11:44:15 +02:00
|
|
|
|
let content = documents!([ { "name": "updated kevin", "id": kevin_uuid } ]);
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let builder =
|
2022-03-23 17:28:41 +01:00
|
|
|
|
IndexDocuments::new(&mut wtxn, &index, &config, indexing_config, |_| ()).unwrap();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let (builder, user_error) = builder.add_documents(content).unwrap();
|
|
|
|
|
user_error.unwrap();
|
2021-12-08 14:12:07 +01:00
|
|
|
|
builder.execute().unwrap();
|
2020-10-31 12:54:43 +01:00
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
|
|
|
|
|
|
// Check that there is **always** 3 documents.
|
|
|
|
|
let rtxn = index.read_txn().unwrap();
|
|
|
|
|
let count = index.number_of_documents(&rtxn).unwrap();
|
|
|
|
|
assert_eq!(count, 3);
|
2020-11-01 12:14:44 +01:00
|
|
|
|
|
2022-06-13 17:59:34 +02:00
|
|
|
|
// the document 0 has been deleted and reinserted with the id 3
|
|
|
|
|
let docs = index.documents(&rtxn, vec![1, 2, 3]).unwrap();
|
|
|
|
|
let kevin_position =
|
|
|
|
|
docs.iter().position(|(_, d)| d.get(0).unwrap() == br#""updated kevin""#).unwrap();
|
|
|
|
|
assert_eq!(kevin_position, 2);
|
|
|
|
|
let (_, doc) = docs[kevin_position];
|
2020-11-01 12:14:44 +01:00
|
|
|
|
|
|
|
|
|
// Check that this document is equal to the last
|
|
|
|
|
// one sent and that an UUID has been generated.
|
2020-11-01 16:43:12 +01:00
|
|
|
|
assert_eq!(doc.get(0), Some(&br#""updated kevin""#[..]));
|
2020-11-01 12:14:44 +01:00
|
|
|
|
// This is an UUID, it must be 36 bytes long plus the 2 surrounding string quotes (").
|
2021-03-31 17:14:23 +02:00
|
|
|
|
assert_eq!(doc.get(1).unwrap().len(), 36 + 2);
|
2020-10-31 12:54:43 +01:00
|
|
|
|
drop(rtxn);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn reordered_auto_generated_documents_ids() {
|
|
|
|
|
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();
|
|
|
|
|
|
|
|
|
|
// First we send 3 documents with ids from 1 to 3.
|
|
|
|
|
let mut wtxn = index.write_txn().unwrap();
|
2021-08-31 11:44:15 +02:00
|
|
|
|
let content = documents!([
|
|
|
|
|
{ "id": 1, "name": "kevin" },
|
|
|
|
|
{ "id": 2, "name": "kevina" },
|
|
|
|
|
{ "id": 3, "name": "benoit" }
|
|
|
|
|
]);
|
2021-12-08 14:12:07 +01:00
|
|
|
|
let config = IndexerConfig::default();
|
|
|
|
|
let indexing_config = IndexDocumentsConfig::default();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let builder =
|
2022-03-23 17:28:41 +01:00
|
|
|
|
IndexDocuments::new(&mut wtxn, &index, &config, indexing_config, |_| ()).unwrap();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let (builder, user_error) = builder.add_documents(content).unwrap();
|
|
|
|
|
user_error.unwrap();
|
2021-12-08 14:12:07 +01:00
|
|
|
|
builder.execute().unwrap();
|
2020-10-31 12:54:43 +01:00
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
|
|
|
|
|
|
// Check that there is 3 documents now.
|
|
|
|
|
let rtxn = index.read_txn().unwrap();
|
|
|
|
|
let count = index.number_of_documents(&rtxn).unwrap();
|
|
|
|
|
assert_eq!(count, 3);
|
|
|
|
|
drop(rtxn);
|
|
|
|
|
|
|
|
|
|
// Second we send 1 document without specifying the id.
|
|
|
|
|
let mut wtxn = index.write_txn().unwrap();
|
2021-08-31 11:44:15 +02:00
|
|
|
|
let content = documents!([ { "name": "new kevin" } ]);
|
2021-12-08 14:12:07 +01:00
|
|
|
|
let indexing_config =
|
|
|
|
|
IndexDocumentsConfig { autogenerate_docids: true, ..Default::default() };
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let builder =
|
2022-03-23 17:28:41 +01:00
|
|
|
|
IndexDocuments::new(&mut wtxn, &index, &config, indexing_config, |_| ()).unwrap();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let (builder, user_error) = builder.add_documents(content).unwrap();
|
|
|
|
|
user_error.unwrap();
|
2021-12-08 14:12:07 +01:00
|
|
|
|
builder.execute().unwrap();
|
2020-10-31 12:54:43 +01:00
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
|
|
|
|
|
|
// Check that there is 4 documents now.
|
|
|
|
|
let rtxn = index.read_txn().unwrap();
|
|
|
|
|
let count = index.number_of_documents(&rtxn).unwrap();
|
|
|
|
|
assert_eq!(count, 4);
|
|
|
|
|
drop(rtxn);
|
|
|
|
|
}
|
2020-10-31 16:10:15 +01:00
|
|
|
|
|
|
|
|
|
#[test]
|
2021-08-31 11:44:15 +02:00
|
|
|
|
fn empty_update() {
|
2020-10-31 16:10:15 +01:00
|
|
|
|
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();
|
|
|
|
|
|
|
|
|
|
// First we send 0 documents and only headers.
|
|
|
|
|
let mut wtxn = index.write_txn().unwrap();
|
2021-08-31 11:44:15 +02:00
|
|
|
|
let content = documents!([]);
|
2021-12-08 14:12:07 +01:00
|
|
|
|
let config = IndexerConfig::default();
|
|
|
|
|
let indexing_config = IndexDocumentsConfig::default();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let builder =
|
2022-03-23 17:28:41 +01:00
|
|
|
|
IndexDocuments::new(&mut wtxn, &index, &config, indexing_config, |_| ()).unwrap();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let (builder, user_error) = builder.add_documents(content).unwrap();
|
|
|
|
|
user_error.unwrap();
|
2021-12-08 14:12:07 +01:00
|
|
|
|
builder.execute().unwrap();
|
2020-10-31 16:10:15 +01:00
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
|
|
|
|
|
|
// Check that there is no documents.
|
|
|
|
|
let rtxn = index.read_txn().unwrap();
|
|
|
|
|
let count = index.number_of_documents(&rtxn).unwrap();
|
|
|
|
|
assert_eq!(count, 0);
|
|
|
|
|
drop(rtxn);
|
|
|
|
|
}
|
2020-11-01 11:50:10 +01:00
|
|
|
|
|
2020-11-01 16:43:12 +01:00
|
|
|
|
#[test]
|
|
|
|
|
fn invalid_documents_ids() {
|
|
|
|
|
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();
|
|
|
|
|
|
|
|
|
|
// First we send 1 document with an invalid id.
|
|
|
|
|
let mut wtxn = index.write_txn().unwrap();
|
|
|
|
|
// There is a space in the document id.
|
2021-08-31 11:44:15 +02:00
|
|
|
|
let content = documents!([ { "id": "brume bleue", "name": "kevin" } ]);
|
2021-12-08 14:12:07 +01:00
|
|
|
|
let config = IndexerConfig::default();
|
|
|
|
|
let indexing_config = IndexDocumentsConfig::default();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let builder =
|
2022-03-23 17:28:41 +01:00
|
|
|
|
IndexDocuments::new(&mut wtxn, &index, &config, indexing_config.clone(), |_| ())
|
|
|
|
|
.unwrap();
|
2021-12-08 14:12:07 +01:00
|
|
|
|
assert!(builder.add_documents(content).is_err());
|
2020-11-01 16:43:12 +01:00
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
|
|
|
|
|
|
// First we send 1 document with a valid id.
|
|
|
|
|
let mut wtxn = index.write_txn().unwrap();
|
|
|
|
|
// There is a space in the document id.
|
2021-08-31 11:44:15 +02:00
|
|
|
|
let content = documents!([ { "id": 32, "name": "kevin" } ]);
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let builder =
|
2022-03-23 17:28:41 +01:00
|
|
|
|
IndexDocuments::new(&mut wtxn, &index, &config, indexing_config, |_| ()).unwrap();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let (builder, user_error) = builder.add_documents(content).unwrap();
|
|
|
|
|
user_error.unwrap();
|
2021-12-08 14:12:07 +01:00
|
|
|
|
builder.execute().unwrap();
|
2020-11-01 16:43:12 +01:00
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
|
|
|
|
|
|
// Check that there is 1 document now.
|
|
|
|
|
let rtxn = index.read_txn().unwrap();
|
|
|
|
|
let count = index.number_of_documents(&rtxn).unwrap();
|
|
|
|
|
assert_eq!(count, 1);
|
|
|
|
|
drop(rtxn);
|
|
|
|
|
}
|
2020-11-06 16:15:07 +01:00
|
|
|
|
|
|
|
|
|
#[test]
|
2021-08-31 11:44:15 +02:00
|
|
|
|
fn complex_documents() {
|
2020-11-06 16:15:07 +01:00
|
|
|
|
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();
|
|
|
|
|
|
|
|
|
|
// First we send 3 documents with an id for only one of them.
|
|
|
|
|
let mut wtxn = index.write_txn().unwrap();
|
2021-08-31 11:44:15 +02:00
|
|
|
|
let content = documents!([
|
2020-11-06 16:15:07 +01:00
|
|
|
|
{ "id": 0, "name": "kevin", "object": { "key1": "value1", "key2": "value2" } },
|
|
|
|
|
{ "id": 1, "name": "kevina", "array": ["I", "am", "fine"] },
|
|
|
|
|
{ "id": 2, "name": "benoit", "array_of_object": [{ "wow": "amazing" }] }
|
2021-08-31 11:44:15 +02:00
|
|
|
|
]);
|
2021-12-08 14:12:07 +01:00
|
|
|
|
let config = IndexerConfig::default();
|
|
|
|
|
let indexing_config = IndexDocumentsConfig::default();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let builder =
|
2022-03-23 17:28:41 +01:00
|
|
|
|
IndexDocuments::new(&mut wtxn, &index, &config, indexing_config, |_| ()).unwrap();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let (builder, user_error) = builder.add_documents(content).unwrap();
|
|
|
|
|
user_error.unwrap();
|
2021-12-08 14:12:07 +01:00
|
|
|
|
builder.execute().unwrap();
|
2020-11-06 16:15:07 +01:00
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
|
|
|
|
|
|
// Check that there is 1 documents now.
|
|
|
|
|
let rtxn = index.read_txn().unwrap();
|
|
|
|
|
|
|
|
|
|
// Search for a sub object value
|
|
|
|
|
let result = index.search(&rtxn).query(r#""value2""#).execute().unwrap();
|
|
|
|
|
assert_eq!(result.documents_ids, vec![0]);
|
|
|
|
|
|
|
|
|
|
// Search for a sub array value
|
|
|
|
|
let result = index.search(&rtxn).query(r#""fine""#).execute().unwrap();
|
|
|
|
|
assert_eq!(result.documents_ids, vec![1]);
|
|
|
|
|
|
|
|
|
|
// Search for a sub array sub object key
|
2022-03-23 17:28:41 +01:00
|
|
|
|
let result = index.search(&rtxn).query(r#""amazing""#).execute().unwrap();
|
2020-11-06 16:15:07 +01:00
|
|
|
|
assert_eq!(result.documents_ids, vec![2]);
|
|
|
|
|
|
|
|
|
|
drop(rtxn);
|
|
|
|
|
}
|
2021-06-23 18:35:44 +02:00
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn simple_documents_replace() {
|
|
|
|
|
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();
|
|
|
|
|
|
|
|
|
|
// First we send 3 documents with an id for only one of them.
|
|
|
|
|
let mut wtxn = index.write_txn().unwrap();
|
2021-08-31 11:44:15 +02:00
|
|
|
|
let documents = documents!([
|
2021-08-26 13:27:32 +02:00
|
|
|
|
{ "id": 2, "title": "Pride and Prejudice", "author": "Jane Austin", "genre": "romance", "price": 3.5, "_geo": { "lat": 12, "lng": 42 } },
|
2021-06-23 18:35:44 +02:00
|
|
|
|
{ "id": 456, "title": "Le Petit Prince", "author": "Antoine de Saint-Exupéry", "genre": "adventure" , "price": 10.0 },
|
|
|
|
|
{ "id": 1, "title": "Alice In Wonderland", "author": "Lewis Carroll", "genre": "fantasy", "price": 25.99 },
|
|
|
|
|
{ "id": 1344, "title": "The Hobbit", "author": "J. R. R. Tolkien", "genre": "fantasy" },
|
|
|
|
|
{ "id": 4, "title": "Harry Potter and the Half-Blood Prince", "author": "J. K. Rowling", "genre": "fantasy" },
|
2021-08-26 13:27:32 +02:00
|
|
|
|
{ "id": 42, "title": "The Hitchhiker's Guide to the Galaxy", "author": "Douglas Adams", "_geo": { "lat": 35, "lng": 23 } }
|
2021-08-31 11:44:15 +02:00
|
|
|
|
]);
|
2021-12-08 14:12:07 +01:00
|
|
|
|
let config = IndexerConfig::default();
|
|
|
|
|
let indexing_config = IndexDocumentsConfig {
|
|
|
|
|
update_method: IndexDocumentsMethod::ReplaceDocuments,
|
|
|
|
|
..Default::default()
|
|
|
|
|
};
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let builder =
|
2022-03-23 17:28:41 +01:00
|
|
|
|
IndexDocuments::new(&mut wtxn, &index, &config, indexing_config, |_| ()).unwrap();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let (builder, user_error) = builder.add_documents(documents).unwrap();
|
|
|
|
|
user_error.unwrap();
|
2021-12-08 14:12:07 +01:00
|
|
|
|
builder.execute().unwrap();
|
2021-06-23 18:35:44 +02:00
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
|
|
|
|
|
|
let mut wtxn = index.write_txn().unwrap();
|
2021-12-08 14:12:07 +01:00
|
|
|
|
let indexing_config = IndexDocumentsConfig {
|
|
|
|
|
update_method: IndexDocumentsMethod::UpdateDocuments,
|
|
|
|
|
..Default::default()
|
|
|
|
|
};
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let builder =
|
2022-03-23 17:28:41 +01:00
|
|
|
|
IndexDocuments::new(&mut wtxn, &index, &config, indexing_config, |_| ()).unwrap();
|
2021-08-31 11:44:15 +02:00
|
|
|
|
let documents = documents!([
|
2021-06-23 18:35:44 +02:00
|
|
|
|
{
|
|
|
|
|
"id": 2,
|
|
|
|
|
"author": "J. Austen",
|
|
|
|
|
"date": "1813"
|
|
|
|
|
}
|
2021-08-31 11:44:15 +02:00
|
|
|
|
]);
|
2021-06-23 18:35:44 +02:00
|
|
|
|
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let (builder, user_error) = builder.add_documents(documents).unwrap();
|
|
|
|
|
user_error.unwrap();
|
2021-12-08 14:12:07 +01:00
|
|
|
|
builder.execute().unwrap();
|
2021-06-23 18:35:44 +02:00
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
|
}
|
2021-06-30 11:23:29 +02:00
|
|
|
|
|
2022-05-16 15:55:18 +02:00
|
|
|
|
#[test]
|
|
|
|
|
fn mixed_geo_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();
|
|
|
|
|
|
|
|
|
|
// We send 6 documents and mix the ones that have _geo and those that don't have it.
|
|
|
|
|
let mut wtxn = index.write_txn().unwrap();
|
|
|
|
|
let documents = documents!([
|
|
|
|
|
{ "id": 2, "price": 3.5, "_geo": { "lat": 12, "lng": 42 } },
|
|
|
|
|
{ "id": 456 },
|
|
|
|
|
{ "id": 1 },
|
|
|
|
|
{ "id": 1344 },
|
|
|
|
|
{ "id": 4 },
|
|
|
|
|
{ "id": 42, "_geo": { "lat": 35, "lng": 23 } }
|
|
|
|
|
]);
|
|
|
|
|
let config = IndexerConfig::default();
|
|
|
|
|
let indexing_config = IndexDocumentsConfig {
|
|
|
|
|
update_method: IndexDocumentsMethod::ReplaceDocuments,
|
|
|
|
|
..Default::default()
|
|
|
|
|
};
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let builder =
|
2022-05-16 15:55:18 +02:00
|
|
|
|
IndexDocuments::new(&mut wtxn, &index, &config, indexing_config, |_| ()).unwrap();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let (builder, user_error) = builder.add_documents(documents).unwrap();
|
|
|
|
|
user_error.unwrap();
|
2022-05-16 15:55:18 +02:00
|
|
|
|
builder.execute().unwrap();
|
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
|
|
|
|
|
|
let mut wtxn = index.write_txn().unwrap();
|
|
|
|
|
let mut builder = update::Settings::new(&mut wtxn, &index, &config);
|
|
|
|
|
|
|
|
|
|
let faceted_fields = hashset!(S("_geo"));
|
|
|
|
|
builder.set_filterable_fields(faceted_fields);
|
|
|
|
|
builder.execute(|_| ()).unwrap();
|
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
|
}
|
|
|
|
|
|
2022-05-02 19:19:50 +02:00
|
|
|
|
#[test]
|
|
|
|
|
fn index_all_flavour_of_geo() {
|
|
|
|
|
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 config = IndexerConfig::default();
|
|
|
|
|
let mut wtxn = index.write_txn().unwrap();
|
|
|
|
|
let mut builder = update::Settings::new(&mut wtxn, &index, &config);
|
|
|
|
|
|
|
|
|
|
builder.set_filterable_fields(hashset!(S("_geo")));
|
|
|
|
|
builder.execute(|_| ()).unwrap();
|
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
|
|
|
|
|
|
let indexing_config = IndexDocumentsConfig {
|
|
|
|
|
update_method: IndexDocumentsMethod::ReplaceDocuments,
|
|
|
|
|
..Default::default()
|
|
|
|
|
};
|
|
|
|
|
let mut wtxn = index.write_txn().unwrap();
|
|
|
|
|
|
|
|
|
|
let documents = documents!([
|
|
|
|
|
{ "id": 0, "_geo": { "lat": 31, "lng": [42] } },
|
|
|
|
|
{ "id": 1, "_geo": { "lat": "31" }, "_geo.lng": 42 },
|
|
|
|
|
{ "id": 2, "_geo": { "lng": "42" }, "_geo.lat": "31" },
|
|
|
|
|
{ "id": 3, "_geo.lat": 31, "_geo.lng": "42" },
|
|
|
|
|
]);
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let builder =
|
2022-05-02 19:19:50 +02:00
|
|
|
|
IndexDocuments::new(&mut wtxn, &index, &config, indexing_config.clone(), |_| ())
|
|
|
|
|
.unwrap();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let (builder, user_error) = builder.add_documents(documents).unwrap();
|
|
|
|
|
user_error.unwrap();
|
2022-05-02 19:19:50 +02:00
|
|
|
|
builder.execute().unwrap();
|
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
|
|
|
|
|
|
let rtxn = index.read_txn().unwrap();
|
|
|
|
|
|
|
|
|
|
let mut search = crate::Search::new(&rtxn, &index);
|
|
|
|
|
search.filter(crate::Filter::from_str("_geoRadius(31, 42, 0.000001)").unwrap().unwrap());
|
|
|
|
|
let crate::SearchResult { documents_ids, .. } = search.execute().unwrap();
|
|
|
|
|
assert_eq!(documents_ids, vec![0, 1, 2, 3]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn geo_error() {
|
|
|
|
|
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 config = IndexerConfig::default();
|
|
|
|
|
let mut wtxn = index.write_txn().unwrap();
|
|
|
|
|
let mut builder = update::Settings::new(&mut wtxn, &index, &config);
|
|
|
|
|
|
|
|
|
|
builder.set_filterable_fields(hashset!(S("_geo")));
|
|
|
|
|
builder.execute(|_| ()).unwrap();
|
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
|
|
|
|
|
|
let indexing_config = IndexDocumentsConfig {
|
|
|
|
|
update_method: IndexDocumentsMethod::ReplaceDocuments,
|
|
|
|
|
..Default::default()
|
|
|
|
|
};
|
|
|
|
|
let mut wtxn = index.write_txn().unwrap();
|
|
|
|
|
|
|
|
|
|
let documents = documents!([
|
|
|
|
|
{ "id": 0, "_geo": { "lng": 42 } }
|
|
|
|
|
]);
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let builder =
|
2022-05-02 19:19:50 +02:00
|
|
|
|
IndexDocuments::new(&mut wtxn, &index, &config, indexing_config.clone(), |_| ())
|
|
|
|
|
.unwrap();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let (builder, user_error) = builder.add_documents(documents).unwrap();
|
|
|
|
|
user_error.unwrap();
|
2022-05-02 19:19:50 +02:00
|
|
|
|
let error = builder.execute().unwrap_err();
|
|
|
|
|
assert_eq!(
|
|
|
|
|
&error.to_string(),
|
|
|
|
|
r#"Could not find latitude in the document with the id: `0`. Was expecting a `_geo.lat` field."#
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
let documents = documents!([
|
|
|
|
|
{ "id": 0, "_geo": { "lat": 42 } }
|
|
|
|
|
]);
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let builder =
|
2022-05-02 19:19:50 +02:00
|
|
|
|
IndexDocuments::new(&mut wtxn, &index, &config, indexing_config.clone(), |_| ())
|
|
|
|
|
.unwrap();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let (builder, user_error) = builder.add_documents(documents).unwrap();
|
|
|
|
|
user_error.unwrap();
|
2022-05-02 19:19:50 +02:00
|
|
|
|
let error = builder.execute().unwrap_err();
|
|
|
|
|
assert_eq!(
|
|
|
|
|
&error.to_string(),
|
|
|
|
|
r#"Could not find longitude in the document with the id: `0`. Was expecting a `_geo.lng` field."#
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
let documents = documents!([
|
|
|
|
|
{ "id": 0, "_geo": { "lat": "lol", "lng": 42 } }
|
|
|
|
|
]);
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let builder =
|
2022-05-02 19:19:50 +02:00
|
|
|
|
IndexDocuments::new(&mut wtxn, &index, &config, indexing_config.clone(), |_| ())
|
|
|
|
|
.unwrap();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let (builder, user_error) = builder.add_documents(documents).unwrap();
|
|
|
|
|
user_error.unwrap();
|
2022-05-02 19:19:50 +02:00
|
|
|
|
let error = builder.execute().unwrap_err();
|
|
|
|
|
assert_eq!(
|
|
|
|
|
&error.to_string(),
|
|
|
|
|
r#"Could not parse latitude in the document with the id: `0`. Was expecting a number but instead got `"lol"`."#
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
let documents = documents!([
|
|
|
|
|
{ "id": 0, "_geo": { "lat": [12, 13], "lng": 42 } }
|
|
|
|
|
]);
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let builder =
|
2022-05-02 19:19:50 +02:00
|
|
|
|
IndexDocuments::new(&mut wtxn, &index, &config, indexing_config.clone(), |_| ())
|
|
|
|
|
.unwrap();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let (builder, user_error) = builder.add_documents(documents).unwrap();
|
|
|
|
|
user_error.unwrap();
|
2022-05-02 19:19:50 +02:00
|
|
|
|
let error = builder.execute().unwrap_err();
|
|
|
|
|
assert_eq!(
|
|
|
|
|
&error.to_string(),
|
|
|
|
|
r#"Could not parse latitude in the document with the id: `0`. Was expecting a number but instead got `[12,13]`."#
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
let documents = documents!([
|
|
|
|
|
{ "id": 0, "_geo": { "lat": 12, "lng": "hello" } }
|
|
|
|
|
]);
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let builder =
|
2022-05-02 19:19:50 +02:00
|
|
|
|
IndexDocuments::new(&mut wtxn, &index, &config, indexing_config.clone(), |_| ())
|
|
|
|
|
.unwrap();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let (builder, user_error) = builder.add_documents(documents).unwrap();
|
|
|
|
|
user_error.unwrap();
|
2022-05-02 19:19:50 +02:00
|
|
|
|
let error = builder.execute().unwrap_err();
|
|
|
|
|
assert_eq!(
|
|
|
|
|
&error.to_string(),
|
|
|
|
|
r#"Could not parse longitude in the document with the id: `0`. Was expecting a number but instead got `"hello"`."#
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-30 11:23:29 +02:00
|
|
|
|
#[test]
|
|
|
|
|
fn delete_documents_then_insert() {
|
|
|
|
|
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 11:44:15 +02:00
|
|
|
|
let content = documents!([
|
2021-06-30 11:23:29 +02:00
|
|
|
|
{ "objectId": 123, "title": "Pride and Prejudice", "comment": "A great book" },
|
|
|
|
|
{ "objectId": 456, "title": "Le Petit Prince", "comment": "A french book" },
|
|
|
|
|
{ "objectId": 1, "title": "Alice In Wonderland", "comment": "A weird book" },
|
2021-08-26 13:27:32 +02:00
|
|
|
|
{ "objectId": 30, "title": "Hamlet", "_geo": { "lat": 12, "lng": 89 } }
|
2021-08-31 11:44:15 +02:00
|
|
|
|
]);
|
2021-12-08 14:12:07 +01:00
|
|
|
|
let config = IndexerConfig::default();
|
|
|
|
|
let indexing_config = IndexDocumentsConfig::default();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let builder =
|
2022-03-23 17:28:41 +01:00
|
|
|
|
IndexDocuments::new(&mut wtxn, &index, &config, indexing_config.clone(), |_| ())
|
|
|
|
|
.unwrap();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let (builder, user_error) = builder.add_documents(content).unwrap();
|
|
|
|
|
user_error.unwrap();
|
2021-12-08 14:12:07 +01:00
|
|
|
|
builder.execute().unwrap();
|
2021-06-30 11:23:29 +02:00
|
|
|
|
|
|
|
|
|
assert_eq!(index.primary_key(&wtxn).unwrap(), Some("objectId"));
|
|
|
|
|
|
|
|
|
|
// Delete not all of the documents but some of them.
|
2021-11-03 13:12:01 +01:00
|
|
|
|
let mut builder = DeleteDocuments::new(&mut wtxn, &index).unwrap();
|
2021-06-30 11:23:29 +02:00
|
|
|
|
builder.delete_external_id("30");
|
|
|
|
|
builder.execute().unwrap();
|
|
|
|
|
|
|
|
|
|
let external_documents_ids = index.external_documents_ids(&wtxn).unwrap();
|
|
|
|
|
assert!(external_documents_ids.get("30").is_none());
|
|
|
|
|
|
2021-08-31 11:44:15 +02:00
|
|
|
|
let content = documents!([
|
2021-08-26 13:27:32 +02:00
|
|
|
|
{ "objectId": 30, "title": "Hamlet", "_geo": { "lat": 12, "lng": 89 } }
|
2021-08-31 11:44:15 +02:00
|
|
|
|
]);
|
2021-06-30 11:23:29 +02:00
|
|
|
|
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let builder =
|
2022-03-23 17:28:41 +01:00
|
|
|
|
IndexDocuments::new(&mut wtxn, &index, &config, indexing_config.clone(), |_| ())
|
|
|
|
|
.unwrap();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let (builder, user_error) = builder.add_documents(content).unwrap();
|
|
|
|
|
user_error.unwrap();
|
2021-12-08 14:12:07 +01:00
|
|
|
|
builder.execute().unwrap();
|
2021-06-30 11:23:29 +02:00
|
|
|
|
let external_documents_ids = index.external_documents_ids(&wtxn).unwrap();
|
|
|
|
|
assert!(external_documents_ids.get("30").is_some());
|
|
|
|
|
|
2021-08-31 11:44:15 +02:00
|
|
|
|
let content = documents!([
|
2021-08-26 13:27:32 +02:00
|
|
|
|
{ "objectId": 30, "title": "Hamlet", "_geo": { "lat": 12, "lng": 89 } }
|
2021-08-31 11:44:15 +02:00
|
|
|
|
]);
|
2021-12-08 14:12:07 +01:00
|
|
|
|
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let builder =
|
2022-03-23 17:28:41 +01:00
|
|
|
|
IndexDocuments::new(&mut wtxn, &index, &config, indexing_config.clone(), |_| ())
|
|
|
|
|
.unwrap();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let (builder, user_error) = builder.add_documents(content).unwrap();
|
|
|
|
|
user_error.unwrap();
|
2021-12-08 14:12:07 +01:00
|
|
|
|
builder.execute().unwrap();
|
2021-06-30 11:23:29 +02:00
|
|
|
|
|
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
|
}
|
2021-07-06 11:40:45 +02:00
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn index_more_than_256_fields() {
|
|
|
|
|
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();
|
|
|
|
|
|
2022-06-14 16:04:27 +02:00
|
|
|
|
let mut big_object = serde_json::Map::new();
|
|
|
|
|
big_object.insert(S("id"), serde_json::Value::from("wow"));
|
2021-07-06 11:40:45 +02:00
|
|
|
|
for i in 0..1000 {
|
|
|
|
|
let key = i.to_string();
|
2022-06-14 16:04:27 +02:00
|
|
|
|
big_object.insert(key, serde_json::Value::from("I am a text!"));
|
2021-07-06 11:40:45 +02:00
|
|
|
|
}
|
|
|
|
|
|
2022-06-14 16:04:27 +02:00
|
|
|
|
let mut builder = DocumentsBatchBuilder::new(Vec::new());
|
|
|
|
|
builder.append_json_object(&big_object).unwrap();
|
|
|
|
|
let vector = builder.into_inner().unwrap();
|
|
|
|
|
let content = DocumentsBatchReader::from_reader(Cursor::new(vector)).unwrap();
|
2021-08-31 11:44:15 +02:00
|
|
|
|
|
2021-12-08 14:12:07 +01:00
|
|
|
|
let config = IndexerConfig::default();
|
|
|
|
|
let indexing_config = IndexDocumentsConfig::default();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let builder =
|
2022-03-23 17:28:41 +01:00
|
|
|
|
IndexDocuments::new(&mut wtxn, &index, &config, indexing_config.clone(), |_| ())
|
|
|
|
|
.unwrap();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let (builder, user_error) = builder.add_documents(content).unwrap();
|
|
|
|
|
user_error.unwrap();
|
2021-12-08 14:12:07 +01:00
|
|
|
|
builder.execute().unwrap();
|
2021-07-06 11:40:45 +02:00
|
|
|
|
|
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
|
}
|
2021-07-22 17:14:44 +02:00
|
|
|
|
|
2021-09-22 17:48:24 +02:00
|
|
|
|
#[test]
|
|
|
|
|
fn index_more_than_1000_positions_in_a_field() {
|
|
|
|
|
let path = tempfile::tempdir().unwrap();
|
|
|
|
|
let mut options = EnvOpenOptions::new();
|
|
|
|
|
options.map_size(50 * 1024 * 1024); // 10 MB
|
|
|
|
|
let index = Index::new(options, &path).unwrap();
|
|
|
|
|
|
|
|
|
|
let mut wtxn = index.write_txn().unwrap();
|
|
|
|
|
|
2022-06-14 16:04:27 +02:00
|
|
|
|
let mut big_object = serde_json::Map::new();
|
|
|
|
|
big_object.insert(S("id"), serde_json::Value::from("wow"));
|
2022-04-11 15:43:18 +02:00
|
|
|
|
let content: String = (0..=u16::MAX)
|
|
|
|
|
.into_iter()
|
|
|
|
|
.map(|p| p.to_string())
|
|
|
|
|
.reduce(|a, b| a + " " + b.as_ref())
|
|
|
|
|
.unwrap();
|
2022-06-14 16:04:27 +02:00
|
|
|
|
big_object.insert("content".to_string(), serde_json::Value::from(content));
|
2021-09-22 17:48:24 +02:00
|
|
|
|
|
2022-06-14 16:04:27 +02:00
|
|
|
|
let mut builder = DocumentsBatchBuilder::new(Vec::new());
|
|
|
|
|
builder.append_json_object(&big_object).unwrap();
|
|
|
|
|
let vector = builder.into_inner().unwrap();
|
|
|
|
|
let content = DocumentsBatchReader::from_reader(Cursor::new(vector)).unwrap();
|
2021-09-22 17:48:24 +02:00
|
|
|
|
|
2021-12-08 14:12:07 +01:00
|
|
|
|
let config = IndexerConfig::default();
|
|
|
|
|
let indexing_config = IndexDocumentsConfig::default();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let builder =
|
2022-03-23 17:28:41 +01:00
|
|
|
|
IndexDocuments::new(&mut wtxn, &index, &config, indexing_config.clone(), |_| ())
|
|
|
|
|
.unwrap();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let (builder, user_error) = builder.add_documents(content).unwrap();
|
|
|
|
|
user_error.unwrap();
|
2021-12-08 14:12:07 +01:00
|
|
|
|
builder.execute().unwrap();
|
2021-09-22 17:48:24 +02:00
|
|
|
|
|
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
|
|
|
|
|
|
let mut rtxn = index.read_txn().unwrap();
|
|
|
|
|
|
|
|
|
|
assert!(index.word_docids.get(&mut rtxn, "0").unwrap().is_some());
|
|
|
|
|
assert!(index.word_docids.get(&mut rtxn, "64").unwrap().is_some());
|
|
|
|
|
assert!(index.word_docids.get(&mut rtxn, "256").unwrap().is_some());
|
|
|
|
|
assert!(index.word_docids.get(&mut rtxn, "1024").unwrap().is_some());
|
|
|
|
|
assert!(index.word_docids.get(&mut rtxn, "32768").unwrap().is_some());
|
|
|
|
|
assert!(index.word_docids.get(&mut rtxn, "65535").unwrap().is_some());
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-22 17:14:44 +02:00
|
|
|
|
#[test]
|
|
|
|
|
fn index_documents_with_zeroes() {
|
|
|
|
|
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 11:44:15 +02:00
|
|
|
|
let content = documents!([
|
|
|
|
|
{
|
|
|
|
|
"id": 2,
|
|
|
|
|
"title": "Prideand Prejudice",
|
|
|
|
|
"au{hor": "Jane Austin",
|
|
|
|
|
"genre": "romance",
|
|
|
|
|
"price$": "3.5$",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"id": 456,
|
|
|
|
|
"title": "Le Petit Prince",
|
|
|
|
|
"au{hor": "Antoine de Saint-Exupéry",
|
|
|
|
|
"genre": "adventure",
|
|
|
|
|
"price$": "10.0$",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"id": 1,
|
|
|
|
|
"title": "Wonderland",
|
|
|
|
|
"au{hor": "Lewis Carroll",
|
|
|
|
|
"genre": "fantasy",
|
|
|
|
|
"price$": "25.99$",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"id": 4,
|
|
|
|
|
"title": "Harry Potter ing fantasy\0lood Prince",
|
|
|
|
|
"au{hor": "J. K. Rowling",
|
|
|
|
|
"genre": "fantasy\0",
|
|
|
|
|
},
|
|
|
|
|
]);
|
|
|
|
|
|
2021-12-08 14:12:07 +01:00
|
|
|
|
let config = IndexerConfig::default();
|
|
|
|
|
let indexing_config = IndexDocumentsConfig::default();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let builder =
|
2022-03-23 17:28:41 +01:00
|
|
|
|
IndexDocuments::new(&mut wtxn, &index, &config, indexing_config.clone(), |_| ())
|
|
|
|
|
.unwrap();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let (builder, user_error) = builder.add_documents(content).unwrap();
|
|
|
|
|
user_error.unwrap();
|
2022-03-23 17:28:41 +01:00
|
|
|
|
builder.execute().unwrap();
|
|
|
|
|
|
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn index_documents_with_nested_fields() {
|
|
|
|
|
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();
|
|
|
|
|
let content = documents!([
|
|
|
|
|
{
|
|
|
|
|
"id": 0,
|
|
|
|
|
"title": "The zeroth document",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"id": 1,
|
|
|
|
|
"title": "The first document",
|
|
|
|
|
"nested": {
|
|
|
|
|
"object": "field",
|
|
|
|
|
"machin": "bidule",
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"id": 2,
|
|
|
|
|
"title": "The second document",
|
|
|
|
|
"nested": [
|
|
|
|
|
"array",
|
|
|
|
|
{
|
|
|
|
|
"object": "field",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"prout": "truc",
|
|
|
|
|
"machin": "lol",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"id": 3,
|
|
|
|
|
"title": "The third document",
|
|
|
|
|
"nested": "I lied",
|
|
|
|
|
},
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
let config = IndexerConfig::default();
|
|
|
|
|
let indexing_config = IndexDocumentsConfig::default();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let builder =
|
2022-03-23 17:28:41 +01:00
|
|
|
|
IndexDocuments::new(&mut wtxn, &index, &config, indexing_config.clone(), |_| ())
|
|
|
|
|
.unwrap();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let (builder, user_error) = builder.add_documents(content).unwrap();
|
|
|
|
|
user_error.unwrap();
|
2021-12-08 14:12:07 +01:00
|
|
|
|
builder.execute().unwrap();
|
2021-07-22 17:14:44 +02:00
|
|
|
|
|
|
|
|
|
wtxn.commit().unwrap();
|
2022-03-23 17:28:41 +01:00
|
|
|
|
|
|
|
|
|
let mut wtxn = index.write_txn().unwrap();
|
|
|
|
|
let mut builder = update::Settings::new(&mut wtxn, &index, &config);
|
|
|
|
|
|
|
|
|
|
let searchable_fields = vec![S("title"), S("nested.object"), S("nested.machin")];
|
|
|
|
|
builder.set_searchable_fields(searchable_fields);
|
|
|
|
|
|
|
|
|
|
let faceted_fields = hashset!(S("title"), S("nested.object"), S("nested.machin"));
|
|
|
|
|
builder.set_filterable_fields(faceted_fields);
|
|
|
|
|
builder.execute(|_| ()).unwrap();
|
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
|
|
|
|
|
|
let rtxn = index.read_txn().unwrap();
|
|
|
|
|
|
|
|
|
|
let facets = index.faceted_fields(&rtxn).unwrap();
|
|
|
|
|
assert_eq!(facets, hashset!(S("title"), S("nested.object"), S("nested.machin")));
|
|
|
|
|
|
|
|
|
|
// testing the simple query search
|
|
|
|
|
let mut search = crate::Search::new(&rtxn, &index);
|
|
|
|
|
search.query("document");
|
|
|
|
|
search.authorize_typos(true);
|
|
|
|
|
search.optional_words(true);
|
|
|
|
|
// all documents should be returned
|
|
|
|
|
let crate::SearchResult { documents_ids, .. } = search.execute().unwrap();
|
|
|
|
|
assert_eq!(documents_ids.len(), 4);
|
|
|
|
|
|
|
|
|
|
search.query("zeroth");
|
|
|
|
|
let crate::SearchResult { documents_ids, .. } = search.execute().unwrap();
|
|
|
|
|
assert_eq!(documents_ids, vec![0]);
|
|
|
|
|
search.query("first");
|
|
|
|
|
let crate::SearchResult { documents_ids, .. } = search.execute().unwrap();
|
|
|
|
|
assert_eq!(documents_ids, vec![1]);
|
|
|
|
|
search.query("second");
|
|
|
|
|
let crate::SearchResult { documents_ids, .. } = search.execute().unwrap();
|
|
|
|
|
assert_eq!(documents_ids, vec![2]);
|
|
|
|
|
search.query("third");
|
|
|
|
|
let crate::SearchResult { documents_ids, .. } = search.execute().unwrap();
|
|
|
|
|
assert_eq!(documents_ids, vec![3]);
|
|
|
|
|
|
|
|
|
|
search.query("field");
|
|
|
|
|
let crate::SearchResult { documents_ids, .. } = search.execute().unwrap();
|
|
|
|
|
assert_eq!(documents_ids, vec![1, 2]);
|
|
|
|
|
|
|
|
|
|
search.query("lol");
|
|
|
|
|
let crate::SearchResult { documents_ids, .. } = search.execute().unwrap();
|
|
|
|
|
assert_eq!(documents_ids, vec![2]);
|
|
|
|
|
|
|
|
|
|
search.query("object");
|
|
|
|
|
let crate::SearchResult { documents_ids, .. } = search.execute().unwrap();
|
|
|
|
|
assert!(documents_ids.is_empty());
|
|
|
|
|
|
|
|
|
|
search.query("array");
|
|
|
|
|
let crate::SearchResult { documents_ids, .. } = search.execute().unwrap();
|
|
|
|
|
assert!(documents_ids.is_empty()); // nested is not searchable
|
|
|
|
|
|
|
|
|
|
search.query("lied");
|
|
|
|
|
let crate::SearchResult { documents_ids, .. } = search.execute().unwrap();
|
|
|
|
|
assert!(documents_ids.is_empty()); // nested is not searchable
|
|
|
|
|
|
|
|
|
|
// testing the filters
|
|
|
|
|
let mut search = crate::Search::new(&rtxn, &index);
|
|
|
|
|
search.filter(crate::Filter::from_str(r#"title = "The first document""#).unwrap().unwrap());
|
|
|
|
|
let crate::SearchResult { documents_ids, .. } = search.execute().unwrap();
|
|
|
|
|
assert_eq!(documents_ids, vec![1]);
|
|
|
|
|
|
|
|
|
|
search.filter(crate::Filter::from_str(r#"nested.object = field"#).unwrap().unwrap());
|
|
|
|
|
let crate::SearchResult { documents_ids, .. } = search.execute().unwrap();
|
|
|
|
|
assert_eq!(documents_ids, vec![1, 2]);
|
|
|
|
|
|
|
|
|
|
search.filter(crate::Filter::from_str(r#"nested.machin = bidule"#).unwrap().unwrap());
|
|
|
|
|
let crate::SearchResult { documents_ids, .. } = search.execute().unwrap();
|
|
|
|
|
assert_eq!(documents_ids, vec![1]);
|
|
|
|
|
|
|
|
|
|
search.filter(crate::Filter::from_str(r#"nested = array"#).unwrap().unwrap());
|
|
|
|
|
let error = search.execute().map(|_| unreachable!()).unwrap_err(); // nested is not filterable
|
|
|
|
|
assert!(matches!(error, crate::Error::UserError(crate::UserError::InvalidFilter(_))));
|
|
|
|
|
|
|
|
|
|
search.filter(crate::Filter::from_str(r#"nested = "I lied""#).unwrap().unwrap());
|
|
|
|
|
let error = search.execute().map(|_| unreachable!()).unwrap_err(); // nested is not filterable
|
|
|
|
|
assert!(matches!(error, crate::Error::UserError(crate::UserError::InvalidFilter(_))));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn index_documents_with_nested_primary_key() {
|
|
|
|
|
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 config = IndexerConfig::default();
|
|
|
|
|
|
|
|
|
|
let mut wtxn = index.write_txn().unwrap();
|
|
|
|
|
let mut builder = update::Settings::new(&mut wtxn, &index, &config);
|
2022-04-25 14:09:52 +02:00
|
|
|
|
builder.set_primary_key("complex.nested.id".to_owned());
|
2022-03-23 17:28:41 +01:00
|
|
|
|
builder.execute(|_| ()).unwrap();
|
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
|
|
|
|
|
|
let mut wtxn = index.write_txn().unwrap();
|
|
|
|
|
let content = documents!([
|
|
|
|
|
{
|
2022-04-25 14:09:52 +02:00
|
|
|
|
"complex": {
|
|
|
|
|
"nested": {
|
|
|
|
|
"id": 0,
|
|
|
|
|
},
|
2022-03-23 17:28:41 +01:00
|
|
|
|
},
|
|
|
|
|
"title": "The zeroth document",
|
|
|
|
|
},
|
|
|
|
|
{
|
2022-04-25 14:09:52 +02:00
|
|
|
|
"complex.nested": {
|
2022-03-23 17:28:41 +01:00
|
|
|
|
"id": 1,
|
|
|
|
|
},
|
|
|
|
|
"title": "The first document",
|
|
|
|
|
},
|
|
|
|
|
{
|
2022-04-25 14:09:52 +02:00
|
|
|
|
"complex": {
|
|
|
|
|
"nested.id": 2,
|
2022-03-23 17:28:41 +01:00
|
|
|
|
},
|
|
|
|
|
"title": "The second document",
|
|
|
|
|
},
|
|
|
|
|
{
|
2022-04-25 14:09:52 +02:00
|
|
|
|
"complex.nested.id": 3,
|
2022-03-23 17:28:41 +01:00
|
|
|
|
"title": "The third document",
|
|
|
|
|
},
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
let indexing_config = IndexDocumentsConfig::default();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let builder =
|
2022-03-23 17:28:41 +01:00
|
|
|
|
IndexDocuments::new(&mut wtxn, &index, &config, indexing_config.clone(), |_| ())
|
|
|
|
|
.unwrap();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let (builder, user_error) = builder.add_documents(content).unwrap();
|
|
|
|
|
user_error.unwrap();
|
2022-03-23 17:28:41 +01:00
|
|
|
|
builder.execute().unwrap();
|
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
|
|
|
|
|
|
let rtxn = index.read_txn().unwrap();
|
|
|
|
|
|
|
|
|
|
// testing the simple query search
|
|
|
|
|
let mut search = crate::Search::new(&rtxn, &index);
|
|
|
|
|
search.query("document");
|
|
|
|
|
search.authorize_typos(true);
|
|
|
|
|
search.optional_words(true);
|
|
|
|
|
// all documents should be returned
|
|
|
|
|
let crate::SearchResult { documents_ids, .. } = search.execute().unwrap();
|
|
|
|
|
assert_eq!(documents_ids.len(), 4);
|
|
|
|
|
|
|
|
|
|
search.query("zeroth");
|
|
|
|
|
let crate::SearchResult { documents_ids, .. } = search.execute().unwrap();
|
|
|
|
|
assert_eq!(documents_ids, vec![0]);
|
|
|
|
|
search.query("first");
|
|
|
|
|
let crate::SearchResult { documents_ids, .. } = search.execute().unwrap();
|
|
|
|
|
assert_eq!(documents_ids, vec![1]);
|
|
|
|
|
search.query("second");
|
|
|
|
|
let crate::SearchResult { documents_ids, .. } = search.execute().unwrap();
|
|
|
|
|
assert_eq!(documents_ids, vec![2]);
|
|
|
|
|
search.query("third");
|
|
|
|
|
let crate::SearchResult { documents_ids, .. } = search.execute().unwrap();
|
|
|
|
|
assert_eq!(documents_ids, vec![3]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_facets_generation() {
|
|
|
|
|
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();
|
|
|
|
|
let content = documents!([
|
|
|
|
|
{
|
|
|
|
|
"id": 0,
|
|
|
|
|
"dog": {
|
|
|
|
|
"race": {
|
|
|
|
|
"bernese mountain": "zeroth",
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"id": 1,
|
|
|
|
|
"dog.race": {
|
|
|
|
|
"bernese mountain": "first",
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"id": 2,
|
|
|
|
|
"dog.race.bernese mountain": "second",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"id": 3,
|
|
|
|
|
"dog": {
|
|
|
|
|
"race.bernese mountain": "third"
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
// index the documents
|
|
|
|
|
let config = IndexerConfig::default();
|
|
|
|
|
let indexing_config = IndexDocumentsConfig::default();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let builder =
|
2022-03-23 17:28:41 +01:00
|
|
|
|
IndexDocuments::new(&mut wtxn, &index, &config, indexing_config.clone(), |_| ())
|
|
|
|
|
.unwrap();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let (builder, user_error) = builder.add_documents(content).unwrap();
|
|
|
|
|
user_error.unwrap();
|
2022-03-23 17:28:41 +01:00
|
|
|
|
builder.execute().unwrap();
|
|
|
|
|
|
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
|
|
|
|
|
|
// ---- ADD THE SETTING TO TEST THE FILTERABLE
|
|
|
|
|
|
|
|
|
|
// add the settings
|
|
|
|
|
let mut wtxn = index.write_txn().unwrap();
|
|
|
|
|
let mut builder = update::Settings::new(&mut wtxn, &index, &config);
|
|
|
|
|
|
|
|
|
|
builder.set_filterable_fields(hashset!(String::from("dog")));
|
|
|
|
|
|
|
|
|
|
builder.execute(|_| ()).unwrap();
|
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
|
|
|
|
|
|
let rtxn = index.read_txn().unwrap();
|
|
|
|
|
|
|
|
|
|
let hidden = index.faceted_fields(&rtxn).unwrap();
|
|
|
|
|
|
|
|
|
|
assert_eq!(hidden, hashset!(S("dog"), S("dog.race"), S("dog.race.bernese mountain")));
|
|
|
|
|
|
|
|
|
|
for (s, i) in [("zeroth", 0), ("first", 1), ("second", 2), ("third", 3)] {
|
|
|
|
|
let mut search = crate::Search::new(&rtxn, &index);
|
|
|
|
|
let filter = format!(r#""dog.race.bernese mountain" = {s}"#);
|
|
|
|
|
search.filter(crate::Filter::from_str(&filter).unwrap().unwrap());
|
|
|
|
|
let crate::SearchResult { documents_ids, .. } = search.execute().unwrap();
|
|
|
|
|
assert_eq!(documents_ids, vec![i]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ---- RESET THE SETTINGS
|
|
|
|
|
|
|
|
|
|
// update the settings
|
|
|
|
|
let mut wtxn = index.write_txn().unwrap();
|
|
|
|
|
let mut builder = update::Settings::new(&mut wtxn, &index, &config);
|
|
|
|
|
|
|
|
|
|
builder.reset_filterable_fields();
|
|
|
|
|
|
|
|
|
|
builder.execute(|_| ()).unwrap();
|
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
|
|
|
|
|
|
let rtxn = index.read_txn().unwrap();
|
|
|
|
|
|
|
|
|
|
let facets = index.faceted_fields(&rtxn).unwrap();
|
|
|
|
|
|
|
|
|
|
assert_eq!(facets, hashset!());
|
|
|
|
|
|
|
|
|
|
// ---- UPDATE THE SETTINGS TO TEST THE SORTABLE
|
|
|
|
|
|
|
|
|
|
// update the settings
|
|
|
|
|
let mut wtxn = index.write_txn().unwrap();
|
|
|
|
|
let mut builder = update::Settings::new(&mut wtxn, &index, &config);
|
|
|
|
|
|
|
|
|
|
builder.set_sortable_fields(hashset!(S("dog.race")));
|
|
|
|
|
|
|
|
|
|
builder.execute(|_| ()).unwrap();
|
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
|
|
|
|
|
|
let rtxn = index.read_txn().unwrap();
|
|
|
|
|
|
|
|
|
|
let facets = index.faceted_fields(&rtxn).unwrap();
|
|
|
|
|
|
|
|
|
|
assert_eq!(facets, hashset!(S("dog.race"), S("dog.race.bernese mountain")));
|
|
|
|
|
|
|
|
|
|
let mut search = crate::Search::new(&rtxn, &index);
|
|
|
|
|
search.sort_criteria(vec![crate::AscDesc::Asc(crate::Member::Field(S(
|
|
|
|
|
"dog.race.bernese mountain",
|
|
|
|
|
)))]);
|
|
|
|
|
let crate::SearchResult { documents_ids, .. } = search.execute().unwrap();
|
|
|
|
|
assert_eq!(documents_ids, vec![1, 2, 3, 0]);
|
2021-07-22 17:14:44 +02:00
|
|
|
|
}
|
2021-09-23 15:55:39 +02:00
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn index_2_times_documents_split_by_zero_document_indexation() {
|
|
|
|
|
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 content = documents!([
|
|
|
|
|
{"id": 0, "name": "Kerollmops", "score": 78},
|
|
|
|
|
{"id": 1, "name": "ManyTheFish", "score": 75},
|
|
|
|
|
{"id": 2, "name": "Ferdi", "score": 39},
|
|
|
|
|
{"id": 3, "name": "Tommy", "score": 33}
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
let mut wtxn = index.write_txn().unwrap();
|
2021-12-08 14:12:07 +01:00
|
|
|
|
let config = IndexerConfig::default();
|
|
|
|
|
let indexing_config = IndexDocumentsConfig::default();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let builder =
|
2022-03-23 17:28:41 +01:00
|
|
|
|
IndexDocuments::new(&mut wtxn, &index, &config, indexing_config.clone(), |_| ())
|
|
|
|
|
.unwrap();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let (builder, user_error) = builder.add_documents(content).unwrap();
|
|
|
|
|
user_error.unwrap();
|
2021-12-08 14:12:07 +01:00
|
|
|
|
builder.execute().unwrap();
|
2021-09-23 15:55:39 +02:00
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
|
|
|
|
|
|
// Check that there is 4 document now.
|
|
|
|
|
let rtxn = index.read_txn().unwrap();
|
|
|
|
|
let count = index.number_of_documents(&rtxn).unwrap();
|
|
|
|
|
assert_eq!(count, 4);
|
|
|
|
|
|
|
|
|
|
let content = documents!([]);
|
|
|
|
|
|
|
|
|
|
let mut wtxn = index.write_txn().unwrap();
|
2021-12-08 14:12:07 +01:00
|
|
|
|
let config = IndexerConfig::default();
|
|
|
|
|
let indexing_config = IndexDocumentsConfig::default();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let builder =
|
2022-03-23 17:28:41 +01:00
|
|
|
|
IndexDocuments::new(&mut wtxn, &index, &config, indexing_config.clone(), |_| ())
|
|
|
|
|
.unwrap();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let (builder, user_error) = builder.add_documents(content).unwrap();
|
|
|
|
|
user_error.unwrap();
|
2021-12-08 14:12:07 +01:00
|
|
|
|
builder.execute().unwrap();
|
2021-09-23 15:55:39 +02:00
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
|
|
|
|
|
|
// Check that there is 4 document now.
|
|
|
|
|
let rtxn = index.read_txn().unwrap();
|
|
|
|
|
let count = index.number_of_documents(&rtxn).unwrap();
|
|
|
|
|
assert_eq!(count, 4);
|
|
|
|
|
|
|
|
|
|
let content = documents!([
|
|
|
|
|
{"id": 0, "name": "Kerollmops", "score": 78},
|
|
|
|
|
{"id": 1, "name": "ManyTheFish", "score": 75},
|
|
|
|
|
{"id": 2, "name": "Ferdi", "score": 39},
|
|
|
|
|
{"id": 3, "name": "Tommy", "score": 33}
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
let mut wtxn = index.write_txn().unwrap();
|
2021-12-08 14:12:07 +01:00
|
|
|
|
let config = IndexerConfig::default();
|
|
|
|
|
let indexing_config = IndexDocumentsConfig::default();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let builder =
|
2022-03-23 17:28:41 +01:00
|
|
|
|
IndexDocuments::new(&mut wtxn, &index, &config, indexing_config.clone(), |_| ())
|
|
|
|
|
.unwrap();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let (builder, user_error) = builder.add_documents(content).unwrap();
|
|
|
|
|
user_error.unwrap();
|
2021-12-08 14:12:07 +01:00
|
|
|
|
builder.execute().unwrap();
|
2021-09-23 15:55:39 +02:00
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
|
|
|
|
|
|
// Check that there is 4 document now.
|
|
|
|
|
let rtxn = index.read_txn().unwrap();
|
|
|
|
|
let count = index.number_of_documents(&rtxn).unwrap();
|
|
|
|
|
assert_eq!(count, 4);
|
|
|
|
|
}
|
2021-09-28 12:05:11 +02:00
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_meilisearch_1714() {
|
|
|
|
|
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 content = documents!([
|
|
|
|
|
{"id": "123", "title": "小化妆包" },
|
|
|
|
|
{"id": "456", "title": "Ipad 包" }
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
let mut wtxn = index.write_txn().unwrap();
|
2021-12-08 14:12:07 +01:00
|
|
|
|
let config = IndexerConfig::default();
|
|
|
|
|
let indexing_config = IndexDocumentsConfig::default();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let builder =
|
2022-03-23 17:28:41 +01:00
|
|
|
|
IndexDocuments::new(&mut wtxn, &index, &config, indexing_config.clone(), |_| ())
|
|
|
|
|
.unwrap();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let (builder, user_error) = builder.add_documents(content).unwrap();
|
|
|
|
|
user_error.unwrap();
|
2021-12-08 14:12:07 +01:00
|
|
|
|
builder.execute().unwrap();
|
2021-09-28 12:05:11 +02:00
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
|
|
|
|
|
|
let rtxn = index.read_txn().unwrap();
|
|
|
|
|
|
|
|
|
|
// Only the first document should match.
|
|
|
|
|
let count = index.word_docids.get(&rtxn, "化妆包").unwrap().unwrap().len();
|
|
|
|
|
assert_eq!(count, 1);
|
|
|
|
|
|
|
|
|
|
// Only the second document should match.
|
|
|
|
|
let count = index.word_docids.get(&rtxn, "包").unwrap().unwrap().len();
|
|
|
|
|
assert_eq!(count, 1);
|
|
|
|
|
|
|
|
|
|
let mut search = crate::Search::new(&rtxn, &index);
|
|
|
|
|
search.query("化妆包");
|
|
|
|
|
search.authorize_typos(true);
|
|
|
|
|
search.optional_words(true);
|
|
|
|
|
|
|
|
|
|
// only 1 document should be returned
|
|
|
|
|
let crate::SearchResult { documents_ids, .. } = search.execute().unwrap();
|
|
|
|
|
assert_eq!(documents_ids.len(), 1);
|
|
|
|
|
}
|
2022-04-21 13:45:28 +02:00
|
|
|
|
|
|
|
|
|
/// We try to index documents with words that are too long here,
|
|
|
|
|
/// it should not return any error.
|
|
|
|
|
#[test]
|
|
|
|
|
fn text_with_too_long_words() {
|
|
|
|
|
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 content = documents!([
|
|
|
|
|
{"id": 1, "title": "a".repeat(256) },
|
|
|
|
|
{"id": 2, "title": "b".repeat(512) },
|
|
|
|
|
{"id": 3, "title": format!("{} {}", "c".repeat(250), "d".repeat(250)) },
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
let mut wtxn = index.write_txn().unwrap();
|
|
|
|
|
let config = IndexerConfig::default();
|
|
|
|
|
let indexing_config = IndexDocumentsConfig::default();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let builder =
|
2022-04-21 13:45:28 +02:00
|
|
|
|
IndexDocuments::new(&mut wtxn, &index, &config, indexing_config.clone(), |_| ())
|
|
|
|
|
.unwrap();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let (builder, user_error) = builder.add_documents(content).unwrap();
|
|
|
|
|
user_error.unwrap();
|
2022-04-21 13:45:28 +02:00
|
|
|
|
builder.execute().unwrap();
|
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
|
}
|
2022-05-03 10:03:13 +02:00
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn text_with_too_long_keys() {
|
|
|
|
|
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 script = "https://bug.example.com/meilisearch/milli.saml2?ROLE=Programmer-1337&SAMLRequest=Cy1ytcZT1Po%2L2IY2y9Unru8rgnW4qWfPiI0EpT7P8xjJV8PeQikRL%2E8D9A4pj9tmbymbQCQwGmGjPMK7qwXFPX4DH52JO2b7n6TXjuR7zkIFuYdzdY2rwRNBPgCL7ihclEm9zyIjKZQ%2JTqiwfXxWjnI0KEYQYHdwd6Q%2Fx%28BDLNsvmL54CCY2F4RWeRs4eqWfn%2EHqxlhreFzax4AiQ2tgOtV5thOaaWqrhZD%2Py70nuyZWNTKwciGI43AoHg6PThANsQ5rAY5amzN%2ufbs1swETUXlLZuOut5YGpYPZfY6STJWNp4QYSUOUXBZpdElYsH7UHZ7VhJycgyt%28aTK0GW6GbKne2tJM0hgSczOqndg6RFa9WsnSBi4zMcaEfYur4WlSsHDYInF9ROousKqVMZ6H8%2gbUissaLh1eXRGo8KEJbyEHbhVVKGD%28kx4cfKjx9fT3pkeDTdvDrVn25jIzi9wHyt9l1lWc8ICnCvXCVUPP%2BjBG4wILR29gMV9Ux2QOieQm2%2Fycybhr8sBGCl30mHC7blvWt%2T3mrCHQoS3VK49PZNPqBZO9C7vOjOWoszNkJx4QckWV%2FZFvbpzUUkiBiehr9F%2FvQSxz9lzv68GwbTu9fr638p%2FQM%3D&RelayState=https%3A%2F%example.bug.com%2Fde&SigAlg=http%3A%2F%2Fwww.w3.org%2F2000%2F09%2Fxmldsig%23rsa-sha1&Signature=AZFpkhFFII7PodiewTovaGnLQKUVZp0qOCCcBIUkJ6P5by3lE3Lldj9pKaFu4wz4j%2B015HEhDvF0LlAmwwES85vdGh%2FpD%2cIQPRUEjdCbQkQDd3dy1mMXbpXxSe4QYcv9Ni7tqNTQxekpO1gE7rtg6zC66EU55uM9aj9abGQ034Vly%2F6IJ08bvAq%2B%2FB9KruLstuiNWnlXTfNGsOxGLK7%2BXr94LTkat8m%2FMan6Qr95%2KeR5TmmqaQIE4N9H6o4TopT7mXr5CF2Z3";
|
|
|
|
|
|
|
|
|
|
// Create 200 documents with a long text
|
|
|
|
|
let content = {
|
2022-06-14 16:04:27 +02:00
|
|
|
|
let documents_iter = (0..200i32)
|
2022-05-03 10:03:13 +02:00
|
|
|
|
.into_iter()
|
|
|
|
|
.map(|i| serde_json::json!({ "id": i, "script": script }))
|
2022-06-14 16:04:27 +02:00
|
|
|
|
.filter_map(|json| match json {
|
|
|
|
|
serde_json::Value::Object(object) => Some(object),
|
|
|
|
|
_ => None,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
let mut builder = crate::documents::DocumentsBatchBuilder::new(Vec::new());
|
|
|
|
|
for object in documents_iter {
|
|
|
|
|
builder.append_json_object(&object).unwrap();
|
|
|
|
|
}
|
|
|
|
|
let vector = builder.into_inner().unwrap();
|
|
|
|
|
crate::documents::DocumentsBatchReader::from_reader(Cursor::new(vector)).unwrap()
|
2022-05-03 10:03:13 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Index those 200 long documents
|
|
|
|
|
let mut wtxn = index.write_txn().unwrap();
|
|
|
|
|
let config = IndexerConfig::default();
|
|
|
|
|
let indexing_config = IndexDocumentsConfig::default();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let builder =
|
2022-05-03 10:03:13 +02:00
|
|
|
|
IndexDocuments::new(&mut wtxn, &index, &config, indexing_config.clone(), |_| ())
|
|
|
|
|
.unwrap();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let (builder, user_error) = builder.add_documents(content).unwrap();
|
|
|
|
|
user_error.unwrap();
|
2022-05-03 10:03:13 +02:00
|
|
|
|
builder.execute().unwrap();
|
|
|
|
|
|
|
|
|
|
// Create one long document
|
|
|
|
|
let content = documents!([
|
|
|
|
|
{"id": 400, "script": script },
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
// Index this one long document
|
|
|
|
|
let config = IndexerConfig::default();
|
|
|
|
|
let indexing_config = IndexDocumentsConfig::default();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let builder =
|
2022-05-03 10:03:13 +02:00
|
|
|
|
IndexDocuments::new(&mut wtxn, &index, &config, indexing_config.clone(), |_| ())
|
|
|
|
|
.unwrap();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let (builder, user_error) = builder.add_documents(content).unwrap();
|
|
|
|
|
user_error.unwrap();
|
2022-05-03 10:03:13 +02:00
|
|
|
|
builder.execute().unwrap();
|
|
|
|
|
|
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
|
}
|
2022-06-07 12:24:06 +02:00
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn index_documents_in_multiple_transforms() {
|
|
|
|
|
let tmp = tempfile::tempdir().unwrap();
|
|
|
|
|
let mut options = EnvOpenOptions::new();
|
|
|
|
|
options.map_size(4096 * 100);
|
|
|
|
|
let index = Index::new(options, tmp).unwrap();
|
|
|
|
|
let mut wtxn = index.write_txn().unwrap();
|
|
|
|
|
let indexer_config = IndexerConfig::default();
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let builder = IndexDocuments::new(
|
2022-06-07 12:24:06 +02:00
|
|
|
|
&mut wtxn,
|
|
|
|
|
&index,
|
|
|
|
|
&indexer_config,
|
|
|
|
|
IndexDocumentsConfig::default(),
|
|
|
|
|
|_| (),
|
|
|
|
|
)
|
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
|
|
let doc1 = documents! {[{
|
|
|
|
|
"id": 228142,
|
|
|
|
|
"title": "asdsad",
|
|
|
|
|
"state": "automated",
|
|
|
|
|
"priority": "normal",
|
|
|
|
|
"public_uid": "37ccf021",
|
|
|
|
|
"project_id": 78207,
|
|
|
|
|
"branch_id_number": 0
|
|
|
|
|
}]};
|
|
|
|
|
|
|
|
|
|
let doc2 = documents! {[{
|
|
|
|
|
"id": 228143,
|
|
|
|
|
"title": "something",
|
|
|
|
|
"state": "automated",
|
|
|
|
|
"priority": "normal",
|
|
|
|
|
"public_uid": "39c6499b",
|
|
|
|
|
"project_id": 78207,
|
|
|
|
|
"branch_id_number": 0
|
|
|
|
|
}]};
|
|
|
|
|
|
2022-06-15 14:35:19 +02:00
|
|
|
|
let (builder, user_error) = builder.add_documents(doc1).unwrap();
|
|
|
|
|
user_error.unwrap();
|
|
|
|
|
let (builder, user_error) = builder.add_documents(doc2).unwrap();
|
|
|
|
|
user_error.unwrap();
|
2022-06-07 12:24:06 +02:00
|
|
|
|
|
|
|
|
|
builder.execute().unwrap();
|
|
|
|
|
|
|
|
|
|
let map = index.external_documents_ids(&wtxn).unwrap().to_hash_map();
|
|
|
|
|
let ids = map.values().collect::<HashSet<_>>();
|
|
|
|
|
|
|
|
|
|
assert_eq!(ids.len(), map.len());
|
|
|
|
|
}
|
2020-10-30 12:14:25 +01:00
|
|
|
|
}
|