MeiliSearch/meilisearch-lib/src/index/updates.rs

387 lines
13 KiB
Rust
Raw Normal View History

use std::collections::{BTreeMap, BTreeSet};
2021-05-10 17:30:09 +02:00
use std::marker::PhantomData;
2021-05-12 17:04:24 +02:00
use std::num::NonZeroUsize;
2021-03-04 11:56:32 +01:00
2021-06-23 10:41:55 +02:00
use log::{debug, info, trace};
2021-09-14 18:39:02 +02:00
use milli::documents::DocumentBatchReader;
use milli::update::{IndexDocumentsMethod, Setting, UpdateBuilder};
2021-05-12 17:04:24 +02:00
use serde::{Deserialize, Serialize, Serializer};
2021-09-14 18:39:02 +02:00
use uuid::Uuid;
2021-03-04 11:56:32 +01:00
2021-09-24 11:53:11 +02:00
use crate::index_controller::updates::status::{Failed, Processed, Processing, UpdateResult};
2021-09-28 22:22:59 +02:00
use crate::Update;
2021-05-10 20:22:18 +02:00
2021-09-24 11:53:11 +02:00
use super::error::{IndexError, Result};
2021-09-28 22:22:59 +02:00
use super::{Index, IndexMeta};
fn serialize_with_wildcard<S>(
2021-08-24 20:55:29 +02:00
field: &Setting<Vec<String>>,
s: S,
) -> std::result::Result<S::Ok, S::Error>
2021-05-12 17:04:24 +02:00
where
S: Serializer,
{
let wildcard = vec!["*".to_string()];
2021-08-24 20:55:29 +02:00
match field {
Setting::Set(value) => Some(value),
Setting::Reset => Some(&wildcard),
Setting::NotSet => None,
}
.serialize(s)
2021-05-12 17:04:24 +02:00
}
2021-03-04 11:56:32 +01:00
#[derive(Clone, Default, Debug, Serialize)]
2021-05-10 17:30:09 +02:00
pub struct Checked;
2021-08-24 20:55:29 +02:00
#[derive(Clone, Default, Debug, Serialize, Deserialize)]
2021-05-10 17:30:09 +02:00
pub struct Unchecked;
2021-09-22 15:07:04 +02:00
/// Holds all the settings for an index. `T` can either be `Checked` if they represents settings
/// whose validity is guaranteed, or `Unchecked` if they need to be validated. In the later case, a
/// call to `check` will return a `Settings<Checked>` from a `Settings<Unchecked>`.
2021-03-04 11:56:32 +01:00
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
#[serde(deny_unknown_fields)]
#[serde(rename_all = "camelCase")]
#[serde(bound(serialize = "T: Serialize", deserialize = "T: Deserialize<'static>"))]
2021-05-10 17:30:09 +02:00
pub struct Settings<T> {
2021-03-04 11:56:32 +01:00
#[serde(
default,
2021-05-12 17:04:24 +02:00
serialize_with = "serialize_with_wildcard",
2021-08-24 20:55:29 +02:00
skip_serializing_if = "Setting::is_not_set"
2021-03-04 11:56:32 +01:00
)]
2021-08-24 20:55:29 +02:00
pub displayed_attributes: Setting<Vec<String>>,
2021-03-04 11:56:32 +01:00
#[serde(
default,
2021-05-12 17:04:24 +02:00
serialize_with = "serialize_with_wildcard",
2021-08-24 20:55:29 +02:00
skip_serializing_if = "Setting::is_not_set"
2021-06-03 14:19:56 +02:00
)]
2021-08-24 20:55:29 +02:00
pub searchable_attributes: Setting<Vec<String>>,
#[serde(default, skip_serializing_if = "Setting::is_not_set")]
pub filterable_attributes: Setting<BTreeSet<String>>,
2021-08-24 20:55:29 +02:00
#[serde(default, skip_serializing_if = "Setting::is_not_set")]
pub sortable_attributes: Setting<BTreeSet<String>>,
#[serde(default, skip_serializing_if = "Setting::is_not_set")]
2021-08-24 20:55:29 +02:00
pub ranking_rules: Setting<Vec<String>>,
#[serde(default, skip_serializing_if = "Setting::is_not_set")]
pub stop_words: Setting<BTreeSet<String>>,
#[serde(default, skip_serializing_if = "Setting::is_not_set")]
pub synonyms: Setting<BTreeMap<String, Vec<String>>>,
#[serde(default, skip_serializing_if = "Setting::is_not_set")]
pub distinct_attribute: Setting<String>,
2021-05-10 17:30:09 +02:00
#[serde(skip)]
pub _kind: PhantomData<T>,
2021-03-04 11:56:32 +01:00
}
2021-05-10 17:30:09 +02:00
impl Settings<Checked> {
pub fn cleared() -> Settings<Checked> {
Settings {
2021-08-24 20:55:29 +02:00
displayed_attributes: Setting::Reset,
searchable_attributes: Setting::Reset,
filterable_attributes: Setting::Reset,
sortable_attributes: Setting::Reset,
2021-08-24 20:55:29 +02:00
ranking_rules: Setting::Reset,
stop_words: Setting::Reset,
synonyms: Setting::Reset,
distinct_attribute: Setting::Reset,
2021-05-10 17:30:09 +02:00
_kind: PhantomData,
2021-03-04 11:56:32 +01:00
}
}
2021-05-27 14:30:20 +02:00
pub fn into_unchecked(self) -> Settings<Unchecked> {
let Self {
displayed_attributes,
searchable_attributes,
filterable_attributes,
sortable_attributes,
2021-05-27 14:30:20 +02:00
ranking_rules,
stop_words,
2021-06-03 14:19:56 +02:00
synonyms,
2021-05-27 14:30:20 +02:00
distinct_attribute,
..
} = self;
Settings {
displayed_attributes,
searchable_attributes,
filterable_attributes,
sortable_attributes,
2021-05-27 14:30:20 +02:00
ranking_rules,
stop_words,
2021-06-03 14:19:56 +02:00
synonyms,
2021-05-27 14:30:20 +02:00
distinct_attribute,
_kind: PhantomData,
}
}
2021-03-04 11:56:32 +01:00
}
2021-05-10 17:30:09 +02:00
impl Settings<Unchecked> {
2021-08-24 20:55:29 +02:00
pub fn check(self) -> Settings<Checked> {
let displayed_attributes = match self.displayed_attributes {
Setting::Set(fields) => {
2021-05-10 18:22:41 +02:00
if fields.iter().any(|f| f == "*") {
2021-08-24 20:55:29 +02:00
Setting::Reset
2021-05-10 18:22:41 +02:00
} else {
2021-08-24 20:55:29 +02:00
Setting::Set(fields)
2021-05-10 18:22:41 +02:00
}
}
otherwise => otherwise,
};
2021-08-24 20:55:29 +02:00
let searchable_attributes = match self.searchable_attributes {
Setting::Set(fields) => {
2021-05-10 18:22:41 +02:00
if fields.iter().any(|f| f == "*") {
2021-08-24 20:55:29 +02:00
Setting::Reset
2021-05-10 18:22:41 +02:00
} else {
2021-08-24 20:55:29 +02:00
Setting::Set(fields)
2021-05-10 18:22:41 +02:00
}
}
otherwise => otherwise,
};
Settings {
displayed_attributes,
searchable_attributes,
filterable_attributes: self.filterable_attributes,
sortable_attributes: self.sortable_attributes,
2021-05-10 18:22:41 +02:00
ranking_rules: self.ranking_rules,
stop_words: self.stop_words,
2021-06-03 14:19:56 +02:00
synonyms: self.synonyms,
2021-05-10 18:22:41 +02:00
distinct_attribute: self.distinct_attribute,
_kind: PhantomData,
}
2021-05-10 17:30:09 +02:00
}
}
2021-03-04 11:56:32 +01:00
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(deny_unknown_fields)]
#[serde(rename_all = "camelCase")]
pub struct Facets {
pub level_group_size: Option<NonZeroUsize>,
pub min_level_size: Option<NonZeroUsize>,
}
impl Index {
2021-09-24 11:53:11 +02:00
pub fn handle_update(&self, update: Processing) -> std::result::Result<Processed, Failed> {
2021-09-24 14:55:57 +02:00
let update_id = update.id();
let update_builder = self.update_handler.update_builder(update_id);
let result = (|| {
let mut txn = self.write_txn()?;
let result = match update.meta() {
2021-09-28 22:22:59 +02:00
Update::DocumentAddition {
primary_key,
content_uuid,
method,
} => self.update_documents(
&mut txn,
*method,
*content_uuid,
update_builder,
primary_key.as_deref(),
),
2021-09-28 20:20:13 +02:00
Update::Settings(settings) => {
2021-09-24 14:55:57 +02:00
let settings = settings.clone().check();
self.update_settings(&mut txn, &settings, update_builder)
2021-09-28 22:22:59 +02:00
}
2021-09-28 20:20:13 +02:00
Update::ClearDocuments => {
2021-09-24 15:21:07 +02:00
let builder = update_builder.clear_documents(&mut txn, self);
let _count = builder.execute()?;
Ok(UpdateResult::Other)
2021-09-28 22:22:59 +02:00
}
2021-09-28 20:20:13 +02:00
Update::DeleteDocuments(ids) => {
2021-09-24 15:21:07 +02:00
let mut builder = update_builder.delete_documents(&mut txn, self)?;
// We ignore unexisting document ids
ids.iter().for_each(|id| {
builder.delete_external_id(id);
});
let deleted = builder.execute()?;
Ok(UpdateResult::DocumentDeletion { deleted })
}
2021-09-24 14:55:57 +02:00
};
txn.commit()?;
result
})();
match result {
Ok(result) => Ok(update.process(result)),
Err(e) => Err(update.fail(e)),
}
2021-09-24 11:53:11 +02:00
}
pub fn update_primary_key(&self, primary_key: Option<String>) -> Result<IndexMeta> {
match primary_key {
Some(primary_key) => {
let mut txn = self.write_txn()?;
if self.primary_key(&txn)?.is_some() {
return Err(IndexError::ExistingPrimaryKey);
}
let mut builder = UpdateBuilder::new(0).settings(&mut txn, self);
builder.set_primary_key(primary_key);
builder.execute(|_, _| ())?;
let meta = IndexMeta::new_txn(self, &txn)?;
txn.commit()?;
Ok(meta)
}
None => {
let meta = IndexMeta::new(self)?;
Ok(meta)
}
}
}
2021-09-24 14:55:57 +02:00
fn update_documents<'a, 'b>(
2021-05-12 16:21:37 +02:00
&'a self,
txn: &mut heed::RwTxn<'a, 'b>,
method: IndexDocumentsMethod,
2021-09-14 18:39:02 +02:00
content_uuid: Uuid,
2021-05-12 16:21:37 +02:00
update_builder: UpdateBuilder,
primary_key: Option<&str>,
) -> Result<UpdateResult> {
2021-06-23 10:41:55 +02:00
trace!("performing document addition");
2021-03-04 11:56:32 +01:00
// Set the primary key if not set already, ignore if already set.
2021-06-16 17:15:56 +02:00
if let (None, Some(primary_key)) = (self.primary_key(txn)?, primary_key) {
2021-07-29 18:14:36 +02:00
let mut builder = UpdateBuilder::new(0).settings(txn, self);
2021-06-16 17:15:56 +02:00
builder.set_primary_key(primary_key.to_string());
2021-06-17 14:36:32 +02:00
builder.execute(|_, _| ())?;
2021-03-04 11:56:32 +01:00
}
2021-05-31 16:40:59 +02:00
let indexing_callback =
2021-06-23 10:41:55 +02:00
|indexing_step, update_id| debug!("update {}: {:?}", update_id, indexing_step);
2021-05-25 16:33:09 +02:00
2021-09-14 18:39:02 +02:00
let content_file = self.update_file_store.get_update(content_uuid).unwrap();
let reader = DocumentBatchReader::from_reader(content_file).unwrap();
let mut builder = update_builder.index_documents(txn, self);
builder.index_documents_method(method);
let addition = builder.execute(reader, indexing_callback)?;
2021-03-04 11:56:32 +01:00
2021-05-12 16:21:37 +02:00
info!("document addition done: {:?}", addition);
2021-03-04 11:56:32 +01:00
2021-05-12 16:21:37 +02:00
Ok(UpdateResult::DocumentsAddition(addition))
2021-03-04 11:56:32 +01:00
}
2021-09-24 14:55:57 +02:00
fn update_settings<'a, 'b>(
&'a self,
txn: &mut heed::RwTxn<'a, 'b>,
settings: &Settings<Checked>,
update_builder: UpdateBuilder,
) -> Result<UpdateResult> {
// We must use the write transaction of the update here.
let mut builder = update_builder.settings(txn, self);
2021-09-14 18:39:02 +02:00
2021-09-28 11:59:55 +02:00
apply_settings_to_builder(settings, &mut builder);
2021-09-24 14:55:57 +02:00
2021-09-28 11:59:55 +02:00
builder.execute(|indexing_step, update_id| {
debug!("update {}: {:?}", update_id, indexing_step)
})?;
2021-09-24 14:55:57 +02:00
2021-09-28 11:59:55 +02:00
Ok(UpdateResult::Other)
}
}
2021-09-24 14:55:57 +02:00
2021-09-28 22:22:59 +02:00
pub fn apply_settings_to_builder(
settings: &Settings<Checked>,
builder: &mut milli::update::Settings,
) {
2021-09-28 11:59:55 +02:00
match settings.searchable_attributes {
Setting::Set(ref names) => builder.set_searchable_fields(names.clone()),
Setting::Reset => builder.reset_searchable_fields(),
Setting::NotSet => (),
}
2021-09-24 14:55:57 +02:00
2021-09-28 11:59:55 +02:00
match settings.displayed_attributes {
Setting::Set(ref names) => builder.set_displayed_fields(names.clone()),
Setting::Reset => builder.reset_displayed_fields(),
Setting::NotSet => (),
}
2021-09-24 14:55:57 +02:00
2021-09-28 11:59:55 +02:00
match settings.filterable_attributes {
Setting::Set(ref facets) => {
builder.set_filterable_fields(facets.clone().into_iter().collect())
2021-09-24 14:55:57 +02:00
}
2021-09-28 11:59:55 +02:00
Setting::Reset => builder.reset_filterable_fields(),
Setting::NotSet => (),
}
2021-09-24 14:55:57 +02:00
2021-09-28 11:59:55 +02:00
match settings.sortable_attributes {
2021-09-28 22:22:59 +02:00
Setting::Set(ref fields) => builder.set_sortable_fields(fields.iter().cloned().collect()),
2021-09-28 11:59:55 +02:00
Setting::Reset => builder.reset_sortable_fields(),
Setting::NotSet => (),
}
2021-09-24 14:55:57 +02:00
2021-09-28 11:59:55 +02:00
match settings.ranking_rules {
Setting::Set(ref criteria) => builder.set_criteria(criteria.clone()),
Setting::Reset => builder.reset_criteria(),
Setting::NotSet => (),
}
2021-09-24 14:55:57 +02:00
2021-09-28 11:59:55 +02:00
match settings.stop_words {
Setting::Set(ref stop_words) => builder.set_stop_words(stop_words.clone()),
Setting::Reset => builder.reset_stop_words(),
Setting::NotSet => (),
}
2021-09-24 14:55:57 +02:00
2021-09-28 11:59:55 +02:00
match settings.synonyms {
2021-09-28 22:22:59 +02:00
Setting::Set(ref synonyms) => builder.set_synonyms(synonyms.clone().into_iter().collect()),
2021-09-28 11:59:55 +02:00
Setting::Reset => builder.reset_synonyms(),
Setting::NotSet => (),
}
match settings.distinct_attribute {
Setting::Set(ref attr) => builder.set_distinct_field(attr.clone()),
Setting::Reset => builder.reset_distinct_field(),
Setting::NotSet => (),
2021-09-24 14:55:57 +02:00
}
2021-03-04 11:56:32 +01:00
}
2021-05-10 18:34:25 +02:00
#[cfg(test)]
mod test {
use super::*;
#[test]
fn test_setting_check() {
// test no changes
let settings = Settings {
2021-08-24 20:55:29 +02:00
displayed_attributes: Setting::Set(vec![String::from("hello")]),
searchable_attributes: Setting::Set(vec![String::from("hello")]),
filterable_attributes: Setting::NotSet,
sortable_attributes: Setting::NotSet,
2021-08-24 20:55:29 +02:00
ranking_rules: Setting::NotSet,
stop_words: Setting::NotSet,
synonyms: Setting::NotSet,
distinct_attribute: Setting::NotSet,
2021-05-10 18:34:25 +02:00
_kind: PhantomData::<Unchecked>,
};
let checked = settings.clone().check();
assert_eq!(settings.displayed_attributes, checked.displayed_attributes);
2021-05-12 17:04:24 +02:00
assert_eq!(
settings.searchable_attributes,
checked.searchable_attributes
);
2021-05-10 18:34:25 +02:00
// test wildcard
// test no changes
let settings = Settings {
2021-08-24 20:55:29 +02:00
displayed_attributes: Setting::Set(vec![String::from("*")]),
searchable_attributes: Setting::Set(vec![String::from("hello"), String::from("*")]),
filterable_attributes: Setting::NotSet,
sortable_attributes: Setting::NotSet,
2021-08-24 20:55:29 +02:00
ranking_rules: Setting::NotSet,
stop_words: Setting::NotSet,
synonyms: Setting::NotSet,
distinct_attribute: Setting::NotSet,
2021-05-10 18:34:25 +02:00
_kind: PhantomData::<Unchecked>,
};
let checked = settings.check();
2021-08-24 20:55:29 +02:00
assert_eq!(checked.displayed_attributes, Setting::Reset);
assert_eq!(checked.searchable_attributes, Setting::Reset);
2021-05-10 18:34:25 +02:00
}
}