2020-10-27 03:18:10 +08:00
|
|
|
use std::borrow::Cow;
|
2020-11-03 20:42:29 +08:00
|
|
|
use std::collections::HashSet;
|
2020-10-27 03:18:10 +08:00
|
|
|
use std::fs::File;
|
2021-06-17 00:33:33 +08:00
|
|
|
use std::io::{self, BufRead, BufReader, Seek, SeekFrom};
|
2021-03-24 22:06:54 +08:00
|
|
|
use std::num::{NonZeroU32, NonZeroUsize};
|
2021-06-14 22:46:19 +08:00
|
|
|
use std::result::Result as StdResult;
|
2021-03-25 18:10:12 +08:00
|
|
|
use std::str;
|
2020-10-27 03:18:10 +08:00
|
|
|
use std::sync::mpsc::sync_channel;
|
|
|
|
use std::time::Instant;
|
|
|
|
|
|
|
|
use bstr::ByteSlice as _;
|
2021-03-12 01:42:21 +08:00
|
|
|
use chrono::Utc;
|
2021-06-17 00:33:33 +08:00
|
|
|
use grenad::{CompressionType, FileFuse, Merger, MergerIter, Reader, Sorter, Writer};
|
2020-10-27 03:18:10 +08:00
|
|
|
use heed::types::ByteSlice;
|
2021-06-17 00:33:33 +08:00
|
|
|
use log::{debug, error, info};
|
2020-11-03 20:20:11 +08:00
|
|
|
use memmap::Mmap;
|
2020-12-31 01:43:50 +08:00
|
|
|
use rayon::prelude::*;
|
2021-03-25 18:10:12 +08:00
|
|
|
use rayon::ThreadPool;
|
2021-06-17 00:33:33 +08:00
|
|
|
use serde::{Deserialize, Serialize};
|
2020-11-03 20:20:11 +08:00
|
|
|
|
2021-02-17 18:12:38 +08:00
|
|
|
pub use self::merge_function::{
|
2021-06-17 00:33:33 +08:00
|
|
|
cbo_roaring_bitmap_merge, fst_merge, keep_first, roaring_bitmap_merge,
|
2021-07-17 18:50:01 +08:00
|
|
|
tuple_string_cbo_roaring_bitmap_merge,
|
2020-10-27 03:18:10 +08:00
|
|
|
};
|
2021-06-17 00:33:33 +08:00
|
|
|
use self::store::{Readers, Store};
|
2020-10-27 03:18:10 +08:00
|
|
|
pub use self::transform::{Transform, TransformOutput};
|
|
|
|
use super::UpdateBuilder;
|
2021-06-17 00:33:33 +08:00
|
|
|
use crate::error::{Error, InternalError};
|
|
|
|
use crate::update::{
|
|
|
|
Facets, UpdateIndexingStep, WordPrefixDocids, WordPrefixPairProximityDocids,
|
|
|
|
WordsLevelPositions, WordsPrefixesFst,
|
|
|
|
};
|
|
|
|
use crate::{Index, MergeFn, Result};
|
2020-10-27 03:18:10 +08:00
|
|
|
|
|
|
|
mod merge_function;
|
|
|
|
mod store;
|
|
|
|
mod transform;
|
|
|
|
|
2020-12-31 01:43:50 +08:00
|
|
|
#[derive(Debug, Serialize, Deserialize, Clone)]
|
|
|
|
pub struct DocumentAdditionResult {
|
2021-04-30 02:05:07 +08:00
|
|
|
pub nb_documents: usize,
|
2020-12-31 01:43:50 +08:00
|
|
|
}
|
|
|
|
|
2020-10-27 03:18:10 +08:00
|
|
|
#[derive(Debug, Copy, Clone)]
|
2020-11-18 04:19:25 +08:00
|
|
|
pub enum WriteMethod {
|
2020-10-27 03:18:10 +08:00
|
|
|
Append,
|
|
|
|
GetMergePut,
|
|
|
|
}
|
|
|
|
|
2021-06-17 00:33:33 +08:00
|
|
|
pub fn create_writer(
|
|
|
|
typ: CompressionType,
|
|
|
|
level: Option<u32>,
|
|
|
|
file: File,
|
|
|
|
) -> io::Result<Writer<File>> {
|
2020-10-27 03:18:10 +08:00
|
|
|
let mut builder = Writer::builder();
|
|
|
|
builder.compression_type(typ);
|
|
|
|
if let Some(level) = level {
|
|
|
|
builder.compression_level(level);
|
|
|
|
}
|
|
|
|
builder.build(file)
|
|
|
|
}
|
|
|
|
|
2021-06-14 22:46:19 +08:00
|
|
|
pub fn create_sorter<E>(
|
|
|
|
merge: MergeFn<E>,
|
2020-10-27 03:18:10 +08:00
|
|
|
chunk_compression_type: CompressionType,
|
|
|
|
chunk_compression_level: Option<u32>,
|
|
|
|
chunk_fusing_shrink_size: Option<u64>,
|
|
|
|
max_nb_chunks: Option<usize>,
|
|
|
|
max_memory: Option<usize>,
|
2021-06-17 00:33:33 +08:00
|
|
|
) -> Sorter<MergeFn<E>> {
|
2020-10-27 03:18:10 +08:00
|
|
|
let mut builder = Sorter::builder(merge);
|
|
|
|
if let Some(shrink_size) = chunk_fusing_shrink_size {
|
|
|
|
builder.file_fusing_shrink_size(shrink_size);
|
|
|
|
}
|
|
|
|
builder.chunk_compression_type(chunk_compression_type);
|
|
|
|
if let Some(level) = chunk_compression_level {
|
|
|
|
builder.chunk_compression_level(level);
|
|
|
|
}
|
|
|
|
if let Some(nb_chunks) = max_nb_chunks {
|
|
|
|
builder.max_nb_chunks(nb_chunks);
|
|
|
|
}
|
|
|
|
if let Some(memory) = max_memory {
|
|
|
|
builder.max_memory(memory);
|
|
|
|
}
|
|
|
|
builder.build()
|
|
|
|
}
|
|
|
|
|
2021-06-17 00:33:33 +08:00
|
|
|
pub fn writer_into_reader(
|
|
|
|
writer: Writer<File>,
|
|
|
|
shrink_size: Option<u64>,
|
|
|
|
) -> Result<Reader<FileFuse>> {
|
2020-10-27 03:18:10 +08:00
|
|
|
let mut file = writer.into_inner()?;
|
|
|
|
file.seek(SeekFrom::Start(0))?;
|
|
|
|
let file = if let Some(shrink_size) = shrink_size {
|
|
|
|
FileFuse::builder().shrink_size(shrink_size).build(file)
|
|
|
|
} else {
|
|
|
|
FileFuse::new(file)
|
|
|
|
};
|
|
|
|
Reader::new(file).map_err(Into::into)
|
|
|
|
}
|
|
|
|
|
2021-06-14 22:46:19 +08:00
|
|
|
pub fn merge_readers<E>(
|
|
|
|
sources: Vec<Reader<FileFuse>>,
|
|
|
|
merge: MergeFn<E>,
|
2021-06-17 00:33:33 +08:00
|
|
|
) -> Merger<FileFuse, MergeFn<E>> {
|
2020-10-27 03:18:10 +08:00
|
|
|
let mut builder = Merger::builder(merge);
|
|
|
|
builder.extend(sources);
|
|
|
|
builder.build()
|
|
|
|
}
|
|
|
|
|
2021-06-14 22:46:19 +08:00
|
|
|
pub fn merge_into_lmdb_database<E>(
|
2020-10-27 03:18:10 +08:00
|
|
|
wtxn: &mut heed::RwTxn,
|
|
|
|
database: heed::PolyDatabase,
|
|
|
|
sources: Vec<Reader<FileFuse>>,
|
2021-06-14 22:46:19 +08:00
|
|
|
merge: MergeFn<E>,
|
2020-10-27 03:18:10 +08:00
|
|
|
method: WriteMethod,
|
2021-06-14 22:46:19 +08:00
|
|
|
) -> Result<()>
|
|
|
|
where
|
|
|
|
Error: From<E>,
|
2021-02-17 18:09:42 +08:00
|
|
|
{
|
2020-10-27 03:18:10 +08:00
|
|
|
debug!("Merging {} MTBL stores...", sources.len());
|
|
|
|
let before = Instant::now();
|
|
|
|
|
|
|
|
let merger = merge_readers(sources, merge);
|
2021-06-17 00:33:33 +08:00
|
|
|
merger_iter_into_lmdb_database(wtxn, database, merger.into_merge_iter()?, merge, method)?;
|
2021-02-17 18:09:42 +08:00
|
|
|
|
|
|
|
debug!("MTBL stores merged in {:.02?}!", before.elapsed());
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2021-06-14 22:46:19 +08:00
|
|
|
pub fn write_into_lmdb_database<E>(
|
2021-02-17 18:09:42 +08:00
|
|
|
wtxn: &mut heed::RwTxn,
|
|
|
|
database: heed::PolyDatabase,
|
|
|
|
mut reader: Reader<FileFuse>,
|
2021-06-14 22:46:19 +08:00
|
|
|
merge: MergeFn<E>,
|
2021-02-17 18:09:42 +08:00
|
|
|
method: WriteMethod,
|
2021-06-14 22:46:19 +08:00
|
|
|
) -> Result<()>
|
|
|
|
where
|
|
|
|
Error: From<E>,
|
2021-02-17 18:09:42 +08:00
|
|
|
{
|
|
|
|
debug!("Writing MTBL stores...");
|
|
|
|
let before = Instant::now();
|
2020-10-27 03:18:10 +08:00
|
|
|
|
|
|
|
match method {
|
|
|
|
WriteMethod::Append => {
|
|
|
|
let mut out_iter = database.iter_mut::<_, ByteSlice, ByteSlice>(wtxn)?;
|
2021-02-17 18:09:42 +08:00
|
|
|
while let Some((k, v)) = reader.next()? {
|
2021-06-29 00:26:20 +08:00
|
|
|
// safety: we don't keep references from inside the LMDB database.
|
|
|
|
unsafe { out_iter.append(k, v)? };
|
2020-10-27 03:18:10 +08:00
|
|
|
}
|
2021-06-17 00:33:33 +08:00
|
|
|
}
|
2020-10-27 03:18:10 +08:00
|
|
|
WriteMethod::GetMergePut => {
|
2021-02-17 18:09:42 +08:00
|
|
|
while let Some((k, v)) = reader.next()? {
|
2020-10-30 18:13:45 +08:00
|
|
|
let mut iter = database.prefix_iter_mut::<_, ByteSlice, ByteSlice>(wtxn, k)?;
|
|
|
|
match iter.next().transpose()? {
|
|
|
|
Some((key, old_val)) if key == k => {
|
2021-06-09 20:45:56 +08:00
|
|
|
let vals = &[Cow::Borrowed(old_val), Cow::Borrowed(v)][..];
|
2021-02-17 18:09:42 +08:00
|
|
|
let val = merge(k, &vals)?;
|
2021-06-29 00:26:20 +08:00
|
|
|
// safety: we don't keep references from inside the LMDB database.
|
|
|
|
unsafe { iter.put_current(k, &val)? };
|
2021-06-17 00:33:33 +08:00
|
|
|
}
|
2020-10-30 18:13:45 +08:00
|
|
|
_ => {
|
|
|
|
drop(iter);
|
|
|
|
database.put::<_, ByteSlice, ByteSlice>(wtxn, k, v)?;
|
2021-06-17 00:33:33 +08:00
|
|
|
}
|
2020-10-27 03:18:10 +08:00
|
|
|
}
|
|
|
|
}
|
2021-02-17 18:09:42 +08:00
|
|
|
}
|
2020-10-27 03:18:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
debug!("MTBL stores merged in {:.02?}!", before.elapsed());
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2021-06-14 22:46:19 +08:00
|
|
|
pub fn sorter_into_lmdb_database<E>(
|
2020-10-27 03:18:10 +08:00
|
|
|
wtxn: &mut heed::RwTxn,
|
|
|
|
database: heed::PolyDatabase,
|
2021-06-14 22:46:19 +08:00
|
|
|
sorter: Sorter<MergeFn<E>>,
|
|
|
|
merge: MergeFn<E>,
|
2020-10-27 03:18:10 +08:00
|
|
|
method: WriteMethod,
|
2021-06-14 22:46:19 +08:00
|
|
|
) -> Result<()>
|
|
|
|
where
|
|
|
|
Error: From<E>,
|
2021-06-17 00:33:33 +08:00
|
|
|
Error: From<grenad::Error<E>>,
|
2021-02-17 18:09:42 +08:00
|
|
|
{
|
|
|
|
debug!("Writing MTBL sorter...");
|
2020-10-27 03:18:10 +08:00
|
|
|
let before = Instant::now();
|
|
|
|
|
2021-06-17 00:33:33 +08:00
|
|
|
merger_iter_into_lmdb_database(wtxn, database, sorter.into_iter()?, merge, method)?;
|
2021-02-17 18:09:42 +08:00
|
|
|
|
|
|
|
debug!("MTBL sorter writen in {:.02?}!", before.elapsed());
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2021-06-14 22:46:19 +08:00
|
|
|
fn merger_iter_into_lmdb_database<R: io::Read, E>(
|
2021-02-17 18:09:42 +08:00
|
|
|
wtxn: &mut heed::RwTxn,
|
|
|
|
database: heed::PolyDatabase,
|
2021-06-14 22:46:19 +08:00
|
|
|
mut sorter: MergerIter<R, MergeFn<E>>,
|
|
|
|
merge: MergeFn<E>,
|
2021-02-17 18:09:42 +08:00
|
|
|
method: WriteMethod,
|
2021-06-14 22:46:19 +08:00
|
|
|
) -> Result<()>
|
|
|
|
where
|
|
|
|
Error: From<E>,
|
2021-02-17 18:09:42 +08:00
|
|
|
{
|
2020-10-27 03:18:10 +08:00
|
|
|
match method {
|
|
|
|
WriteMethod::Append => {
|
|
|
|
let mut out_iter = database.iter_mut::<_, ByteSlice, ByteSlice>(wtxn)?;
|
2021-02-17 18:09:42 +08:00
|
|
|
while let Some((k, v)) = sorter.next()? {
|
2021-06-29 00:26:20 +08:00
|
|
|
// safety: we don't keep references from inside the LMDB database.
|
|
|
|
unsafe { out_iter.append(k, v)? };
|
2020-10-27 03:18:10 +08:00
|
|
|
}
|
2021-06-17 00:33:33 +08:00
|
|
|
}
|
2020-10-27 03:18:10 +08:00
|
|
|
WriteMethod::GetMergePut => {
|
2021-02-17 18:09:42 +08:00
|
|
|
while let Some((k, v)) = sorter.next()? {
|
2020-10-30 18:13:45 +08:00
|
|
|
let mut iter = database.prefix_iter_mut::<_, ByteSlice, ByteSlice>(wtxn, k)?;
|
|
|
|
match iter.next().transpose()? {
|
|
|
|
Some((key, old_val)) if key == k => {
|
2020-10-27 03:18:10 +08:00
|
|
|
let vals = vec![Cow::Borrowed(old_val), Cow::Borrowed(v)];
|
2021-06-14 22:46:19 +08:00
|
|
|
let val = merge(k, &vals).map_err(|_| {
|
|
|
|
// TODO just wrap this error?
|
|
|
|
InternalError::IndexingMergingKeys { process: "get-put-merge" }
|
|
|
|
})?;
|
2021-06-29 00:26:20 +08:00
|
|
|
// safety: we don't keep references from inside the LMDB database.
|
|
|
|
unsafe { iter.put_current(k, &val)? };
|
2021-06-17 00:33:33 +08:00
|
|
|
}
|
2020-10-30 18:13:45 +08:00
|
|
|
_ => {
|
|
|
|
drop(iter);
|
|
|
|
database.put::<_, ByteSlice, ByteSlice>(wtxn, k, v)?;
|
2021-06-17 00:33:33 +08:00
|
|
|
}
|
2020-10-27 03:18:10 +08:00
|
|
|
}
|
|
|
|
}
|
2021-06-17 00:33:33 +08:00
|
|
|
}
|
2020-10-27 03:18:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
2020-10-26 18:02:44 +08:00
|
|
|
|
2020-12-23 01:17:35 +08:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
|
2020-10-31 23:10:15 +08:00
|
|
|
#[non_exhaustive]
|
2020-10-26 18:02:44 +08: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,
|
|
|
|
}
|
|
|
|
|
2020-12-23 01:17:35 +08:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
|
2020-10-31 23:10:15 +08:00
|
|
|
#[non_exhaustive]
|
|
|
|
pub enum UpdateFormat {
|
|
|
|
/// The given update is a real **comma seperated** CSV with headers on the first line.
|
|
|
|
Csv,
|
|
|
|
/// The given update is a JSON array with documents inside.
|
|
|
|
Json,
|
2020-11-01 18:50:10 +08:00
|
|
|
/// The given update is a JSON stream with a document on each line.
|
|
|
|
JsonStream,
|
2020-10-31 23:10:15 +08:00
|
|
|
}
|
|
|
|
|
2020-11-03 02:11:22 +08:00
|
|
|
pub struct IndexDocuments<'t, 'u, 'i, 'a> {
|
2020-10-30 18:42:00 +08:00
|
|
|
wtxn: &'t mut heed::RwTxn<'i, 'u>,
|
2020-10-26 18:02:44 +08:00
|
|
|
index: &'i Index,
|
2020-11-01 21:55:06 +08:00
|
|
|
pub(crate) log_every_n: Option<usize>,
|
|
|
|
pub(crate) max_nb_chunks: Option<usize>,
|
|
|
|
pub(crate) max_memory: Option<usize>,
|
|
|
|
pub(crate) linked_hash_map_size: Option<usize>,
|
|
|
|
pub(crate) chunk_compression_type: CompressionType,
|
|
|
|
pub(crate) chunk_compression_level: Option<u32>,
|
|
|
|
pub(crate) chunk_fusing_shrink_size: Option<u64>,
|
2020-11-03 02:11:22 +08:00
|
|
|
pub(crate) thread_pool: Option<&'a ThreadPool>,
|
2020-11-28 19:43:43 +08:00
|
|
|
facet_level_group_size: Option<NonZeroUsize>,
|
|
|
|
facet_min_level_size: Option<NonZeroUsize>,
|
2021-02-10 18:53:13 +08:00
|
|
|
words_prefix_threshold: Option<f64>,
|
|
|
|
max_prefix_length: Option<usize>,
|
2021-03-24 22:06:54 +08:00
|
|
|
words_positions_level_group_size: Option<NonZeroU32>,
|
|
|
|
words_positions_min_level_size: Option<NonZeroU32>,
|
2020-10-26 18:02:44 +08:00
|
|
|
update_method: IndexDocumentsMethod,
|
2020-10-31 23:10:15 +08:00
|
|
|
update_format: UpdateFormat,
|
2020-11-01 04:46:55 +08:00
|
|
|
autogenerate_docids: bool,
|
2020-12-22 23:21:07 +08:00
|
|
|
update_id: u64,
|
2020-10-26 18:02:44 +08:00
|
|
|
}
|
|
|
|
|
2020-11-03 02:11:22 +08:00
|
|
|
impl<'t, 'u, 'i, 'a> IndexDocuments<'t, 'u, 'i, 'a> {
|
2020-12-22 23:21:07 +08:00
|
|
|
pub fn new(
|
|
|
|
wtxn: &'t mut heed::RwTxn<'i, 'u>,
|
|
|
|
index: &'i Index,
|
|
|
|
update_id: u64,
|
|
|
|
) -> IndexDocuments<'t, 'u, 'i, 'a> {
|
2020-10-27 03:18:10 +08:00
|
|
|
IndexDocuments {
|
|
|
|
wtxn,
|
|
|
|
index,
|
|
|
|
log_every_n: None,
|
|
|
|
max_nb_chunks: None,
|
|
|
|
max_memory: None,
|
|
|
|
linked_hash_map_size: None,
|
|
|
|
chunk_compression_type: CompressionType::None,
|
|
|
|
chunk_compression_level: None,
|
|
|
|
chunk_fusing_shrink_size: None,
|
2020-11-03 02:11:22 +08:00
|
|
|
thread_pool: None,
|
2020-11-28 19:43:43 +08:00
|
|
|
facet_level_group_size: None,
|
|
|
|
facet_min_level_size: None,
|
2021-02-10 18:53:13 +08:00
|
|
|
words_prefix_threshold: None,
|
|
|
|
max_prefix_length: None,
|
2021-03-17 20:55:24 +08:00
|
|
|
words_positions_level_group_size: None,
|
|
|
|
words_positions_min_level_size: None,
|
2020-10-31 23:10:15 +08:00
|
|
|
update_method: IndexDocumentsMethod::ReplaceDocuments,
|
|
|
|
update_format: UpdateFormat::Json,
|
2021-05-01 02:34:29 +08:00
|
|
|
autogenerate_docids: false,
|
2020-12-22 23:21:07 +08:00
|
|
|
update_id,
|
2020-10-27 03:18:10 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-01 21:55:06 +08:00
|
|
|
pub fn index_documents_method(&mut self, method: IndexDocumentsMethod) {
|
2020-10-26 18:02:44 +08:00
|
|
|
self.update_method = method;
|
|
|
|
}
|
|
|
|
|
2020-11-01 21:55:06 +08:00
|
|
|
pub fn update_format(&mut self, format: UpdateFormat) {
|
2020-10-31 23:10:15 +08:00
|
|
|
self.update_format = format;
|
|
|
|
}
|
|
|
|
|
2020-11-01 21:55:06 +08:00
|
|
|
pub fn enable_autogenerate_docids(&mut self) {
|
2020-11-01 04:46:55 +08:00
|
|
|
self.autogenerate_docids = true;
|
|
|
|
}
|
|
|
|
|
2020-11-01 21:55:06 +08:00
|
|
|
pub fn disable_autogenerate_docids(&mut self) {
|
2020-11-01 04:46:55 +08:00
|
|
|
self.autogenerate_docids = false;
|
|
|
|
}
|
|
|
|
|
2021-06-14 22:46:19 +08:00
|
|
|
pub fn execute<R, F>(self, reader: R, progress_callback: F) -> Result<DocumentAdditionResult>
|
2020-10-27 03:18:10 +08:00
|
|
|
where
|
|
|
|
R: io::Read,
|
2020-12-22 23:21:07 +08:00
|
|
|
F: Fn(UpdateIndexingStep, u64) + Sync,
|
2020-10-27 03:18:10 +08:00
|
|
|
{
|
2021-05-07 00:14:16 +08:00
|
|
|
let mut reader = BufReader::new(reader);
|
|
|
|
reader.fill_buf()?;
|
|
|
|
|
2021-05-07 03:16:40 +08:00
|
|
|
// Early return when there is no document to add
|
2021-05-07 00:14:16 +08:00
|
|
|
if reader.buffer().is_empty() {
|
2021-06-17 00:33:33 +08:00
|
|
|
return Ok(DocumentAdditionResult { nb_documents: 0 });
|
2021-05-07 00:14:16 +08:00
|
|
|
}
|
|
|
|
|
2021-03-12 01:42:21 +08:00
|
|
|
self.index.set_updated_at(self.wtxn, &Utc::now())?;
|
2020-11-03 20:20:11 +08:00
|
|
|
let before_transform = Instant::now();
|
2020-12-22 23:21:07 +08:00
|
|
|
let update_id = self.update_id;
|
|
|
|
let progress_callback = |step| progress_callback(step, update_id);
|
2020-10-27 03:18:10 +08:00
|
|
|
|
|
|
|
let transform = Transform {
|
|
|
|
rtxn: &self.wtxn,
|
|
|
|
index: self.index,
|
2020-11-11 19:39:09 +08:00
|
|
|
log_every_n: self.log_every_n,
|
2020-10-27 03:18:10 +08:00
|
|
|
chunk_compression_type: self.chunk_compression_type,
|
|
|
|
chunk_compression_level: self.chunk_compression_level,
|
|
|
|
chunk_fusing_shrink_size: self.chunk_fusing_shrink_size,
|
|
|
|
max_nb_chunks: self.max_nb_chunks,
|
|
|
|
max_memory: self.max_memory,
|
|
|
|
index_documents_method: self.update_method,
|
2020-11-01 04:46:55 +08:00
|
|
|
autogenerate_docids: self.autogenerate_docids,
|
2020-10-27 03:18:10 +08:00
|
|
|
};
|
|
|
|
|
2020-10-31 23:10:15 +08:00
|
|
|
let output = match self.update_format {
|
2020-12-01 21:25:17 +08:00
|
|
|
UpdateFormat::Csv => transform.output_from_csv(reader, &progress_callback)?,
|
|
|
|
UpdateFormat::Json => transform.output_from_json(reader, &progress_callback)?,
|
2021-06-17 00:33:33 +08:00
|
|
|
UpdateFormat::JsonStream => {
|
|
|
|
transform.output_from_json_stream(reader, &progress_callback)?
|
|
|
|
}
|
2020-10-31 23:10:15 +08:00
|
|
|
};
|
|
|
|
|
2020-12-31 01:43:50 +08:00
|
|
|
let nb_documents = output.documents_count;
|
|
|
|
|
2020-11-03 20:20:11 +08:00
|
|
|
info!("Update transformed in {:.02?}", before_transform.elapsed());
|
|
|
|
|
2020-12-31 01:43:50 +08:00
|
|
|
self.execute_raw(output, progress_callback)?;
|
|
|
|
Ok(DocumentAdditionResult { nb_documents })
|
2020-11-03 20:20:11 +08:00
|
|
|
}
|
|
|
|
|
2021-06-14 22:46:19 +08:00
|
|
|
pub fn execute_raw<F>(self, output: TransformOutput, progress_callback: F) -> Result<()>
|
2020-11-03 20:20:11 +08:00
|
|
|
where
|
2021-06-17 00:33:33 +08:00
|
|
|
F: Fn(UpdateIndexingStep) + Sync,
|
2020-11-03 20:20:11 +08:00
|
|
|
{
|
|
|
|
let before_indexing = Instant::now();
|
|
|
|
|
2020-10-27 03:18:10 +08:00
|
|
|
let TransformOutput {
|
2020-10-31 19:54:43 +08:00
|
|
|
primary_key,
|
2020-10-27 03:18:10 +08:00
|
|
|
fields_ids_map,
|
2021-06-17 21:16:20 +08:00
|
|
|
field_distribution,
|
2020-11-22 18:54:04 +08:00
|
|
|
external_documents_ids,
|
2020-10-27 03:18:10 +08:00
|
|
|
new_documents_ids,
|
|
|
|
replaced_documents_ids,
|
|
|
|
documents_count,
|
|
|
|
documents_file,
|
2020-10-31 23:10:15 +08:00
|
|
|
} = output;
|
2020-10-27 03:18:10 +08:00
|
|
|
|
2021-07-27 22:24:21 +08: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)?;
|
|
|
|
|
2020-10-27 03:18:10 +08: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() {
|
|
|
|
let update_builder = UpdateBuilder {
|
|
|
|
log_every_n: self.log_every_n,
|
|
|
|
max_nb_chunks: self.max_nb_chunks,
|
|
|
|
max_memory: self.max_memory,
|
|
|
|
linked_hash_map_size: self.linked_hash_map_size,
|
|
|
|
chunk_compression_type: self.chunk_compression_type,
|
|
|
|
chunk_compression_level: self.chunk_compression_level,
|
|
|
|
chunk_fusing_shrink_size: self.chunk_fusing_shrink_size,
|
2020-11-03 02:11:22 +08:00
|
|
|
thread_pool: self.thread_pool,
|
2020-12-22 23:21:07 +08:00
|
|
|
update_id: self.update_id,
|
2020-10-27 03:18:10 +08:00
|
|
|
};
|
|
|
|
let mut deletion_builder = update_builder.delete_documents(self.wtxn, self.index)?;
|
2020-11-19 18:18:52 +08:00
|
|
|
debug!("documents to delete {:?}", replaced_documents_ids);
|
2020-10-27 03:18:10 +08:00
|
|
|
deletion_builder.delete_documents(&replaced_documents_ids);
|
2020-11-19 18:18:52 +08:00
|
|
|
let deleted_documents_count = deletion_builder.execute()?;
|
|
|
|
debug!("{} documents actually deleted", deleted_documents_count);
|
2020-10-27 03:18:10 +08:00
|
|
|
}
|
|
|
|
|
2021-06-14 22:46:19 +08:00
|
|
|
if documents_count == 0 {
|
|
|
|
return Ok(());
|
|
|
|
}
|
2020-10-31 23:10:15 +08:00
|
|
|
|
2021-06-14 22:46:19 +08:00
|
|
|
let bytes = unsafe { Mmap::map(&documents_file)? };
|
|
|
|
let documents = grenad::Reader::new(bytes.as_bytes()).unwrap();
|
2020-10-27 03:18:10 +08:00
|
|
|
|
|
|
|
// The enum which indicates the type of the readers
|
|
|
|
// merges that are potentially done on different threads.
|
|
|
|
enum DatabaseType {
|
|
|
|
Main,
|
|
|
|
WordDocids,
|
2021-03-12 00:23:46 +08:00
|
|
|
WordLevel0PositionDocids,
|
2021-05-27 21:27:41 +08:00
|
|
|
FieldIdWordCountDocids,
|
2021-04-28 23:58:16 +08:00
|
|
|
FacetLevel0NumbersDocids,
|
2020-10-27 03:18:10 +08:00
|
|
|
}
|
|
|
|
|
2021-01-21 00:27:43 +08:00
|
|
|
let faceted_fields = self.index.faceted_fields_ids(self.wtxn)?;
|
|
|
|
let searchable_fields: HashSet<_> = match self.index.searchable_fields_ids(self.wtxn)? {
|
2020-11-03 20:42:29 +08:00
|
|
|
Some(fields) => fields.iter().copied().collect(),
|
|
|
|
None => fields_ids_map.iter().map(|(id, _name)| id).collect(),
|
|
|
|
};
|
|
|
|
|
2021-03-30 01:15:47 +08:00
|
|
|
let stop_words = self.index.stop_words(self.wtxn)?;
|
|
|
|
let stop_words = stop_words.as_ref();
|
2020-10-27 03:18:10 +08:00
|
|
|
let linked_hash_map_size = self.linked_hash_map_size;
|
|
|
|
let max_nb_chunks = self.max_nb_chunks;
|
|
|
|
let max_memory = self.max_memory;
|
|
|
|
let chunk_compression_type = self.chunk_compression_type;
|
|
|
|
let chunk_compression_level = self.chunk_compression_level;
|
|
|
|
let log_every_n = self.log_every_n;
|
|
|
|
let chunk_fusing_shrink_size = self.chunk_fusing_shrink_size;
|
|
|
|
|
2020-11-03 02:11:22 +08:00
|
|
|
let backup_pool;
|
|
|
|
let pool = match self.thread_pool {
|
|
|
|
Some(pool) => pool,
|
|
|
|
None => {
|
|
|
|
// We initialize a bakcup pool with the default
|
|
|
|
// settings if none have already been set.
|
|
|
|
backup_pool = rayon::ThreadPoolBuilder::new().build()?;
|
|
|
|
&backup_pool
|
2021-06-17 00:33:33 +08:00
|
|
|
}
|
2020-11-03 02:11:22 +08:00
|
|
|
};
|
2020-10-27 03:18:10 +08:00
|
|
|
|
2020-11-11 18:25:31 +08:00
|
|
|
let readers = pool.install(|| {
|
2020-10-27 03:18:10 +08:00
|
|
|
let num_threads = rayon::current_num_threads();
|
|
|
|
let max_memory_by_job = max_memory.map(|mm| mm / num_threads);
|
|
|
|
|
|
|
|
let readers = rayon::iter::repeatn(documents, num_threads)
|
|
|
|
.enumerate()
|
|
|
|
.map(|(i, documents)| {
|
|
|
|
let store = Store::new(
|
2020-11-03 20:42:29 +08:00
|
|
|
searchable_fields.clone(),
|
2020-11-12 00:33:05 +08:00
|
|
|
faceted_fields.clone(),
|
2020-10-27 03:18:10 +08:00
|
|
|
linked_hash_map_size,
|
|
|
|
max_nb_chunks,
|
|
|
|
max_memory_by_job,
|
|
|
|
chunk_compression_type,
|
|
|
|
chunk_compression_level,
|
|
|
|
chunk_fusing_shrink_size,
|
2021-03-30 01:15:47 +08:00
|
|
|
stop_words,
|
2020-10-27 03:18:10 +08:00
|
|
|
)?;
|
|
|
|
store.index(
|
|
|
|
documents,
|
|
|
|
documents_count,
|
|
|
|
i,
|
|
|
|
num_threads,
|
|
|
|
log_every_n,
|
|
|
|
&progress_callback,
|
|
|
|
)
|
|
|
|
})
|
2021-06-14 22:46:19 +08:00
|
|
|
.collect::<StdResult<Vec<_>, _>>()?;
|
2020-10-27 03:18:10 +08:00
|
|
|
|
|
|
|
let mut main_readers = Vec::with_capacity(readers.len());
|
|
|
|
let mut word_docids_readers = Vec::with_capacity(readers.len());
|
|
|
|
let mut docid_word_positions_readers = Vec::with_capacity(readers.len());
|
|
|
|
let mut words_pairs_proximities_docids_readers = Vec::with_capacity(readers.len());
|
2021-03-12 00:23:46 +08:00
|
|
|
let mut word_level_position_docids_readers = Vec::with_capacity(readers.len());
|
2021-05-27 21:27:41 +08:00
|
|
|
let mut field_id_word_count_docids_readers = Vec::with_capacity(readers.len());
|
2021-04-28 23:58:16 +08:00
|
|
|
let mut facet_field_numbers_docids_readers = Vec::with_capacity(readers.len());
|
|
|
|
let mut facet_field_strings_docids_readers = Vec::with_capacity(readers.len());
|
|
|
|
let mut field_id_docid_facet_numbers_readers = Vec::with_capacity(readers.len());
|
|
|
|
let mut field_id_docid_facet_strings_readers = Vec::with_capacity(readers.len());
|
2020-10-27 03:18:10 +08:00
|
|
|
let mut documents_readers = Vec::with_capacity(readers.len());
|
|
|
|
readers.into_iter().for_each(|readers| {
|
2020-11-13 21:49:48 +08:00
|
|
|
let Readers {
|
|
|
|
main,
|
|
|
|
word_docids,
|
|
|
|
docid_word_positions,
|
|
|
|
words_pairs_proximities_docids,
|
2021-03-12 00:23:46 +08:00
|
|
|
word_level_position_docids,
|
2021-05-27 21:27:41 +08:00
|
|
|
field_id_word_count_docids,
|
2021-04-28 23:58:16 +08:00
|
|
|
facet_field_numbers_docids,
|
|
|
|
facet_field_strings_docids,
|
|
|
|
field_id_docid_facet_numbers,
|
|
|
|
field_id_docid_facet_strings,
|
|
|
|
documents,
|
2020-11-13 21:49:48 +08:00
|
|
|
} = readers;
|
|
|
|
main_readers.push(main);
|
|
|
|
word_docids_readers.push(word_docids);
|
|
|
|
docid_word_positions_readers.push(docid_word_positions);
|
|
|
|
words_pairs_proximities_docids_readers.push(words_pairs_proximities_docids);
|
2021-03-12 00:23:46 +08:00
|
|
|
word_level_position_docids_readers.push(word_level_position_docids);
|
2021-05-27 21:27:41 +08:00
|
|
|
field_id_word_count_docids_readers.push(field_id_word_count_docids);
|
2021-04-28 23:58:16 +08:00
|
|
|
facet_field_numbers_docids_readers.push(facet_field_numbers_docids);
|
|
|
|
facet_field_strings_docids_readers.push(facet_field_strings_docids);
|
|
|
|
field_id_docid_facet_numbers_readers.push(field_id_docid_facet_numbers);
|
|
|
|
field_id_docid_facet_strings_readers.push(field_id_docid_facet_strings);
|
2020-11-13 21:49:48 +08:00
|
|
|
documents_readers.push(documents);
|
2020-10-27 03:18:10 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
// This is the function that merge the readers
|
|
|
|
// by using the given merge function.
|
|
|
|
let merge_readers = move |readers, merge| {
|
|
|
|
let mut writer = tempfile::tempfile().and_then(|f| {
|
|
|
|
create_writer(chunk_compression_type, chunk_compression_level, f)
|
|
|
|
})?;
|
|
|
|
let merger = merge_readers(readers, merge);
|
|
|
|
merger.write_into(&mut writer)?;
|
|
|
|
writer_into_reader(writer, chunk_fusing_shrink_size)
|
|
|
|
};
|
|
|
|
|
|
|
|
// The enum and the channel which is used to transfert
|
|
|
|
// the readers merges potentially done on another thread.
|
2020-11-11 18:25:31 +08:00
|
|
|
let (sender, receiver) = sync_channel(2);
|
2020-10-27 03:18:10 +08:00
|
|
|
|
|
|
|
debug!("Merging the main, word docids and words pairs proximity docids in parallel...");
|
|
|
|
rayon::spawn(move || {
|
|
|
|
vec![
|
2021-06-14 22:46:19 +08:00
|
|
|
(DatabaseType::Main, main_readers, fst_merge as MergeFn<_>),
|
2021-06-09 18:17:11 +08:00
|
|
|
(DatabaseType::WordDocids, word_docids_readers, roaring_bitmap_merge),
|
2020-11-13 21:49:48 +08:00
|
|
|
(
|
2021-04-28 23:58:16 +08:00
|
|
|
DatabaseType::FacetLevel0NumbersDocids,
|
|
|
|
facet_field_numbers_docids_readers,
|
2021-06-09 18:17:11 +08:00
|
|
|
cbo_roaring_bitmap_merge,
|
2020-11-13 21:49:48 +08:00
|
|
|
),
|
2021-03-12 00:23:46 +08:00
|
|
|
(
|
|
|
|
DatabaseType::WordLevel0PositionDocids,
|
|
|
|
word_level_position_docids_readers,
|
2021-06-09 18:17:11 +08:00
|
|
|
cbo_roaring_bitmap_merge,
|
2021-03-12 00:23:46 +08:00
|
|
|
),
|
2021-05-27 21:27:41 +08:00
|
|
|
(
|
|
|
|
DatabaseType::FieldIdWordCountDocids,
|
|
|
|
field_id_word_count_docids_readers,
|
2021-06-09 18:17:11 +08:00
|
|
|
cbo_roaring_bitmap_merge,
|
2021-05-27 21:27:41 +08:00
|
|
|
),
|
2020-10-27 03:18:10 +08:00
|
|
|
]
|
|
|
|
.into_par_iter()
|
|
|
|
.for_each(|(dbtype, readers, merge)| {
|
|
|
|
let result = merge_readers(readers, merge);
|
|
|
|
if let Err(e) = sender.send((dbtype, result)) {
|
|
|
|
error!("sender error: {}", e);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2020-11-11 18:25:31 +08:00
|
|
|
Ok((
|
|
|
|
receiver,
|
|
|
|
docid_word_positions_readers,
|
|
|
|
documents_readers,
|
|
|
|
words_pairs_proximities_docids_readers,
|
2021-04-28 23:58:16 +08:00
|
|
|
facet_field_strings_docids_readers,
|
|
|
|
field_id_docid_facet_numbers_readers,
|
|
|
|
field_id_docid_facet_strings_readers,
|
2021-06-14 22:46:19 +08:00
|
|
|
)) as Result<_>
|
2020-10-27 03:18:10 +08:00
|
|
|
})?;
|
|
|
|
|
2020-11-11 18:25:31 +08:00
|
|
|
let (
|
|
|
|
receiver,
|
|
|
|
docid_word_positions_readers,
|
|
|
|
documents_readers,
|
|
|
|
words_pairs_proximities_docids_readers,
|
2021-04-28 23:58:16 +08:00
|
|
|
facet_field_strings_docids_readers,
|
|
|
|
field_id_docid_facet_numbers_readers,
|
|
|
|
field_id_docid_facet_strings_readers,
|
2020-11-11 18:25:31 +08:00
|
|
|
) = readers;
|
|
|
|
|
2020-10-27 03:18:10 +08:00
|
|
|
let mut documents_ids = self.index.documents_ids(self.wtxn)?;
|
|
|
|
let contains_documents = !documents_ids.is_empty();
|
2021-06-17 00:33:33 +08:00
|
|
|
let write_method =
|
|
|
|
if contains_documents { WriteMethod::GetMergePut } else { WriteMethod::Append };
|
2020-10-27 03:18:10 +08:00
|
|
|
|
2020-10-28 18:17:36 +08:00
|
|
|
debug!("Writing using the write method: {:?}", write_method);
|
|
|
|
|
2021-06-17 21:16:20 +08:00
|
|
|
// We write the field distribution into the main database
|
|
|
|
self.index.put_field_distribution(self.wtxn, &field_distribution)?;
|
2021-03-31 23:14:23 +08:00
|
|
|
|
2020-10-31 19:54:43 +08:00
|
|
|
// We write the primary key field id into the main database
|
2021-01-21 00:27:43 +08:00
|
|
|
self.index.put_primary_key(self.wtxn, &primary_key)?;
|
2020-10-31 19:54:43 +08:00
|
|
|
|
2020-11-22 18:54:04 +08:00
|
|
|
// We write the external documents ids into the main database.
|
|
|
|
self.index.put_external_documents_ids(self.wtxn, &external_documents_ids)?;
|
2020-10-27 03:18:10 +08:00
|
|
|
|
|
|
|
// We merge the new documents ids with the existing ones.
|
2021-06-30 20:12:56 +08:00
|
|
|
documents_ids |= new_documents_ids;
|
|
|
|
documents_ids |= replaced_documents_ids;
|
2020-10-27 03:18:10 +08:00
|
|
|
self.index.put_documents_ids(self.wtxn, &documents_ids)?;
|
|
|
|
|
2020-11-11 19:39:09 +08:00
|
|
|
let mut database_count = 0;
|
2021-05-27 21:27:41 +08:00
|
|
|
let total_databases = 11;
|
2020-11-13 21:49:48 +08:00
|
|
|
|
2020-11-11 19:39:09 +08:00
|
|
|
progress_callback(UpdateIndexingStep::MergeDataIntoFinalDatabase {
|
|
|
|
databases_seen: 0,
|
2020-11-13 21:49:48 +08:00
|
|
|
total_databases,
|
2020-11-11 19:39:09 +08:00
|
|
|
});
|
|
|
|
|
2021-06-09 20:49:06 +08:00
|
|
|
debug!("Inserting the docid word positions into LMDB on disk...");
|
2020-10-27 03:18:10 +08:00
|
|
|
merge_into_lmdb_database(
|
|
|
|
self.wtxn,
|
|
|
|
*self.index.docid_word_positions.as_polymorph(),
|
|
|
|
docid_word_positions_readers,
|
2021-06-09 20:49:06 +08:00
|
|
|
keep_first,
|
2021-06-17 00:33:33 +08:00
|
|
|
write_method,
|
2020-10-27 03:18:10 +08:00
|
|
|
)?;
|
|
|
|
|
2020-11-11 19:39:09 +08:00
|
|
|
database_count += 1;
|
|
|
|
progress_callback(UpdateIndexingStep::MergeDataIntoFinalDatabase {
|
|
|
|
databases_seen: database_count,
|
2020-11-13 21:49:48 +08:00
|
|
|
total_databases,
|
2020-11-11 19:39:09 +08:00
|
|
|
});
|
|
|
|
|
2021-06-09 20:45:56 +08:00
|
|
|
debug!("Inserting the documents into LMDB on disk...");
|
2020-10-27 03:18:10 +08:00
|
|
|
merge_into_lmdb_database(
|
|
|
|
self.wtxn,
|
|
|
|
*self.index.documents.as_polymorph(),
|
|
|
|
documents_readers,
|
2021-06-09 20:45:56 +08:00
|
|
|
keep_first,
|
2021-06-17 00:33:33 +08:00
|
|
|
write_method,
|
2020-10-27 03:18:10 +08:00
|
|
|
)?;
|
|
|
|
|
2020-11-11 19:39:09 +08:00
|
|
|
database_count += 1;
|
|
|
|
progress_callback(UpdateIndexingStep::MergeDataIntoFinalDatabase {
|
|
|
|
databases_seen: database_count,
|
2020-11-13 21:49:48 +08:00
|
|
|
total_databases,
|
2020-11-11 19:39:09 +08:00
|
|
|
});
|
|
|
|
|
2021-05-03 21:58:47 +08:00
|
|
|
debug!("Writing the facet id string docids into LMDB on disk...");
|
|
|
|
merge_into_lmdb_database(
|
|
|
|
self.wtxn,
|
|
|
|
*self.index.facet_id_string_docids.as_polymorph(),
|
|
|
|
facet_field_strings_docids_readers,
|
2021-07-17 18:50:01 +08:00
|
|
|
tuple_string_cbo_roaring_bitmap_merge,
|
2021-05-03 21:58:47 +08:00
|
|
|
write_method,
|
|
|
|
)?;
|
|
|
|
|
|
|
|
database_count += 1;
|
|
|
|
progress_callback(UpdateIndexingStep::MergeDataIntoFinalDatabase {
|
|
|
|
databases_seen: database_count,
|
|
|
|
total_databases,
|
|
|
|
});
|
|
|
|
|
2021-04-28 23:58:16 +08:00
|
|
|
debug!("Writing the field id docid facet numbers into LMDB on disk...");
|
2020-12-03 01:31:41 +08:00
|
|
|
merge_into_lmdb_database(
|
|
|
|
self.wtxn,
|
2021-04-28 23:58:16 +08:00
|
|
|
*self.index.field_id_docid_facet_f64s.as_polymorph(),
|
|
|
|
field_id_docid_facet_numbers_readers,
|
2021-06-09 18:17:11 +08:00
|
|
|
keep_first,
|
2021-04-28 23:58:16 +08:00
|
|
|
write_method,
|
|
|
|
)?;
|
|
|
|
|
|
|
|
database_count += 1;
|
|
|
|
progress_callback(UpdateIndexingStep::MergeDataIntoFinalDatabase {
|
|
|
|
databases_seen: database_count,
|
|
|
|
total_databases,
|
|
|
|
});
|
|
|
|
|
|
|
|
debug!("Writing the field id docid facet strings into LMDB on disk...");
|
|
|
|
merge_into_lmdb_database(
|
|
|
|
self.wtxn,
|
|
|
|
*self.index.field_id_docid_facet_strings.as_polymorph(),
|
|
|
|
field_id_docid_facet_strings_readers,
|
2021-06-09 18:17:11 +08:00
|
|
|
keep_first,
|
2020-12-03 01:31:41 +08:00
|
|
|
write_method,
|
|
|
|
)?;
|
|
|
|
|
|
|
|
database_count += 1;
|
|
|
|
progress_callback(UpdateIndexingStep::MergeDataIntoFinalDatabase {
|
|
|
|
databases_seen: database_count,
|
|
|
|
total_databases,
|
|
|
|
});
|
|
|
|
|
2020-11-11 18:25:31 +08:00
|
|
|
debug!("Writing the words pairs proximities docids into LMDB on disk...");
|
|
|
|
merge_into_lmdb_database(
|
|
|
|
self.wtxn,
|
|
|
|
*self.index.word_pair_proximity_docids.as_polymorph(),
|
|
|
|
words_pairs_proximities_docids_readers,
|
2021-06-09 18:17:11 +08:00
|
|
|
cbo_roaring_bitmap_merge,
|
2020-11-11 18:25:31 +08:00
|
|
|
write_method,
|
|
|
|
)?;
|
|
|
|
|
2020-11-11 19:39:09 +08:00
|
|
|
database_count += 1;
|
|
|
|
progress_callback(UpdateIndexingStep::MergeDataIntoFinalDatabase {
|
|
|
|
databases_seen: database_count,
|
2020-11-13 21:49:48 +08:00
|
|
|
total_databases,
|
2020-11-11 19:39:09 +08:00
|
|
|
});
|
|
|
|
|
2020-10-27 03:18:10 +08:00
|
|
|
for (db_type, result) in receiver {
|
|
|
|
let content = result?;
|
|
|
|
match db_type {
|
|
|
|
DatabaseType::Main => {
|
|
|
|
debug!("Writing the main elements into LMDB on disk...");
|
|
|
|
write_into_lmdb_database(
|
|
|
|
self.wtxn,
|
|
|
|
self.index.main,
|
|
|
|
content,
|
2021-06-09 18:17:11 +08:00
|
|
|
fst_merge,
|
2020-10-29 20:52:00 +08:00
|
|
|
WriteMethod::GetMergePut,
|
2020-10-27 03:18:10 +08:00
|
|
|
)?;
|
2021-06-17 00:33:33 +08:00
|
|
|
}
|
2020-10-27 03:18:10 +08:00
|
|
|
DatabaseType::WordDocids => {
|
|
|
|
debug!("Writing the words docids into LMDB on disk...");
|
|
|
|
let db = *self.index.word_docids.as_polymorph();
|
|
|
|
write_into_lmdb_database(
|
|
|
|
self.wtxn,
|
|
|
|
db,
|
|
|
|
content,
|
2021-06-09 18:17:11 +08:00
|
|
|
roaring_bitmap_merge,
|
2020-10-27 03:18:10 +08:00
|
|
|
write_method,
|
|
|
|
)?;
|
2021-06-17 00:33:33 +08:00
|
|
|
}
|
2021-04-28 23:58:16 +08:00
|
|
|
DatabaseType::FacetLevel0NumbersDocids => {
|
|
|
|
debug!("Writing the facet numbers docids into LMDB on disk...");
|
|
|
|
let db = *self.index.facet_id_f64_docids.as_polymorph();
|
2020-11-13 21:49:48 +08:00
|
|
|
write_into_lmdb_database(
|
|
|
|
self.wtxn,
|
|
|
|
db,
|
|
|
|
content,
|
2021-06-09 18:17:11 +08:00
|
|
|
cbo_roaring_bitmap_merge,
|
2020-11-13 21:49:48 +08:00
|
|
|
write_method,
|
|
|
|
)?;
|
2021-06-17 00:33:33 +08:00
|
|
|
}
|
2021-05-27 21:27:41 +08:00
|
|
|
DatabaseType::FieldIdWordCountDocids => {
|
|
|
|
debug!("Writing the field id word count docids into LMDB on disk...");
|
|
|
|
let db = *self.index.field_id_word_count_docids.as_polymorph();
|
|
|
|
write_into_lmdb_database(
|
|
|
|
self.wtxn,
|
|
|
|
db,
|
|
|
|
content,
|
2021-06-09 18:17:11 +08:00
|
|
|
cbo_roaring_bitmap_merge,
|
2021-05-27 21:27:41 +08:00
|
|
|
write_method,
|
|
|
|
)?;
|
2021-06-17 00:33:33 +08:00
|
|
|
}
|
2021-03-12 00:23:46 +08:00
|
|
|
DatabaseType::WordLevel0PositionDocids => {
|
|
|
|
debug!("Writing the word level 0 positions docids into LMDB on disk...");
|
|
|
|
let db = *self.index.word_level_position_docids.as_polymorph();
|
|
|
|
write_into_lmdb_database(
|
|
|
|
self.wtxn,
|
|
|
|
db,
|
|
|
|
content,
|
2021-06-09 18:17:11 +08:00
|
|
|
cbo_roaring_bitmap_merge,
|
2021-03-12 00:23:46 +08:00
|
|
|
write_method,
|
|
|
|
)?;
|
|
|
|
}
|
2020-10-27 03:18:10 +08:00
|
|
|
}
|
2020-11-11 19:39:09 +08:00
|
|
|
|
|
|
|
database_count += 1;
|
|
|
|
progress_callback(UpdateIndexingStep::MergeDataIntoFinalDatabase {
|
|
|
|
databases_seen: database_count,
|
2020-11-13 21:49:48 +08:00
|
|
|
total_databases,
|
2020-11-11 19:39:09 +08:00
|
|
|
});
|
2020-10-27 03:18:10 +08:00
|
|
|
}
|
|
|
|
|
2021-02-10 18:53:13 +08:00
|
|
|
// Run the facets update operation.
|
2020-12-22 23:21:07 +08:00
|
|
|
let mut builder = Facets::new(self.wtxn, self.index, self.update_id);
|
2020-11-18 04:19:25 +08:00
|
|
|
builder.chunk_compression_type = self.chunk_compression_type;
|
|
|
|
builder.chunk_compression_level = self.chunk_compression_level;
|
|
|
|
builder.chunk_fusing_shrink_size = self.chunk_fusing_shrink_size;
|
2020-11-28 19:43:43 +08:00
|
|
|
if let Some(value) = self.facet_level_group_size {
|
|
|
|
builder.level_group_size(value);
|
2020-11-18 04:19:25 +08:00
|
|
|
}
|
2020-11-28 19:43:43 +08:00
|
|
|
if let Some(value) = self.facet_min_level_size {
|
|
|
|
builder.min_level_size(value);
|
2020-11-18 23:29:07 +08:00
|
|
|
}
|
2020-11-18 04:19:25 +08:00
|
|
|
builder.execute()?;
|
2021-03-12 00:23:46 +08:00
|
|
|
|
2021-02-10 18:53:13 +08:00
|
|
|
// Run the words prefixes update operation.
|
2021-03-25 18:10:12 +08:00
|
|
|
let mut builder = WordsPrefixesFst::new(self.wtxn, self.index, self.update_id);
|
2021-02-10 18:53:13 +08:00
|
|
|
if let Some(value) = self.words_prefix_threshold {
|
|
|
|
builder.threshold(value);
|
|
|
|
}
|
|
|
|
if let Some(value) = self.max_prefix_length {
|
|
|
|
builder.max_prefix_length(value);
|
|
|
|
}
|
|
|
|
builder.execute()?;
|
|
|
|
|
2021-03-25 18:10:12 +08:00
|
|
|
// Run the word prefix docids update operation.
|
|
|
|
let mut builder = WordPrefixDocids::new(self.wtxn, self.index);
|
|
|
|
builder.chunk_compression_type = self.chunk_compression_type;
|
|
|
|
builder.chunk_compression_level = self.chunk_compression_level;
|
|
|
|
builder.chunk_fusing_shrink_size = self.chunk_fusing_shrink_size;
|
|
|
|
builder.max_nb_chunks = self.max_nb_chunks;
|
|
|
|
builder.max_memory = self.max_memory;
|
|
|
|
builder.execute()?;
|
|
|
|
|
|
|
|
// Run the word prefix pair proximity docids update operation.
|
|
|
|
let mut builder = WordPrefixPairProximityDocids::new(self.wtxn, self.index);
|
|
|
|
builder.chunk_compression_type = self.chunk_compression_type;
|
|
|
|
builder.chunk_compression_level = self.chunk_compression_level;
|
|
|
|
builder.chunk_fusing_shrink_size = self.chunk_fusing_shrink_size;
|
|
|
|
builder.max_nb_chunks = self.max_nb_chunks;
|
|
|
|
builder.max_memory = self.max_memory;
|
|
|
|
builder.execute()?;
|
|
|
|
|
2021-03-17 20:55:24 +08:00
|
|
|
// Run the words level positions update operation.
|
2021-03-25 18:10:12 +08:00
|
|
|
let mut builder = WordsLevelPositions::new(self.wtxn, self.index);
|
2021-03-17 20:55:24 +08:00
|
|
|
builder.chunk_compression_type = self.chunk_compression_type;
|
|
|
|
builder.chunk_compression_level = self.chunk_compression_level;
|
|
|
|
builder.chunk_fusing_shrink_size = self.chunk_fusing_shrink_size;
|
|
|
|
if let Some(value) = self.words_positions_level_group_size {
|
|
|
|
builder.level_group_size(value);
|
|
|
|
}
|
|
|
|
if let Some(value) = self.words_positions_min_level_size {
|
|
|
|
builder.min_level_size(value);
|
|
|
|
}
|
|
|
|
builder.execute()?;
|
|
|
|
|
2020-11-13 21:49:48 +08:00
|
|
|
debug_assert_eq!(database_count, total_databases);
|
2020-11-11 19:39:09 +08:00
|
|
|
|
2020-11-03 20:20:11 +08:00
|
|
|
info!("Transform output indexed in {:.02?}", before_indexing.elapsed());
|
2020-10-27 03:18:10 +08:00
|
|
|
|
|
|
|
Ok(())
|
2020-10-26 18:02:44 +08:00
|
|
|
}
|
|
|
|
}
|
2020-10-30 19:14:25 +08:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2021-06-24 00:35:44 +08:00
|
|
|
use std::io::Cursor;
|
|
|
|
|
2021-07-06 17:40:45 +08:00
|
|
|
use big_s::S;
|
2020-10-30 19:14:25 +08:00
|
|
|
use heed::EnvOpenOptions;
|
|
|
|
|
2021-06-17 00:33:33 +08:00
|
|
|
use super::*;
|
2021-06-30 17:23:29 +08:00
|
|
|
use crate::update::DeleteDocuments;
|
2021-07-06 17:40:45 +08:00
|
|
|
use crate::HashMap;
|
2021-06-17 00:33:33 +08:00
|
|
|
|
2020-10-30 19:14:25 +08:00
|
|
|
#[test]
|
2020-10-30 20:46:56 +08:00
|
|
|
fn simple_document_replacement() {
|
2020-10-30 19:14:25 +08: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();
|
|
|
|
let content = &b"id,name\n1,kevin\n2,kevina\n3,benoit\n"[..];
|
2020-12-22 23:21:07 +08:00
|
|
|
let mut builder = IndexDocuments::new(&mut wtxn, &index, 0);
|
2020-10-31 23:10:15 +08:00
|
|
|
builder.update_format(UpdateFormat::Csv);
|
2020-12-22 23:21:07 +08:00
|
|
|
builder.execute(content, |_, _| ()).unwrap();
|
2020-10-30 19:14:25 +08: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();
|
|
|
|
let content = &b"id,name\n1,updated kevin\n"[..];
|
2020-12-22 23:21:07 +08:00
|
|
|
let mut builder = IndexDocuments::new(&mut wtxn, &index, 1);
|
2020-10-31 23:10:15 +08:00
|
|
|
builder.update_format(UpdateFormat::Csv);
|
2020-12-22 23:21:07 +08:00
|
|
|
builder.execute(content, |_, _| ()).unwrap();
|
2020-10-30 19:14:25 +08:00
|
|
|
wtxn.commit().unwrap();
|
|
|
|
|
2020-10-30 20:46:56 +08:00
|
|
|
// Check that there is **always** 3 documents.
|
2020-10-30 19:14:25 +08: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();
|
|
|
|
let content = &b"id,name\n1,updated second kevin\n2,updated kevina\n3,updated benoit\n"[..];
|
2020-12-22 23:21:07 +08:00
|
|
|
let mut builder = IndexDocuments::new(&mut wtxn, &index, 2);
|
2020-10-31 23:10:15 +08:00
|
|
|
builder.update_format(UpdateFormat::Csv);
|
2020-12-22 23:21:07 +08:00
|
|
|
builder.execute(content, |_, _| ()).unwrap();
|
2020-10-30 19:14:25 +08:00
|
|
|
wtxn.commit().unwrap();
|
|
|
|
|
2020-10-30 20:46:56 +08:00
|
|
|
// Check that there is **always** 3 documents.
|
2020-10-30 19:14:25 +08:00
|
|
|
let rtxn = index.read_txn().unwrap();
|
|
|
|
let count = index.number_of_documents(&rtxn).unwrap();
|
|
|
|
assert_eq!(count, 3);
|
|
|
|
drop(rtxn);
|
|
|
|
}
|
2020-10-30 20:46:56 +08: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();
|
|
|
|
let content = &b"id,name\n1,kevin\n1,kevina\n1,benoit\n"[..];
|
2020-12-22 23:21:07 +08:00
|
|
|
let mut builder = IndexDocuments::new(&mut wtxn, &index, 0);
|
2020-10-31 23:10:15 +08:00
|
|
|
builder.update_format(UpdateFormat::Csv);
|
2020-10-30 20:46:56 +08:00
|
|
|
builder.index_documents_method(IndexDocumentsMethod::UpdateDocuments);
|
2020-12-22 23:21:07 +08:00
|
|
|
builder.execute(content, |_, _| ()).unwrap();
|
2020-10-30 20:46:56 +08: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();
|
|
|
|
assert_eq!(doc_iter.next(), Some((0, &br#""1""#[..])));
|
|
|
|
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();
|
|
|
|
let content = &b"id,age\n1,25\n"[..];
|
2020-12-22 23:21:07 +08:00
|
|
|
let mut builder = IndexDocuments::new(&mut wtxn, &index, 1);
|
2020-10-31 23:10:15 +08:00
|
|
|
builder.update_format(UpdateFormat::Csv);
|
2020-10-30 20:46:56 +08:00
|
|
|
builder.index_documents_method(IndexDocumentsMethod::UpdateDocuments);
|
2020-12-22 23:21:07 +08:00
|
|
|
builder.execute(content, |_, _| ()).unwrap();
|
2020-10-30 20:46:56 +08: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.
|
|
|
|
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();
|
|
|
|
assert_eq!(doc_iter.next(), Some((0, &br#""1""#[..])));
|
|
|
|
assert_eq!(doc_iter.next(), Some((1, &br#""benoit""#[..])));
|
|
|
|
assert_eq!(doc_iter.next(), Some((2, &br#""25""#[..])));
|
|
|
|
assert_eq!(doc_iter.next(), None);
|
|
|
|
drop(rtxn);
|
|
|
|
}
|
2020-10-31 19:54:43 +08:00
|
|
|
|
2020-11-01 04:46:55 +08:00
|
|
|
#[test]
|
|
|
|
fn not_auto_generated_csv_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();
|
|
|
|
let content = &b"name\nkevin\nkevina\nbenoit\n"[..];
|
2020-12-22 23:21:07 +08:00
|
|
|
let mut builder = IndexDocuments::new(&mut wtxn, &index, 0);
|
2020-11-01 04:46:55 +08:00
|
|
|
builder.update_format(UpdateFormat::Csv);
|
2020-12-22 23:21:07 +08:00
|
|
|
assert!(builder.execute(content, |_, _| ()).is_err());
|
2020-11-01 04:46:55 +08: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);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn not_auto_generated_json_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 and 2 without ids.
|
|
|
|
let mut wtxn = index.write_txn().unwrap();
|
|
|
|
let content = &br#"[
|
|
|
|
{ "name": "kevina", "id": 21 },
|
|
|
|
{ "name": "kevin" },
|
|
|
|
{ "name": "benoit" }
|
|
|
|
]"#[..];
|
2020-12-22 23:21:07 +08:00
|
|
|
let mut builder = IndexDocuments::new(&mut wtxn, &index, 0);
|
2020-11-01 04:46:55 +08:00
|
|
|
builder.update_format(UpdateFormat::Json);
|
2020-12-22 23:21:07 +08:00
|
|
|
assert!(builder.execute(content, |_, _| ()).is_err());
|
2020-11-01 04:46:55 +08: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 19:54:43 +08: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();
|
|
|
|
let content = &b"name\nkevin\nkevina\nbenoit\n"[..];
|
2020-12-22 23:21:07 +08:00
|
|
|
let mut builder = IndexDocuments::new(&mut wtxn, &index, 0);
|
2021-05-01 02:34:29 +08:00
|
|
|
builder.enable_autogenerate_docids();
|
2020-10-31 23:10:15 +08:00
|
|
|
builder.update_format(UpdateFormat::Csv);
|
2020-12-22 23:21:07 +08:00
|
|
|
builder.execute(content, |_, _| ()).unwrap();
|
2020-10-31 19:54:43 +08: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();
|
|
|
|
let content = format!("id,name\n{},updated kevin", kevin_uuid);
|
2020-12-22 23:21:07 +08:00
|
|
|
let mut builder = IndexDocuments::new(&mut wtxn, &index, 1);
|
2020-10-31 23:10:15 +08:00
|
|
|
builder.update_format(UpdateFormat::Csv);
|
2020-12-22 23:21:07 +08:00
|
|
|
builder.execute(content.as_bytes(), |_, _| ()).unwrap();
|
2020-10-31 19:54:43 +08: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 19:14:44 +08:00
|
|
|
|
|
|
|
let docs = index.documents(&rtxn, vec![0, 1, 2]).unwrap();
|
2021-06-17 00:33:33 +08:00
|
|
|
let (kevin_id, _) =
|
|
|
|
docs.iter().find(|(_, d)| d.get(0).unwrap() == br#""updated kevin""#).unwrap();
|
2020-11-01 19:14:44 +08:00
|
|
|
let (id, doc) = docs[*kevin_id as usize];
|
|
|
|
assert_eq!(id, *kevin_id);
|
|
|
|
|
|
|
|
// Check that this document is equal to the last
|
|
|
|
// one sent and that an UUID has been generated.
|
2020-11-01 23:43:12 +08:00
|
|
|
assert_eq!(doc.get(0), Some(&br#""updated kevin""#[..]));
|
2020-11-01 19:14:44 +08:00
|
|
|
// This is an UUID, it must be 36 bytes long plus the 2 surrounding string quotes (").
|
2021-03-31 23:14:23 +08:00
|
|
|
assert_eq!(doc.get(1).unwrap().len(), 36 + 2);
|
2020-10-31 19:54:43 +08: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();
|
|
|
|
let content = &b"id,name\n1,kevin\n2,kevina\n3,benoit\n"[..];
|
2020-12-22 23:21:07 +08:00
|
|
|
let mut builder = IndexDocuments::new(&mut wtxn, &index, 0);
|
2020-10-31 23:10:15 +08:00
|
|
|
builder.update_format(UpdateFormat::Csv);
|
2020-12-22 23:21:07 +08:00
|
|
|
builder.execute(content, |_, _| ()).unwrap();
|
2020-10-31 19:54:43 +08: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();
|
|
|
|
let content = &b"name\nnew kevin"[..];
|
2020-12-22 23:21:07 +08:00
|
|
|
let mut builder = IndexDocuments::new(&mut wtxn, &index, 1);
|
2020-10-31 23:10:15 +08:00
|
|
|
builder.update_format(UpdateFormat::Csv);
|
2020-12-22 23:21:07 +08:00
|
|
|
builder.execute(content, |_, _| ()).unwrap();
|
2020-10-31 19:54:43 +08: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 23:10:15 +08:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn empty_csv_update() {
|
|
|
|
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();
|
|
|
|
let content = &b"id,name\n"[..];
|
2020-12-22 23:21:07 +08:00
|
|
|
let mut builder = IndexDocuments::new(&mut wtxn, &index, 0);
|
2020-10-31 23:10:15 +08:00
|
|
|
builder.update_format(UpdateFormat::Csv);
|
2020-12-22 23:21:07 +08:00
|
|
|
builder.execute(content, |_, _| ()).unwrap();
|
2020-10-31 23:10:15 +08: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);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn json_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();
|
|
|
|
|
|
|
|
// First we send 3 documents with an id for only one of them.
|
|
|
|
let mut wtxn = index.write_txn().unwrap();
|
|
|
|
let content = &br#"[
|
|
|
|
{ "name": "kevin" },
|
2020-11-01 00:25:07 +08:00
|
|
|
{ "name": "kevina", "id": 21 },
|
2020-10-31 23:10:15 +08:00
|
|
|
{ "name": "benoit" }
|
|
|
|
]"#[..];
|
2020-12-22 23:21:07 +08:00
|
|
|
let mut builder = IndexDocuments::new(&mut wtxn, &index, 0);
|
2021-05-01 02:34:29 +08:00
|
|
|
builder.enable_autogenerate_docids();
|
2020-10-31 23:10:15 +08:00
|
|
|
builder.update_format(UpdateFormat::Json);
|
2020-12-22 23:21:07 +08:00
|
|
|
builder.execute(content, |_, _| ()).unwrap();
|
2020-10-31 23:10:15 +08: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);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn empty_json_update() {
|
|
|
|
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.
|
|
|
|
let mut wtxn = index.write_txn().unwrap();
|
|
|
|
let content = &b"[]"[..];
|
2020-12-22 23:21:07 +08:00
|
|
|
let mut builder = IndexDocuments::new(&mut wtxn, &index, 0);
|
2021-05-01 02:34:29 +08:00
|
|
|
builder.enable_autogenerate_docids();
|
2020-10-31 23:10:15 +08:00
|
|
|
builder.update_format(UpdateFormat::Json);
|
2020-12-22 23:21:07 +08:00
|
|
|
builder.execute(content, |_, _| ()).unwrap();
|
2020-10-31 23:10:15 +08: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 18:50:10 +08:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn json_stream_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();
|
|
|
|
|
|
|
|
// First we send 3 documents with an id for only one of them.
|
|
|
|
let mut wtxn = index.write_txn().unwrap();
|
|
|
|
let content = &br#"
|
|
|
|
{ "name": "kevin" }
|
|
|
|
{ "name": "kevina", "id": 21 }
|
|
|
|
{ "name": "benoit" }
|
|
|
|
"#[..];
|
2020-12-22 23:21:07 +08:00
|
|
|
let mut builder = IndexDocuments::new(&mut wtxn, &index, 0);
|
2021-05-01 02:34:29 +08:00
|
|
|
builder.enable_autogenerate_docids();
|
2020-11-01 18:50:10 +08:00
|
|
|
builder.update_format(UpdateFormat::JsonStream);
|
2020-12-22 23:21:07 +08:00
|
|
|
builder.execute(content, |_, _| ()).unwrap();
|
2020-11-01 18:50:10 +08: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);
|
|
|
|
}
|
2020-11-01 23:43:12 +08: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.
|
|
|
|
let content = &b"id,name\nbrume bleue,kevin\n"[..];
|
2020-12-22 23:21:07 +08:00
|
|
|
let mut builder = IndexDocuments::new(&mut wtxn, &index, 0);
|
2020-11-01 23:43:12 +08:00
|
|
|
builder.update_format(UpdateFormat::Csv);
|
2020-12-22 23:21:07 +08:00
|
|
|
assert!(builder.execute(content, |_, _| ()).is_err());
|
2020-11-01 23:43:12 +08: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.
|
|
|
|
let content = &b"id,name\n32,kevin\n"[..];
|
2020-12-22 23:21:07 +08:00
|
|
|
let mut builder = IndexDocuments::new(&mut wtxn, &index, 1);
|
2020-11-01 23:43:12 +08:00
|
|
|
builder.update_format(UpdateFormat::Csv);
|
2020-12-22 23:21:07 +08:00
|
|
|
builder.execute(content, |_, _| ()).unwrap();
|
2020-11-01 23:43:12 +08: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 23:15:07 +08:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn complex_json_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();
|
|
|
|
|
|
|
|
// First we send 3 documents with an id for only one of them.
|
|
|
|
let mut wtxn = index.write_txn().unwrap();
|
|
|
|
let content = &br#"[
|
|
|
|
{ "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" }] }
|
|
|
|
]"#[..];
|
2020-12-22 23:21:07 +08:00
|
|
|
let mut builder = IndexDocuments::new(&mut wtxn, &index, 0);
|
2020-11-06 23:15:07 +08:00
|
|
|
builder.update_format(UpdateFormat::Json);
|
2020-12-22 23:21:07 +08:00
|
|
|
builder.execute(content, |_, _| ()).unwrap();
|
2020-11-06 23:15:07 +08: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
|
|
|
|
let result = index.search(&rtxn).query(r#""wow""#).execute().unwrap();
|
|
|
|
assert_eq!(result.documents_ids, vec![2]);
|
|
|
|
|
|
|
|
drop(rtxn);
|
|
|
|
}
|
2021-06-24 00:35:44 +08: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();
|
|
|
|
let documents = &r#"[
|
|
|
|
{ "id": 2, "title": "Pride and Prejudice", "author": "Jane Austin", "genre": "romance", "price": 3.5 },
|
|
|
|
{ "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" },
|
|
|
|
{ "id": 42, "title": "The Hitchhiker's Guide to the Galaxy", "author": "Douglas Adams" }
|
|
|
|
]"#[..];
|
|
|
|
let mut builder = IndexDocuments::new(&mut wtxn, &index, 0);
|
|
|
|
builder.update_format(UpdateFormat::Json);
|
|
|
|
builder.index_documents_method(IndexDocumentsMethod::ReplaceDocuments);
|
|
|
|
builder.execute(Cursor::new(documents), |_, _| ()).unwrap();
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
|
|
|
|
let mut wtxn = index.write_txn().unwrap();
|
|
|
|
let mut builder = IndexDocuments::new(&mut wtxn, &index, 1);
|
|
|
|
builder.update_format(UpdateFormat::Json);
|
|
|
|
builder.index_documents_method(IndexDocumentsMethod::UpdateDocuments);
|
|
|
|
let documents = &r#"[
|
|
|
|
{
|
|
|
|
"id": 2,
|
|
|
|
"author": "J. Austen",
|
|
|
|
"date": "1813"
|
|
|
|
}
|
|
|
|
]"#[..];
|
|
|
|
|
|
|
|
builder.execute(Cursor::new(documents), |_, _| ()).unwrap();
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
}
|
2021-06-30 17:23:29 +08: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();
|
|
|
|
let content = &br#"[
|
|
|
|
{ "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" },
|
|
|
|
{ "objectId": 30, "title": "Hamlet" }
|
|
|
|
]"#[..];
|
|
|
|
let mut builder = IndexDocuments::new(&mut wtxn, &index, 0);
|
|
|
|
builder.update_format(UpdateFormat::Json);
|
|
|
|
builder.execute(content, |_, _| ()).unwrap();
|
|
|
|
|
|
|
|
assert_eq!(index.primary_key(&wtxn).unwrap(), Some("objectId"));
|
|
|
|
|
|
|
|
// Delete not all of the documents but some of them.
|
|
|
|
let mut builder = DeleteDocuments::new(&mut wtxn, &index, 1).unwrap();
|
|
|
|
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());
|
|
|
|
|
|
|
|
let content = &br#"[
|
|
|
|
{ "objectId": 30, "title": "Hamlet" }
|
|
|
|
]"#[..];
|
|
|
|
let mut builder = IndexDocuments::new(&mut wtxn, &index, 0);
|
|
|
|
builder.update_format(UpdateFormat::Json);
|
|
|
|
builder.execute(content, |_, _| ()).unwrap();
|
|
|
|
|
|
|
|
let external_documents_ids = index.external_documents_ids(&wtxn).unwrap();
|
|
|
|
assert!(external_documents_ids.get("30").is_some());
|
|
|
|
|
|
|
|
let content = &br#"[
|
|
|
|
{ "objectId": 30, "title": "Hamlet" }
|
|
|
|
]"#[..];
|
|
|
|
let mut builder = IndexDocuments::new(&mut wtxn, &index, 0);
|
|
|
|
builder.update_format(UpdateFormat::Json);
|
|
|
|
builder.execute(content, |_, _| ()).unwrap();
|
|
|
|
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
}
|
2021-07-06 17:40:45 +08: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();
|
|
|
|
|
|
|
|
let mut big_object = HashMap::new();
|
|
|
|
big_object.insert(S("id"), "wow");
|
|
|
|
for i in 0..1000 {
|
|
|
|
let key = i.to_string();
|
|
|
|
big_object.insert(key, "I am a text!");
|
|
|
|
}
|
|
|
|
|
|
|
|
let content = vec![big_object];
|
|
|
|
let content = serde_json::to_string(&content).unwrap();
|
|
|
|
|
|
|
|
let mut builder = IndexDocuments::new(&mut wtxn, &index, 0);
|
|
|
|
builder.update_format(UpdateFormat::Json);
|
|
|
|
builder.execute(Cursor::new(content), |_, _| ()).unwrap();
|
|
|
|
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
}
|
2021-07-22 23:14:44 +08: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();
|
|
|
|
let content = r#"#id,title,au{hor,genre,price$
|
|
|
|
2,"Prideand Prejudice","Jane Austin","romance",3.5$
|
|
|
|
456,"Le Petit Prince","Antoine de Saint-Exupéry","adventure",10.0$
|
|
|
|
1,Wonderland","Lewis Carroll","fantasy",25.99$
|
|
|
|
4,"Harry Potter ing","fantasy\0lood Prince","J. K. Rowling","fantasy\0,
|
|
|
|
"#;
|
|
|
|
|
|
|
|
let mut builder = IndexDocuments::new(&mut wtxn, &index, 0);
|
|
|
|
builder.update_format(UpdateFormat::Csv);
|
|
|
|
builder.execute(content.as_bytes(), |_, _| ()).unwrap();
|
|
|
|
|
|
|
|
wtxn.commit().unwrap();
|
|
|
|
}
|
2020-10-30 19:14:25 +08:00
|
|
|
}
|