2022-10-11 23:42:43 +08:00
|
|
|
use meilisearch_types::milli::update::IndexDocumentsMethod::{
|
|
|
|
self, ReplaceDocuments, UpdateDocuments,
|
|
|
|
};
|
2022-10-12 22:10:28 +08:00
|
|
|
use meilisearch_types::tasks::TaskId;
|
2022-10-06 17:46:08 +08:00
|
|
|
use std::ops::ControlFlow::{self, Break, Continue};
|
2022-09-13 20:59:03 +08:00
|
|
|
|
2022-10-12 09:21:25 +08:00
|
|
|
use crate::KindWithContent;
|
|
|
|
|
|
|
|
/// This enum contain the minimal necessary informations
|
|
|
|
/// to make the autobatcher works.
|
|
|
|
enum AutobatchKind {
|
|
|
|
DocumentImport {
|
|
|
|
method: IndexDocumentsMethod,
|
|
|
|
allow_index_creation: bool,
|
|
|
|
},
|
|
|
|
DocumentDeletion,
|
|
|
|
DocumentClear,
|
|
|
|
Settings {
|
|
|
|
allow_index_creation: bool,
|
|
|
|
},
|
|
|
|
IndexCreation,
|
|
|
|
IndexDeletion,
|
|
|
|
IndexUpdate,
|
|
|
|
IndexSwap,
|
|
|
|
CancelTask,
|
|
|
|
DeleteTasks,
|
|
|
|
DumpExport,
|
|
|
|
Snapshot,
|
|
|
|
}
|
|
|
|
|
2022-10-13 16:50:26 +08:00
|
|
|
impl AutobatchKind {
|
|
|
|
#[rustfmt::skip]
|
|
|
|
fn allow_index_creation(&self) -> Option<bool> {
|
|
|
|
match self {
|
|
|
|
AutobatchKind::DocumentImport { allow_index_creation, .. }
|
|
|
|
| AutobatchKind::Settings { allow_index_creation, .. } => Some(*allow_index_creation),
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-12 09:21:25 +08:00
|
|
|
impl From<KindWithContent> for AutobatchKind {
|
|
|
|
fn from(kind: KindWithContent) -> Self {
|
|
|
|
match kind {
|
|
|
|
KindWithContent::DocumentImport {
|
|
|
|
method,
|
|
|
|
allow_index_creation,
|
|
|
|
..
|
|
|
|
} => AutobatchKind::DocumentImport {
|
|
|
|
method,
|
|
|
|
allow_index_creation,
|
|
|
|
},
|
|
|
|
KindWithContent::DocumentDeletion { .. } => AutobatchKind::DocumentDeletion,
|
|
|
|
KindWithContent::DocumentClear { .. } => AutobatchKind::DocumentClear,
|
|
|
|
KindWithContent::Settings {
|
|
|
|
allow_index_creation,
|
|
|
|
..
|
|
|
|
} => AutobatchKind::Settings {
|
|
|
|
allow_index_creation,
|
|
|
|
},
|
|
|
|
KindWithContent::IndexDeletion { .. } => AutobatchKind::IndexDeletion,
|
|
|
|
KindWithContent::IndexCreation { .. } => AutobatchKind::IndexCreation,
|
|
|
|
KindWithContent::IndexUpdate { .. } => AutobatchKind::IndexUpdate,
|
2022-10-12 22:10:28 +08:00
|
|
|
KindWithContent::IndexSwap { .. } => AutobatchKind::IndexSwap,
|
2022-10-12 09:21:25 +08:00
|
|
|
KindWithContent::CancelTask { .. } => AutobatchKind::CancelTask,
|
|
|
|
KindWithContent::DeleteTasks { .. } => AutobatchKind::DeleteTasks,
|
|
|
|
KindWithContent::DumpExport { .. } => AutobatchKind::DumpExport,
|
|
|
|
KindWithContent::Snapshot => AutobatchKind::Snapshot,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-14 07:48:58 +08:00
|
|
|
#[derive(Debug)]
|
2022-09-09 18:16:19 +08:00
|
|
|
pub enum BatchKind {
|
2022-09-14 04:38:43 +08:00
|
|
|
DocumentClear {
|
2022-09-09 18:16:19 +08:00
|
|
|
ids: Vec<TaskId>,
|
|
|
|
},
|
2022-09-29 21:49:54 +08:00
|
|
|
DocumentImport {
|
|
|
|
method: IndexDocumentsMethod,
|
2022-10-06 21:55:48 +08:00
|
|
|
allow_index_creation: bool,
|
2022-09-29 21:49:54 +08:00
|
|
|
import_ids: Vec<TaskId>,
|
2022-09-14 06:34:02 +08:00
|
|
|
},
|
2022-09-09 18:16:19 +08:00
|
|
|
DocumentDeletion {
|
|
|
|
deletion_ids: Vec<TaskId>,
|
|
|
|
},
|
2022-09-14 04:38:43 +08:00
|
|
|
ClearAndSettings {
|
2022-09-09 18:16:19 +08:00
|
|
|
other: Vec<TaskId>,
|
2022-10-06 21:55:48 +08:00
|
|
|
allow_index_creation: bool,
|
2022-09-09 18:16:19 +08:00
|
|
|
settings_ids: Vec<TaskId>,
|
|
|
|
},
|
2022-09-29 21:49:54 +08:00
|
|
|
SettingsAndDocumentImport {
|
2022-09-14 06:34:02 +08:00
|
|
|
settings_ids: Vec<TaskId>,
|
2022-09-29 21:49:54 +08:00
|
|
|
method: IndexDocumentsMethod,
|
2022-10-06 21:55:48 +08:00
|
|
|
allow_index_creation: bool,
|
2022-09-29 21:49:54 +08:00
|
|
|
import_ids: Vec<TaskId>,
|
2022-09-14 06:34:02 +08:00
|
|
|
},
|
2022-09-09 18:16:19 +08:00
|
|
|
Settings {
|
2022-10-06 21:55:48 +08:00
|
|
|
allow_index_creation: bool,
|
2022-09-09 18:16:19 +08:00
|
|
|
settings_ids: Vec<TaskId>,
|
|
|
|
},
|
2022-09-14 04:38:43 +08:00
|
|
|
IndexDeletion {
|
2022-09-09 18:16:19 +08:00
|
|
|
ids: Vec<TaskId>,
|
|
|
|
},
|
2022-09-14 04:38:43 +08:00
|
|
|
IndexCreation {
|
2022-09-09 18:16:19 +08:00
|
|
|
id: TaskId,
|
|
|
|
},
|
2022-09-14 04:38:43 +08:00
|
|
|
IndexUpdate {
|
2022-09-09 18:16:19 +08:00
|
|
|
id: TaskId,
|
|
|
|
},
|
2022-09-14 04:38:43 +08:00
|
|
|
IndexSwap {
|
2022-09-09 18:16:19 +08:00
|
|
|
id: TaskId,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2022-10-13 16:50:26 +08:00
|
|
|
impl BatchKind {
|
|
|
|
#[rustfmt::skip]
|
|
|
|
fn allow_index_creation(&self) -> Option<bool> {
|
|
|
|
match self {
|
|
|
|
BatchKind::DocumentImport { allow_index_creation, .. }
|
|
|
|
| BatchKind::ClearAndSettings { allow_index_creation, .. }
|
|
|
|
| BatchKind::SettingsAndDocumentImport { allow_index_creation, .. }
|
|
|
|
| BatchKind::Settings { allow_index_creation, .. } => Some(*allow_index_creation),
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-09 18:16:19 +08:00
|
|
|
impl BatchKind {
|
2022-10-06 17:46:08 +08:00
|
|
|
/// Returns a `ControlFlow::Break` if you must stop right now.
|
2022-10-12 09:21:25 +08:00
|
|
|
pub fn new(task_id: TaskId, kind: KindWithContent) -> ControlFlow<BatchKind, BatchKind> {
|
|
|
|
use AutobatchKind as K;
|
|
|
|
|
|
|
|
match AutobatchKind::from(kind) {
|
|
|
|
K::IndexCreation => Break(BatchKind::IndexCreation { id: task_id }),
|
|
|
|
K::IndexDeletion => Break(BatchKind::IndexDeletion { ids: vec![task_id] }),
|
|
|
|
K::IndexUpdate => Break(BatchKind::IndexUpdate { id: task_id }),
|
|
|
|
K::IndexSwap => Break(BatchKind::IndexSwap { id: task_id }),
|
|
|
|
K::DocumentClear => Continue(BatchKind::DocumentClear { ids: vec![task_id] }),
|
|
|
|
K::DocumentImport {
|
2022-10-06 21:55:48 +08:00
|
|
|
method,
|
|
|
|
allow_index_creation,
|
|
|
|
} => Continue(BatchKind::DocumentImport {
|
|
|
|
method,
|
|
|
|
allow_index_creation,
|
2022-10-06 17:46:08 +08:00
|
|
|
import_ids: vec![task_id],
|
|
|
|
}),
|
2022-10-12 09:21:25 +08:00
|
|
|
K::DocumentDeletion => Continue(BatchKind::DocumentDeletion {
|
2022-10-06 17:46:08 +08:00
|
|
|
deletion_ids: vec![task_id],
|
|
|
|
}),
|
2022-10-12 09:21:25 +08:00
|
|
|
K::Settings {
|
2022-10-06 21:55:48 +08:00
|
|
|
allow_index_creation,
|
|
|
|
} => Continue(BatchKind::Settings {
|
|
|
|
allow_index_creation,
|
2022-10-06 17:46:08 +08:00
|
|
|
settings_ids: vec![task_id],
|
|
|
|
}),
|
2022-10-12 09:21:25 +08:00
|
|
|
K::DumpExport | K::Snapshot | K::CancelTask | K::DeleteTasks => {
|
2022-10-10 23:02:28 +08:00
|
|
|
unreachable!()
|
|
|
|
}
|
2022-09-09 18:16:19 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-06 17:46:08 +08:00
|
|
|
/// Returns a `ControlFlow::Break` if you must stop right now.
|
2022-10-06 21:55:48 +08:00
|
|
|
#[rustfmt::skip]
|
2022-10-12 09:21:25 +08:00
|
|
|
fn accumulate(self, id: TaskId, kind: AutobatchKind) -> ControlFlow<BatchKind, BatchKind> {
|
|
|
|
use AutobatchKind as K;
|
|
|
|
|
2022-09-09 18:16:19 +08:00
|
|
|
match (self, kind) {
|
2022-09-13 20:59:03 +08:00
|
|
|
// We don't batch any of these operations
|
2022-10-12 09:21:25 +08:00
|
|
|
(this, K::IndexCreation | K::IndexUpdate | K::IndexSwap) => Break(this),
|
2022-10-13 16:50:26 +08:00
|
|
|
// We must not batch tasks that don't have the same index creation rights
|
|
|
|
(this, kind) if this.allow_index_creation() == Some(false) && kind.allow_index_creation() == Some(true) => {
|
|
|
|
Break(this)
|
|
|
|
},
|
2022-09-13 20:59:03 +08:00
|
|
|
// The index deletion can batch with everything but must stop after
|
|
|
|
(
|
2022-09-14 04:38:43 +08:00
|
|
|
BatchKind::DocumentClear { mut ids }
|
2022-10-06 21:55:48 +08:00
|
|
|
| BatchKind::DocumentDeletion { deletion_ids: mut ids }
|
|
|
|
| BatchKind::DocumentImport { method: _, allow_index_creation: _, import_ids: mut ids }
|
|
|
|
| BatchKind::Settings { allow_index_creation: _, settings_ids: mut ids },
|
2022-10-12 09:21:25 +08:00
|
|
|
K::IndexDeletion,
|
2022-09-13 20:59:03 +08:00
|
|
|
) => {
|
|
|
|
ids.push(id);
|
2022-10-06 17:46:08 +08:00
|
|
|
Break(BatchKind::IndexDeletion { ids })
|
2022-09-13 20:59:03 +08:00
|
|
|
}
|
|
|
|
(
|
2022-10-06 21:55:48 +08:00
|
|
|
BatchKind::ClearAndSettings { settings_ids: mut ids, allow_index_creation: _, mut other }
|
|
|
|
| BatchKind::SettingsAndDocumentImport { import_ids: mut ids, method: _, allow_index_creation: _, settings_ids: mut other },
|
2022-10-12 09:21:25 +08:00
|
|
|
K::IndexDeletion,
|
2022-09-13 20:59:03 +08:00
|
|
|
) => {
|
|
|
|
ids.push(id);
|
|
|
|
ids.append(&mut other);
|
2022-10-06 17:46:08 +08:00
|
|
|
Break(BatchKind::IndexDeletion { ids })
|
2022-09-13 20:59:03 +08:00
|
|
|
}
|
2022-09-09 18:16:19 +08:00
|
|
|
|
2022-09-14 04:38:43 +08:00
|
|
|
(
|
|
|
|
BatchKind::DocumentClear { mut ids },
|
2022-10-12 09:21:25 +08:00
|
|
|
K::DocumentClear | K::DocumentDeletion,
|
2022-09-14 04:38:43 +08:00
|
|
|
) => {
|
2022-09-09 18:16:19 +08:00
|
|
|
ids.push(id);
|
2022-10-06 17:46:08 +08:00
|
|
|
Continue(BatchKind::DocumentClear { ids })
|
2022-09-09 18:16:19 +08:00
|
|
|
}
|
2022-09-14 04:38:43 +08:00
|
|
|
(
|
|
|
|
this @ BatchKind::DocumentClear { .. },
|
2022-10-12 09:21:25 +08:00
|
|
|
K::DocumentImport { .. } | K::Settings { .. },
|
2022-10-06 17:46:08 +08:00
|
|
|
) => Break(this),
|
2022-09-14 06:34:02 +08:00
|
|
|
(
|
2022-10-06 21:55:48 +08:00
|
|
|
BatchKind::DocumentImport { method: _, allow_index_creation: _, import_ids: mut ids },
|
2022-10-12 09:21:25 +08:00
|
|
|
K::DocumentClear,
|
2022-09-14 06:34:02 +08:00
|
|
|
) => {
|
|
|
|
ids.push(id);
|
2022-10-06 17:46:08 +08:00
|
|
|
Continue(BatchKind::DocumentClear { ids })
|
2022-09-09 18:16:19 +08:00
|
|
|
}
|
|
|
|
|
2022-09-14 06:34:02 +08:00
|
|
|
// we can autobatch the same kind of document additions / updates
|
2022-09-29 21:49:54 +08:00
|
|
|
(
|
2022-10-06 21:55:48 +08:00
|
|
|
BatchKind::DocumentImport { method: ReplaceDocuments, allow_index_creation, mut import_ids },
|
2022-10-12 09:21:25 +08:00
|
|
|
K::DocumentImport { method: ReplaceDocuments, .. },
|
2022-09-29 21:49:54 +08:00
|
|
|
) => {
|
|
|
|
import_ids.push(id);
|
2022-10-06 17:46:08 +08:00
|
|
|
Continue(BatchKind::DocumentImport {
|
2022-09-29 21:49:54 +08:00
|
|
|
method: ReplaceDocuments,
|
2022-10-06 21:55:48 +08:00
|
|
|
allow_index_creation,
|
2022-09-29 21:49:54 +08:00
|
|
|
import_ids,
|
|
|
|
})
|
2022-09-13 20:59:03 +08:00
|
|
|
}
|
2022-09-29 21:49:54 +08:00
|
|
|
(
|
2022-10-06 21:55:48 +08:00
|
|
|
BatchKind::DocumentImport { method: UpdateDocuments, allow_index_creation, mut import_ids },
|
2022-10-12 09:21:25 +08:00
|
|
|
K::DocumentImport { method: UpdateDocuments, .. },
|
2022-09-29 21:49:54 +08:00
|
|
|
) => {
|
|
|
|
import_ids.push(id);
|
2022-10-06 17:46:08 +08:00
|
|
|
Continue(BatchKind::DocumentImport {
|
2022-09-29 21:49:54 +08:00
|
|
|
method: UpdateDocuments,
|
2022-10-06 21:55:48 +08:00
|
|
|
allow_index_creation,
|
2022-09-29 21:49:54 +08:00
|
|
|
import_ids,
|
|
|
|
})
|
2022-09-09 18:16:19 +08:00
|
|
|
}
|
2022-10-06 21:55:48 +08:00
|
|
|
|
2022-09-14 06:34:02 +08:00
|
|
|
// but we can't autobatch documents if it's not the same kind
|
|
|
|
// this match branch MUST be AFTER the previous one
|
|
|
|
(
|
2022-09-29 21:49:54 +08:00
|
|
|
this @ BatchKind::DocumentImport { .. },
|
2022-10-12 09:21:25 +08:00
|
|
|
K::DocumentDeletion | K::DocumentImport { .. },
|
2022-10-06 17:46:08 +08:00
|
|
|
) => Break(this),
|
2022-10-06 21:55:48 +08:00
|
|
|
|
|
|
|
(
|
|
|
|
BatchKind::DocumentImport { method, allow_index_creation, import_ids },
|
2022-10-12 09:21:25 +08:00
|
|
|
K::Settings { .. },
|
2022-10-06 21:55:48 +08:00
|
|
|
) => Continue(BatchKind::SettingsAndDocumentImport {
|
|
|
|
settings_ids: vec![id],
|
|
|
|
method,
|
|
|
|
allow_index_creation,
|
|
|
|
import_ids,
|
|
|
|
}),
|
2022-09-09 18:16:19 +08:00
|
|
|
|
2022-10-12 09:21:25 +08:00
|
|
|
(BatchKind::DocumentDeletion { mut deletion_ids }, K::DocumentClear) => {
|
2022-09-09 18:16:19 +08:00
|
|
|
deletion_ids.push(id);
|
2022-10-06 17:46:08 +08:00
|
|
|
Continue(BatchKind::DocumentClear { ids: deletion_ids })
|
2022-09-13 20:59:03 +08:00
|
|
|
}
|
2022-10-12 09:21:25 +08:00
|
|
|
(this @ BatchKind::DocumentDeletion { .. }, K::DocumentImport { .. }) => Break(this),
|
|
|
|
(BatchKind::DocumentDeletion { mut deletion_ids }, K::DocumentDeletion) => {
|
2022-09-09 18:16:19 +08:00
|
|
|
deletion_ids.push(id);
|
2022-10-06 17:46:08 +08:00
|
|
|
Continue(BatchKind::DocumentDeletion { deletion_ids })
|
2022-09-09 18:16:19 +08:00
|
|
|
}
|
2022-10-12 09:21:25 +08:00
|
|
|
(this @ BatchKind::DocumentDeletion { .. }, K::Settings { .. }) => Break(this),
|
2022-09-09 18:16:19 +08:00
|
|
|
|
2022-10-06 21:55:48 +08:00
|
|
|
(
|
|
|
|
BatchKind::Settings { settings_ids, allow_index_creation },
|
2022-10-12 09:21:25 +08:00
|
|
|
K::DocumentClear,
|
2022-10-06 21:55:48 +08:00
|
|
|
) => Continue(BatchKind::ClearAndSettings {
|
|
|
|
settings_ids: settings_ids,
|
|
|
|
allow_index_creation,
|
|
|
|
other: vec![id],
|
|
|
|
}),
|
2022-09-14 06:34:02 +08:00
|
|
|
(
|
|
|
|
this @ BatchKind::Settings { .. },
|
2022-10-12 09:21:25 +08:00
|
|
|
K::DocumentImport { .. } | K::DocumentDeletion,
|
2022-10-06 17:46:08 +08:00
|
|
|
) => Break(this),
|
2022-10-06 21:55:48 +08:00
|
|
|
(
|
|
|
|
BatchKind::Settings { mut settings_ids, allow_index_creation },
|
2022-10-12 09:21:25 +08:00
|
|
|
K::Settings { .. },
|
2022-10-06 21:55:48 +08:00
|
|
|
) => {
|
2022-09-09 18:16:19 +08:00
|
|
|
settings_ids.push(id);
|
2022-10-06 21:55:48 +08:00
|
|
|
Continue(BatchKind::Settings {
|
|
|
|
allow_index_creation,
|
|
|
|
settings_ids,
|
|
|
|
})
|
2022-09-09 18:16:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
(
|
2022-10-06 21:55:48 +08:00
|
|
|
BatchKind::ClearAndSettings { mut other, settings_ids, allow_index_creation },
|
2022-10-12 09:21:25 +08:00
|
|
|
K::DocumentClear,
|
2022-09-09 18:16:19 +08:00
|
|
|
) => {
|
|
|
|
other.push(id);
|
2022-10-06 17:46:08 +08:00
|
|
|
Continue(BatchKind::ClearAndSettings {
|
2022-09-13 20:59:03 +08:00
|
|
|
other,
|
|
|
|
settings_ids,
|
2022-10-06 21:55:48 +08:00
|
|
|
allow_index_creation,
|
2022-09-13 20:59:03 +08:00
|
|
|
})
|
|
|
|
}
|
2022-10-12 09:21:25 +08:00
|
|
|
(this @ BatchKind::ClearAndSettings { .. }, K::DocumentImport { .. }) => Break(this),
|
2022-09-09 18:16:19 +08:00
|
|
|
(
|
2022-09-14 04:38:43 +08:00
|
|
|
BatchKind::ClearAndSettings {
|
2022-09-13 20:59:03 +08:00
|
|
|
mut other,
|
2022-09-09 18:16:19 +08:00
|
|
|
settings_ids,
|
2022-10-06 21:55:48 +08:00
|
|
|
allow_index_creation,
|
2022-09-09 18:16:19 +08:00
|
|
|
},
|
2022-10-12 09:21:25 +08:00
|
|
|
K::DocumentDeletion,
|
2022-09-09 18:16:19 +08:00
|
|
|
) => {
|
|
|
|
other.push(id);
|
2022-10-06 17:46:08 +08:00
|
|
|
Continue(BatchKind::ClearAndSettings {
|
2022-09-13 20:59:03 +08:00
|
|
|
other,
|
|
|
|
settings_ids,
|
2022-10-06 21:55:48 +08:00
|
|
|
allow_index_creation,
|
2022-09-13 20:59:03 +08:00
|
|
|
})
|
2022-09-09 18:16:19 +08:00
|
|
|
}
|
2022-10-06 21:55:48 +08:00
|
|
|
(
|
|
|
|
BatchKind::ClearAndSettings { mut settings_ids, other, allow_index_creation },
|
2022-10-12 09:21:25 +08:00
|
|
|
K::Settings { .. },
|
2022-09-09 18:16:19 +08:00
|
|
|
) => {
|
|
|
|
settings_ids.push(id);
|
2022-10-06 17:46:08 +08:00
|
|
|
Continue(BatchKind::ClearAndSettings {
|
2022-09-13 20:59:03 +08:00
|
|
|
other,
|
|
|
|
settings_ids,
|
2022-10-06 21:55:48 +08:00
|
|
|
allow_index_creation,
|
2022-09-13 20:59:03 +08:00
|
|
|
})
|
2022-09-09 18:16:19 +08:00
|
|
|
}
|
|
|
|
(
|
2022-10-06 21:55:48 +08:00
|
|
|
BatchKind::SettingsAndDocumentImport { settings_ids, method: _, import_ids: mut other, allow_index_creation },
|
2022-10-12 09:21:25 +08:00
|
|
|
K::DocumentClear,
|
2022-09-09 18:16:19 +08:00
|
|
|
) => {
|
2022-09-14 06:34:02 +08:00
|
|
|
other.push(id);
|
2022-10-06 17:46:08 +08:00
|
|
|
Continue(BatchKind::ClearAndSettings {
|
2022-09-13 20:59:03 +08:00
|
|
|
settings_ids,
|
2022-09-14 06:34:02 +08:00
|
|
|
other,
|
2022-10-06 21:55:48 +08:00
|
|
|
allow_index_creation,
|
2022-09-13 20:59:03 +08:00
|
|
|
})
|
2022-09-09 18:16:19 +08:00
|
|
|
}
|
2022-09-14 06:34:02 +08:00
|
|
|
|
2022-10-06 21:55:48 +08:00
|
|
|
(
|
|
|
|
BatchKind::SettingsAndDocumentImport { settings_ids, method: ReplaceDocuments, mut import_ids, allow_index_creation },
|
2022-10-12 09:21:25 +08:00
|
|
|
K::DocumentImport { method: ReplaceDocuments, .. },
|
2022-09-09 18:16:19 +08:00
|
|
|
) => {
|
2022-09-29 21:49:54 +08:00
|
|
|
import_ids.push(id);
|
2022-10-06 17:46:08 +08:00
|
|
|
Continue(BatchKind::SettingsAndDocumentImport {
|
2022-09-13 20:59:03 +08:00
|
|
|
settings_ids,
|
2022-09-29 21:49:54 +08:00
|
|
|
method: ReplaceDocuments,
|
2022-10-06 21:55:48 +08:00
|
|
|
allow_index_creation,
|
2022-09-29 21:49:54 +08:00
|
|
|
import_ids,
|
2022-09-13 20:59:03 +08:00
|
|
|
})
|
|
|
|
}
|
2022-09-14 06:34:02 +08:00
|
|
|
(
|
2022-10-06 21:55:48 +08:00
|
|
|
BatchKind::SettingsAndDocumentImport { settings_ids, method: UpdateDocuments, allow_index_creation, mut import_ids },
|
2022-10-12 09:21:25 +08:00
|
|
|
K::DocumentImport { method: UpdateDocuments, .. },
|
2022-09-14 06:34:02 +08:00
|
|
|
) => {
|
2022-09-29 21:49:54 +08:00
|
|
|
import_ids.push(id);
|
2022-10-06 17:46:08 +08:00
|
|
|
Continue(BatchKind::SettingsAndDocumentImport {
|
2022-09-14 06:34:02 +08:00
|
|
|
settings_ids,
|
2022-09-29 21:49:54 +08:00
|
|
|
method: UpdateDocuments,
|
2022-10-06 21:55:48 +08:00
|
|
|
allow_index_creation,
|
2022-09-29 21:49:54 +08:00
|
|
|
import_ids,
|
2022-09-14 06:34:02 +08:00
|
|
|
})
|
2022-09-13 20:59:03 +08:00
|
|
|
}
|
2022-09-14 06:34:02 +08:00
|
|
|
// But we can't batch a settings and a doc op with another doc op
|
|
|
|
// this MUST be AFTER the two previous branch
|
|
|
|
(
|
2022-09-29 21:49:54 +08:00
|
|
|
this @ BatchKind::SettingsAndDocumentImport { .. },
|
2022-10-12 09:21:25 +08:00
|
|
|
K::DocumentDeletion | K::DocumentImport { .. },
|
2022-10-06 17:46:08 +08:00
|
|
|
) => Break(this),
|
2022-10-06 21:55:48 +08:00
|
|
|
(
|
|
|
|
BatchKind::SettingsAndDocumentImport { mut settings_ids, method, allow_index_creation, import_ids },
|
2022-10-12 09:21:25 +08:00
|
|
|
K::Settings { .. },
|
2022-09-14 06:34:02 +08:00
|
|
|
) => {
|
|
|
|
settings_ids.push(id);
|
2022-10-06 17:46:08 +08:00
|
|
|
Continue(BatchKind::SettingsAndDocumentImport {
|
2022-09-14 06:34:02 +08:00
|
|
|
settings_ids,
|
2022-09-29 21:49:54 +08:00
|
|
|
method,
|
2022-10-06 21:55:48 +08:00
|
|
|
allow_index_creation,
|
2022-09-29 21:49:54 +08:00
|
|
|
import_ids,
|
2022-09-14 06:34:02 +08:00
|
|
|
})
|
|
|
|
}
|
2022-10-12 09:21:25 +08:00
|
|
|
(_, K::CancelTask | K::DeleteTasks | K::DumpExport | K::Snapshot) => {
|
2022-10-06 22:53:21 +08:00
|
|
|
unreachable!()
|
|
|
|
}
|
2022-09-09 18:16:19 +08:00
|
|
|
(
|
2022-09-14 04:38:43 +08:00
|
|
|
BatchKind::IndexCreation { .. }
|
|
|
|
| BatchKind::IndexDeletion { .. }
|
|
|
|
| BatchKind::IndexUpdate { .. }
|
|
|
|
| BatchKind::IndexSwap { .. },
|
2022-09-09 18:16:19 +08:00
|
|
|
_,
|
|
|
|
) => {
|
|
|
|
unreachable!()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-12 09:21:25 +08:00
|
|
|
pub fn autobatch(enqueued: Vec<(TaskId, KindWithContent)>) -> Option<BatchKind> {
|
2022-09-09 18:16:19 +08:00
|
|
|
let mut enqueued = enqueued.into_iter();
|
|
|
|
let (id, kind) = enqueued.next()?;
|
2022-10-06 17:46:08 +08:00
|
|
|
let mut acc = match BatchKind::new(id, kind) {
|
|
|
|
Continue(acc) => acc,
|
|
|
|
Break(acc) => return Some(acc),
|
|
|
|
};
|
2022-09-09 18:16:19 +08:00
|
|
|
|
|
|
|
for (id, kind) in enqueued {
|
2022-10-12 09:21:25 +08:00
|
|
|
acc = match acc.accumulate(id, kind.into()) {
|
2022-10-06 17:46:08 +08:00
|
|
|
Continue(acc) => acc,
|
|
|
|
Break(acc) => return Some(acc),
|
2022-09-13 20:59:03 +08:00
|
|
|
};
|
2022-09-09 18:16:19 +08:00
|
|
|
}
|
|
|
|
|
2022-09-14 07:48:58 +08:00
|
|
|
Some(acc)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2022-09-15 18:32:27 +08:00
|
|
|
use crate::assert_smol_debug_snapshot;
|
|
|
|
|
2022-09-14 07:48:58 +08:00
|
|
|
use super::*;
|
2022-10-12 09:21:25 +08:00
|
|
|
use uuid::Uuid;
|
2022-09-14 07:48:58 +08:00
|
|
|
|
2022-10-12 09:21:25 +08:00
|
|
|
fn autobatch_from(input: impl IntoIterator<Item = KindWithContent>) -> Option<BatchKind> {
|
2022-09-26 20:12:06 +08:00
|
|
|
autobatch(
|
|
|
|
input
|
|
|
|
.into_iter()
|
|
|
|
.enumerate()
|
2022-10-12 09:21:25 +08:00
|
|
|
.map(|(id, kind)| (id as TaskId, kind.into()))
|
2022-09-26 20:12:06 +08:00
|
|
|
.collect(),
|
|
|
|
)
|
2022-09-14 07:48:58 +08:00
|
|
|
}
|
|
|
|
|
2022-10-12 09:21:25 +08:00
|
|
|
fn doc_imp(method: IndexDocumentsMethod, allow_index_creation: bool) -> KindWithContent {
|
|
|
|
KindWithContent::DocumentImport {
|
|
|
|
index_uid: String::from("doggo"),
|
|
|
|
primary_key: None,
|
|
|
|
method,
|
|
|
|
content_file: Uuid::new_v4(),
|
|
|
|
documents_count: 0,
|
|
|
|
allow_index_creation,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn doc_del() -> KindWithContent {
|
|
|
|
KindWithContent::DocumentDeletion {
|
|
|
|
index_uid: String::from("doggo"),
|
|
|
|
documents_ids: Vec::new(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn doc_clr() -> KindWithContent {
|
|
|
|
KindWithContent::DocumentClear {
|
|
|
|
index_uid: String::from("doggo"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn settings(allow_index_creation: bool) -> KindWithContent {
|
|
|
|
KindWithContent::Settings {
|
|
|
|
index_uid: String::from("doggo"),
|
|
|
|
new_settings: Default::default(),
|
|
|
|
is_deletion: false,
|
|
|
|
allow_index_creation,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn idx_create() -> KindWithContent {
|
|
|
|
KindWithContent::IndexCreation {
|
|
|
|
index_uid: String::from("doggo"),
|
|
|
|
primary_key: None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn idx_update() -> KindWithContent {
|
|
|
|
KindWithContent::IndexUpdate {
|
|
|
|
index_uid: String::from("doggo"),
|
|
|
|
primary_key: None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn idx_del() -> KindWithContent {
|
|
|
|
KindWithContent::IndexDeletion {
|
|
|
|
index_uid: String::from("doggo"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn idx_swap() -> KindWithContent {
|
|
|
|
KindWithContent::IndexSwap {
|
|
|
|
lhs: String::from("doggo"),
|
|
|
|
rhs: String::from("catto"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-14 07:48:58 +08:00
|
|
|
#[test]
|
|
|
|
fn autobatch_simple_operation_together() {
|
|
|
|
// we can autobatch one or multiple DocumentAddition together
|
2022-10-12 09:21:25 +08:00
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(ReplaceDocuments, true)]), @"Some(DocumentImport { method: ReplaceDocuments, allow_index_creation: true, import_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(ReplaceDocuments, true), doc_imp( ReplaceDocuments, true ), doc_imp(ReplaceDocuments, true )]), @"Some(DocumentImport { method: ReplaceDocuments, allow_index_creation: true, import_ids: [0, 1, 2] })");
|
2022-09-14 07:48:58 +08:00
|
|
|
// we can autobatch one or multiple DocumentUpdate together
|
2022-10-12 09:21:25 +08:00
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(UpdateDocuments, true)]), @"Some(DocumentImport { method: UpdateDocuments, allow_index_creation: true, import_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(UpdateDocuments, true), doc_imp(UpdateDocuments, true), doc_imp(UpdateDocuments, true)]), @"Some(DocumentImport { method: UpdateDocuments, allow_index_creation: true, import_ids: [0, 1, 2] })");
|
2022-09-14 07:48:58 +08:00
|
|
|
// we can autobatch one or multiple DocumentDeletion together
|
2022-10-12 09:21:25 +08:00
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_del()]), @"Some(DocumentDeletion { deletion_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_del(), doc_del(), doc_del()]), @"Some(DocumentDeletion { deletion_ids: [0, 1, 2] })");
|
2022-09-14 07:48:58 +08:00
|
|
|
// we can autobatch one or multiple Settings together
|
2022-10-12 09:21:25 +08:00
|
|
|
assert_smol_debug_snapshot!(autobatch_from([settings(true)]), @"Some(Settings { allow_index_creation: true, settings_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([settings(true), settings(true), settings(true)]), @"Some(Settings { allow_index_creation: true, settings_ids: [0, 1, 2] })");
|
2022-09-14 07:48:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn simple_document_operation_dont_autobatch_with_other() {
|
|
|
|
// addition, updates and deletion can't batch together
|
2022-10-12 09:21:25 +08:00
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(ReplaceDocuments, true), doc_imp(UpdateDocuments, true)]), @"Some(DocumentImport { method: ReplaceDocuments, allow_index_creation: true, import_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(ReplaceDocuments, true), doc_del()]), @"Some(DocumentImport { method: ReplaceDocuments, allow_index_creation: true, import_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(UpdateDocuments, true), doc_imp(ReplaceDocuments, true)]), @"Some(DocumentImport { method: UpdateDocuments, allow_index_creation: true, import_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(UpdateDocuments, true), doc_del()]), @"Some(DocumentImport { method: UpdateDocuments, allow_index_creation: true, import_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_del(), doc_imp(ReplaceDocuments, true)]), @"Some(DocumentDeletion { deletion_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_del(), doc_imp(UpdateDocuments, true)]), @"Some(DocumentDeletion { deletion_ids: [0] })");
|
|
|
|
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(ReplaceDocuments, true), idx_create()]), @"Some(DocumentImport { method: ReplaceDocuments, allow_index_creation: true, import_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(UpdateDocuments, true), idx_create()]), @"Some(DocumentImport { method: UpdateDocuments, allow_index_creation: true, import_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_del(), idx_create()]), @"Some(DocumentDeletion { deletion_ids: [0] })");
|
|
|
|
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(ReplaceDocuments, true), idx_update()]), @"Some(DocumentImport { method: ReplaceDocuments, allow_index_creation: true, import_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(UpdateDocuments, true), idx_update()]), @"Some(DocumentImport { method: UpdateDocuments, allow_index_creation: true, import_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_del(), idx_update()]), @"Some(DocumentDeletion { deletion_ids: [0] })");
|
|
|
|
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(ReplaceDocuments, true), idx_swap()]), @"Some(DocumentImport { method: ReplaceDocuments, allow_index_creation: true, import_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(UpdateDocuments, true), idx_swap()]), @"Some(DocumentImport { method: UpdateDocuments, allow_index_creation: true, import_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_del(), idx_swap()]), @"Some(DocumentDeletion { deletion_ids: [0] })");
|
2022-09-14 07:48:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn document_addition_batch_with_settings() {
|
|
|
|
// simple case
|
2022-10-12 09:21:25 +08:00
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(ReplaceDocuments, true), settings(true)]), @"Some(settingsAnddoc_im(Repl)eDocuments)allow_index_creation: true, import_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(UpdateDocuments, true), settings(true)]), @"Some(settingsAnddoc_im(Upda)Documents)allow_index_creation: true, import_ids: [0] })");
|
2022-09-14 07:48:58 +08:00
|
|
|
|
|
|
|
// multiple settings and doc addition
|
2022-10-12 09:21:25 +08:00
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(ReplaceDocuments, true), doc_imp(ReplaceDocuments, true), settings(true), settings(true)]), @"Some(settingsAnddoc_im(Repl)eDocuments)allow_index_creation: true, import_ids: [0, 1] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(ReplaceDocuments, true), doc_imp(ReplaceDocuments, true), settings(true), settings(true)]), @"Some(settingsAnddoc_im(Repl)eDocuments)allow_index_creation: true, import_ids: [0, 1] })");
|
2022-09-14 07:48:58 +08:00
|
|
|
|
|
|
|
// addition and setting unordered
|
2022-10-12 09:21:25 +08:00
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(ReplaceDocuments, true), settings(true), doc_imp(ReplaceDocuments, true), settings(true)]), @"Some(settingsAnddoc_im(Repl)eDocuments)allow_index_creation: true, import_ids: [0, 2] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(UpdateDocuments, true), settings(true), doc_imp(UpdateDocuments, true), settings(true)]), @"Some(settingsAnddoc_im(Upda)Documents)allow_index_creation: true, import_ids: [0, 2] })");
|
2022-09-14 07:48:58 +08:00
|
|
|
|
|
|
|
// We ensure this kind of batch doesn't batch with forbidden operations
|
2022-10-12 09:21:25 +08:00
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(ReplaceDocuments, true), settings(true), doc_imp(UpdateDocuments, true)]), @"Some(settingsAnddoc_im(Repl)eDocuments)allow_index_creation: true, import_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(UpdateDocuments, true), settings(true), doc_imp(ReplaceDocuments, true)]), @"Some(settingsAnddoc_im(Upda)Documents)allow_index_creation: true, import_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(ReplaceDocuments, true), settings(true), doc_del()]), @"Some(settingsAnddoc_im(Repl)eDocuments)allow_index_creation: true, import_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(UpdateDocuments, true), settings(true), doc_del()]), @"Some(settingsAnddoc_im(Upda)Documents)allow_index_creation: true, import_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(ReplaceDocuments, true), settings(true), idx_create()]), @"Some(settingsAnddoc_im(Repl)eDocuments)allow_index_creation: true, import_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(UpdateDocuments, true), settings(true), idx_create()]), @"Some(settingsAnddoc_im(Upda)Documents)allow_index_creation: true, import_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(ReplaceDocuments, true), settings(true), idx_update()]), @"Some(settingsAnddoc_im(Repl)eDocuments)allow_index_creation: true, import_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(UpdateDocuments, true), settings(true), idx_update()]), @"Some(settingsAnddoc_im(Upda)Documents)allow_index_creation: true, import_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(ReplaceDocuments, true), settings(true), idx_swap()]), @"Some(settingsAnddoc_im(Repl)eDocuments)allow_index_creation: true, import_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(UpdateDocuments, true), settings(true), idx_swap()]), @"Some(settingsAnddoc_im(Upda)Documents)allow_index_creation: true, import_ids: [0] })");
|
2022-09-14 07:48:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn clear_and_additions() {
|
|
|
|
// these two doesn't need to batch
|
2022-10-12 09:21:25 +08:00
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_clr(), doc_imp(ReplaceDocuments, true)]), @"Some(doc_clr() { ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_clr(), doc_imp(UpdateDocuments, true)]), @"Some(doc_clr() { ids: [0] })");
|
2022-09-14 07:48:58 +08:00
|
|
|
|
|
|
|
// Basic use case
|
2022-10-12 09:21:25 +08:00
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(ReplaceDocuments, true), doc_imp(ReplaceDocuments, true), doc_clr()]), @"Some(doc_clr() { ids: [0, 1, 2] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(UpdateDocuments, true), doc_imp(UpdateDocuments, true), doc_clr()]), @"Some(doc_clr() { ids: [0, 1, 2] })");
|
2022-09-14 07:48:58 +08:00
|
|
|
|
|
|
|
// This batch kind doesn't mix with other document addition
|
2022-10-12 09:21:25 +08:00
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(ReplaceDocuments, true), doc_imp(ReplaceDocuments, true), doc_clr(), doc_imp(ReplaceDocuments, true)]), @"Some(doc_clr() { ids: [0, 1, 2] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(UpdateDocuments, true), doc_imp(UpdateDocuments, true), doc_clr(), doc_imp(UpdateDocuments, true)]), @"Some(doc_clr() { ids: [0, 1, 2] })");
|
2022-09-14 07:48:58 +08:00
|
|
|
|
|
|
|
// But you can batch multiple clear together
|
2022-10-12 09:21:25 +08:00
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(ReplaceDocuments, true), doc_imp(ReplaceDocuments, true), doc_clr(), doc_clr(), doc_clr()]), @"Some(doc_clr() { ids: [0, 1, 2, 3, 4] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(UpdateDocuments, true), doc_imp(UpdateDocuments, true), doc_clr(), doc_clr(), doc_clr()]), @"Some(doc_clr() { ids: [0, 1, 2, 3, 4] })");
|
2022-09-14 07:48:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn clear_and_additions_and_settings() {
|
|
|
|
// A clear don't need to autobatch the settings that happens AFTER there is no documents
|
2022-10-12 09:21:25 +08:00
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_clr(), settings(true)]), @"Some(doc_clr() { ids: [0] })");
|
2022-09-14 07:48:58 +08:00
|
|
|
|
2022-10-12 09:21:25 +08:00
|
|
|
assert_smol_debug_snapshot!(autobatch_from([settings(true), doc_clr(), settings(true)]), @"Some(clearAndSettings([1) allow_index_creation: true, settings_ids: [0, 2] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(ReplaceDocuments, true), settings(true), doc_clr()]), @"Some(clearAndSettings([0)2], allow_index_creation: true, settings_ids: [1] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(UpdateDocuments, true), settings(true), doc_clr()]), @"Some(clearAndSettings([0)2], allow_index_creation: true, settings_ids: [1] })");
|
2022-09-14 07:48:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn anything_and_index_deletion() {
|
|
|
|
// The indexdeletion doesn't batch with anything that happens AFTER
|
2022-10-12 09:21:25 +08:00
|
|
|
assert_smol_debug_snapshot!(autobatch_from([idx_del(), doc_imp(ReplaceDocuments, true)]), @"Some(idx_del() { ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([idx_del(), doc_imp(UpdateDocuments, true)]), @"Some(idx_del() { ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([idx_del(), doc_del()]), @"Some(idx_del() { ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([idx_del(), doc_clr()]), @"Some(idx_del() { ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([idx_del(), settings(true)]), @"Some(idx_del() { ids: [0] })");
|
2022-09-14 07:48:58 +08:00
|
|
|
|
2022-10-12 09:21:25 +08:00
|
|
|
// The index deletion can accept almost any type of BatchKind and transform it to an idx_del()
|
2022-09-14 07:48:58 +08:00
|
|
|
// First, the basic cases
|
2022-10-12 09:21:25 +08:00
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(ReplaceDocuments, true), idx_del()]), @"Some(idx_del() { ids: [0, 1] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(UpdateDocuments, true), idx_del()]), @"Some(idx_del() { ids: [0, 1] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_del(), idx_del()]), @"Some(idx_del() { ids: [0, 1] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_clr(), idx_del()]), @"Some(idx_del() { ids: [0, 1] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([settings(true), idx_del()]), @"Some(idx_del() { ids: [0, 1] })");
|
2022-09-14 07:48:58 +08:00
|
|
|
|
|
|
|
// Then the mixed cases
|
2022-10-12 09:21:25 +08:00
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(ReplaceDocuments, true), settings(true), idx_del()]), @"Some(idx_del() { ids: [0, 2, 1] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(UpdateDocuments, true), settings(true), idx_del()]), @"Some(idx_del() { ids: [0, 2, 1] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(ReplaceDocuments, true), settings(true), doc_clr(), idx_del()]), @"Some(idx_del() { ids: [1, 3, 0, 2] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(UpdateDocuments, true), settings(true), doc_clr(), idx_del()]), @"Some(idx_del() { ids: [1, 3, 0, 2] })");
|
2022-10-06 21:55:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn allowed_and_disallowed_index_creation() {
|
2022-10-12 09:21:25 +08:00
|
|
|
// doc_imp(indexes canbe)ixed with those disallowed to do so
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(ReplaceDocuments, false), doc_imp(ReplaceDocuments, true)]), @"Some(doc_imp(ReplaceDocuments, false)import_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(ReplaceDocuments, true), doc_imp(ReplaceDocuments, true)]), @"Some(doc_imp(ReplaceDocuments, true)import_ids: [0, 1] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(ReplaceDocuments, false), doc_imp(ReplaceDocuments, false)]), @"Some(doc_imp(ReplaceDocuments, false)import_ids: [0, 1] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(ReplaceDocuments, true), settings(true)]), @"Some(settingsAnddoc_imp(: ReplaceDocuments: true)import_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([doc_imp(ReplaceDocuments, false), settings(true)]), @"Some(doc_imp(ReplaceDocuments, false)import_ids: [0] })");
|
2022-09-14 07:48:58 +08:00
|
|
|
}
|
2022-09-09 18:16:19 +08:00
|
|
|
}
|