2022-09-13 14:59:03 +02:00
|
|
|
use std::ops::ControlFlow;
|
|
|
|
|
2022-09-09 12:16:19 +02:00
|
|
|
use crate::{task::Kind, TaskId};
|
|
|
|
|
2022-09-14 01:48:58 +02:00
|
|
|
#[derive(Debug)]
|
2022-09-09 12:16:19 +02:00
|
|
|
pub enum BatchKind {
|
2022-09-13 22:38:43 +02:00
|
|
|
DocumentClear {
|
2022-09-09 12:16:19 +02:00
|
|
|
ids: Vec<TaskId>,
|
|
|
|
},
|
|
|
|
DocumentAddition {
|
|
|
|
addition_ids: Vec<TaskId>,
|
|
|
|
},
|
2022-09-14 00:34:02 +02:00
|
|
|
DocumentUpdate {
|
|
|
|
update_ids: Vec<TaskId>,
|
|
|
|
},
|
2022-09-09 12:16:19 +02:00
|
|
|
DocumentDeletion {
|
|
|
|
deletion_ids: Vec<TaskId>,
|
|
|
|
},
|
2022-09-13 22:38:43 +02:00
|
|
|
ClearAndSettings {
|
2022-09-09 12:16:19 +02:00
|
|
|
other: Vec<TaskId>,
|
|
|
|
settings_ids: Vec<TaskId>,
|
|
|
|
},
|
|
|
|
SettingsAndDocumentAddition {
|
|
|
|
settings_ids: Vec<TaskId>,
|
|
|
|
addition_ids: Vec<TaskId>,
|
|
|
|
},
|
2022-09-14 00:34:02 +02:00
|
|
|
SettingsAndDocumentUpdate {
|
|
|
|
settings_ids: Vec<TaskId>,
|
|
|
|
update_ids: Vec<TaskId>,
|
|
|
|
},
|
2022-09-09 12:16:19 +02:00
|
|
|
Settings {
|
|
|
|
settings_ids: Vec<TaskId>,
|
|
|
|
},
|
2022-09-13 22:38:43 +02:00
|
|
|
IndexDeletion {
|
2022-09-09 12:16:19 +02:00
|
|
|
ids: Vec<TaskId>,
|
|
|
|
},
|
2022-09-13 22:38:43 +02:00
|
|
|
IndexCreation {
|
2022-09-09 12:16:19 +02:00
|
|
|
id: TaskId,
|
|
|
|
},
|
2022-09-13 22:38:43 +02:00
|
|
|
IndexUpdate {
|
2022-09-09 12:16:19 +02:00
|
|
|
id: TaskId,
|
|
|
|
},
|
2022-09-13 22:38:43 +02:00
|
|
|
IndexRename {
|
|
|
|
id: TaskId,
|
|
|
|
},
|
|
|
|
IndexSwap {
|
2022-09-09 12:16:19 +02:00
|
|
|
id: TaskId,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
impl BatchKind {
|
|
|
|
/// return true if you must stop right there.
|
|
|
|
pub fn new(task_id: TaskId, kind: Kind) -> (Self, bool) {
|
|
|
|
match kind {
|
2022-09-13 22:38:43 +02:00
|
|
|
Kind::IndexCreation => (BatchKind::IndexCreation { id: task_id }, true),
|
|
|
|
Kind::IndexDeletion => (BatchKind::IndexDeletion { ids: vec![task_id] }, true),
|
|
|
|
Kind::IndexUpdate => (BatchKind::IndexUpdate { id: task_id }, true),
|
|
|
|
Kind::IndexRename => (BatchKind::IndexRename { id: task_id }, true),
|
|
|
|
Kind::IndexSwap => (BatchKind::IndexSwap { id: task_id }, true),
|
|
|
|
Kind::DocumentClear => (BatchKind::DocumentClear { ids: vec![task_id] }, false),
|
2022-09-14 00:34:02 +02:00
|
|
|
Kind::DocumentAddition => (
|
2022-09-09 12:16:19 +02:00
|
|
|
BatchKind::DocumentAddition {
|
|
|
|
addition_ids: vec![task_id],
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
),
|
2022-09-14 00:34:02 +02:00
|
|
|
Kind::DocumentUpdate => (
|
|
|
|
BatchKind::DocumentUpdate {
|
|
|
|
update_ids: vec![task_id],
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
),
|
2022-09-09 12:16:19 +02:00
|
|
|
Kind::DocumentDeletion => (
|
|
|
|
BatchKind::DocumentDeletion {
|
|
|
|
deletion_ids: vec![task_id],
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
),
|
|
|
|
Kind::Settings => (
|
|
|
|
BatchKind::Settings {
|
|
|
|
settings_ids: vec![task_id],
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
),
|
|
|
|
|
|
|
|
Kind::DumpExport | Kind::Snapshot | Kind::CancelTask => unreachable!(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Return true if you must stop.
|
2022-09-14 13:13:44 +02:00
|
|
|
fn accumulate(self, id: TaskId, kind: Kind) -> ControlFlow<Self, Self> {
|
2022-09-09 12:16:19 +02:00
|
|
|
match (self, kind) {
|
2022-09-13 14:59:03 +02:00
|
|
|
// We don't batch any of these operations
|
2022-09-13 22:38:43 +02:00
|
|
|
(
|
|
|
|
this,
|
|
|
|
Kind::IndexCreation | Kind::IndexRename | Kind::IndexUpdate | Kind::IndexSwap,
|
|
|
|
) => ControlFlow::Break(this),
|
2022-09-13 14:59:03 +02:00
|
|
|
// The index deletion can batch with everything but must stop after
|
|
|
|
(
|
2022-09-13 22:38:43 +02:00
|
|
|
BatchKind::DocumentClear { mut ids }
|
2022-09-13 14:59:03 +02:00
|
|
|
| BatchKind::DocumentAddition {
|
|
|
|
addition_ids: mut ids,
|
|
|
|
}
|
2022-09-14 00:34:02 +02:00
|
|
|
| BatchKind::DocumentUpdate {
|
|
|
|
update_ids: mut ids,
|
|
|
|
}
|
2022-09-13 14:59:03 +02:00
|
|
|
| BatchKind::DocumentDeletion {
|
|
|
|
deletion_ids: mut ids,
|
|
|
|
}
|
|
|
|
| BatchKind::Settings {
|
|
|
|
settings_ids: mut ids,
|
|
|
|
},
|
2022-09-13 22:38:43 +02:00
|
|
|
Kind::IndexDeletion,
|
2022-09-13 14:59:03 +02:00
|
|
|
) => {
|
|
|
|
ids.push(id);
|
2022-09-13 22:38:43 +02:00
|
|
|
ControlFlow::Break(BatchKind::IndexDeletion { ids })
|
2022-09-13 14:59:03 +02:00
|
|
|
}
|
|
|
|
(
|
2022-09-13 22:38:43 +02:00
|
|
|
BatchKind::ClearAndSettings {
|
2022-09-13 14:59:03 +02:00
|
|
|
settings_ids: mut ids,
|
|
|
|
mut other,
|
|
|
|
}
|
|
|
|
| BatchKind::SettingsAndDocumentAddition {
|
|
|
|
addition_ids: mut ids,
|
|
|
|
settings_ids: mut other,
|
2022-09-14 00:34:02 +02:00
|
|
|
}
|
|
|
|
| BatchKind::SettingsAndDocumentUpdate {
|
|
|
|
update_ids: mut ids,
|
|
|
|
settings_ids: mut other,
|
2022-09-13 14:59:03 +02:00
|
|
|
},
|
2022-09-13 22:38:43 +02:00
|
|
|
Kind::IndexDeletion,
|
2022-09-13 14:59:03 +02:00
|
|
|
) => {
|
|
|
|
ids.push(id);
|
|
|
|
ids.append(&mut other);
|
2022-09-13 22:38:43 +02:00
|
|
|
ControlFlow::Break(BatchKind::IndexDeletion { ids })
|
2022-09-13 14:59:03 +02:00
|
|
|
}
|
2022-09-09 12:16:19 +02:00
|
|
|
|
2022-09-13 22:38:43 +02:00
|
|
|
(
|
|
|
|
BatchKind::DocumentClear { mut ids },
|
|
|
|
Kind::DocumentClear | Kind::DocumentDeletion,
|
|
|
|
) => {
|
2022-09-09 12:16:19 +02:00
|
|
|
ids.push(id);
|
2022-09-13 22:38:43 +02:00
|
|
|
ControlFlow::Continue(BatchKind::DocumentClear { ids })
|
2022-09-09 12:16:19 +02:00
|
|
|
}
|
2022-09-13 22:38:43 +02:00
|
|
|
(
|
|
|
|
this @ BatchKind::DocumentClear { .. },
|
2022-09-14 00:34:02 +02:00
|
|
|
Kind::DocumentAddition | Kind::DocumentUpdate | Kind::Settings,
|
2022-09-13 22:38:43 +02:00
|
|
|
) => ControlFlow::Break(this),
|
2022-09-14 00:34:02 +02:00
|
|
|
(
|
|
|
|
BatchKind::DocumentAddition {
|
|
|
|
addition_ids: mut ids,
|
|
|
|
}
|
|
|
|
| BatchKind::DocumentUpdate {
|
|
|
|
update_ids: mut ids,
|
|
|
|
},
|
|
|
|
Kind::DocumentClear,
|
|
|
|
) => {
|
|
|
|
ids.push(id);
|
|
|
|
ControlFlow::Continue(BatchKind::DocumentClear { ids })
|
2022-09-09 12:16:19 +02:00
|
|
|
}
|
|
|
|
|
2022-09-14 00:34:02 +02:00
|
|
|
// we can autobatch the same kind of document additions / updates
|
|
|
|
(BatchKind::DocumentAddition { mut addition_ids }, Kind::DocumentAddition) => {
|
2022-09-09 12:16:19 +02:00
|
|
|
addition_ids.push(id);
|
2022-09-13 14:59:03 +02:00
|
|
|
ControlFlow::Continue(BatchKind::DocumentAddition { addition_ids })
|
|
|
|
}
|
2022-09-14 00:34:02 +02:00
|
|
|
(BatchKind::DocumentUpdate { mut update_ids }, Kind::DocumentUpdate) => {
|
|
|
|
update_ids.push(id);
|
|
|
|
ControlFlow::Continue(BatchKind::DocumentUpdate { update_ids })
|
2022-09-09 12:16:19 +02:00
|
|
|
}
|
2022-09-14 00:34:02 +02:00
|
|
|
// but we can't autobatch documents if it's not the same kind
|
|
|
|
// this match branch MUST be AFTER the previous one
|
|
|
|
(
|
|
|
|
this @ BatchKind::DocumentAddition { .. } | this @ BatchKind::DocumentUpdate { .. },
|
|
|
|
Kind::DocumentDeletion | Kind::DocumentAddition | Kind::DocumentUpdate,
|
|
|
|
) => ControlFlow::Break(this),
|
2022-09-09 12:16:19 +02:00
|
|
|
(BatchKind::DocumentAddition { addition_ids }, Kind::Settings) => {
|
2022-09-13 14:59:03 +02:00
|
|
|
ControlFlow::Continue(BatchKind::SettingsAndDocumentAddition {
|
2022-09-09 12:16:19 +02:00
|
|
|
settings_ids: vec![id],
|
2022-09-13 14:59:03 +02:00
|
|
|
addition_ids,
|
|
|
|
})
|
2022-09-09 12:16:19 +02:00
|
|
|
}
|
2022-09-14 00:34:02 +02:00
|
|
|
(BatchKind::DocumentUpdate { update_ids }, Kind::Settings) => {
|
|
|
|
ControlFlow::Continue(BatchKind::SettingsAndDocumentUpdate {
|
|
|
|
settings_ids: vec![id],
|
|
|
|
update_ids,
|
|
|
|
})
|
|
|
|
}
|
2022-09-09 12:16:19 +02:00
|
|
|
|
2022-09-13 22:38:43 +02:00
|
|
|
(BatchKind::DocumentDeletion { mut deletion_ids }, Kind::DocumentClear) => {
|
2022-09-09 12:16:19 +02:00
|
|
|
deletion_ids.push(id);
|
2022-09-13 22:38:43 +02:00
|
|
|
ControlFlow::Continue(BatchKind::DocumentClear { ids: deletion_ids })
|
2022-09-13 14:59:03 +02:00
|
|
|
}
|
2022-09-14 00:34:02 +02:00
|
|
|
(
|
|
|
|
this @ BatchKind::DocumentDeletion { .. },
|
|
|
|
Kind::DocumentAddition | Kind::DocumentUpdate,
|
|
|
|
) => ControlFlow::Break(this),
|
2022-09-13 14:59:03 +02:00
|
|
|
(BatchKind::DocumentDeletion { mut deletion_ids }, Kind::DocumentDeletion) => {
|
2022-09-09 12:16:19 +02:00
|
|
|
deletion_ids.push(id);
|
2022-09-13 14:59:03 +02:00
|
|
|
ControlFlow::Continue(BatchKind::DocumentDeletion { deletion_ids })
|
2022-09-09 12:16:19 +02:00
|
|
|
}
|
2022-09-13 14:59:03 +02:00
|
|
|
(this @ BatchKind::DocumentDeletion { .. }, Kind::Settings) => ControlFlow::Break(this),
|
2022-09-09 12:16:19 +02:00
|
|
|
|
2022-09-13 22:38:43 +02:00
|
|
|
(BatchKind::Settings { settings_ids }, Kind::DocumentClear) => {
|
|
|
|
ControlFlow::Continue(BatchKind::ClearAndSettings {
|
2022-09-09 12:16:19 +02:00
|
|
|
settings_ids: settings_ids.clone(),
|
|
|
|
other: vec![id],
|
2022-09-13 14:59:03 +02:00
|
|
|
})
|
2022-09-09 12:16:19 +02:00
|
|
|
}
|
2022-09-14 00:34:02 +02:00
|
|
|
(
|
|
|
|
this @ BatchKind::Settings { .. },
|
|
|
|
Kind::DocumentAddition | Kind::DocumentUpdate | Kind::DocumentDeletion,
|
|
|
|
) => ControlFlow::Break(this),
|
2022-09-13 14:59:03 +02:00
|
|
|
(BatchKind::Settings { mut settings_ids }, Kind::Settings) => {
|
2022-09-09 12:16:19 +02:00
|
|
|
settings_ids.push(id);
|
2022-09-13 14:59:03 +02:00
|
|
|
ControlFlow::Continue(BatchKind::Settings { settings_ids })
|
2022-09-09 12:16:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
(
|
2022-09-13 22:38:43 +02:00
|
|
|
BatchKind::ClearAndSettings {
|
2022-09-13 14:59:03 +02:00
|
|
|
mut other,
|
2022-09-09 12:16:19 +02:00
|
|
|
settings_ids,
|
|
|
|
},
|
2022-09-13 22:38:43 +02:00
|
|
|
Kind::DocumentClear,
|
2022-09-09 12:16:19 +02:00
|
|
|
) => {
|
|
|
|
other.push(id);
|
2022-09-13 22:38:43 +02:00
|
|
|
ControlFlow::Continue(BatchKind::ClearAndSettings {
|
2022-09-13 14:59:03 +02:00
|
|
|
other,
|
|
|
|
settings_ids,
|
|
|
|
})
|
|
|
|
}
|
2022-09-14 00:34:02 +02:00
|
|
|
(
|
|
|
|
this @ BatchKind::ClearAndSettings { .. },
|
|
|
|
Kind::DocumentAddition | Kind::DocumentUpdate,
|
|
|
|
) => ControlFlow::Break(this),
|
2022-09-09 12:16:19 +02:00
|
|
|
(
|
2022-09-13 22:38:43 +02:00
|
|
|
BatchKind::ClearAndSettings {
|
2022-09-13 14:59:03 +02:00
|
|
|
mut other,
|
2022-09-09 12:16:19 +02:00
|
|
|
settings_ids,
|
|
|
|
},
|
|
|
|
Kind::DocumentDeletion,
|
|
|
|
) => {
|
|
|
|
other.push(id);
|
2022-09-13 22:38:43 +02:00
|
|
|
ControlFlow::Continue(BatchKind::ClearAndSettings {
|
2022-09-13 14:59:03 +02:00
|
|
|
other,
|
|
|
|
settings_ids,
|
|
|
|
})
|
2022-09-09 12:16:19 +02:00
|
|
|
}
|
|
|
|
(
|
2022-09-13 22:38:43 +02:00
|
|
|
BatchKind::ClearAndSettings {
|
2022-09-13 14:59:03 +02:00
|
|
|
mut settings_ids,
|
2022-09-09 12:16:19 +02:00
|
|
|
other,
|
|
|
|
},
|
|
|
|
Kind::Settings,
|
|
|
|
) => {
|
|
|
|
settings_ids.push(id);
|
2022-09-13 22:38:43 +02:00
|
|
|
ControlFlow::Continue(BatchKind::ClearAndSettings {
|
2022-09-13 14:59:03 +02:00
|
|
|
other,
|
|
|
|
settings_ids,
|
|
|
|
})
|
2022-09-09 12:16:19 +02:00
|
|
|
}
|
|
|
|
(
|
|
|
|
BatchKind::SettingsAndDocumentAddition {
|
|
|
|
settings_ids,
|
2022-09-14 00:34:02 +02:00
|
|
|
addition_ids: mut other,
|
|
|
|
}
|
|
|
|
| BatchKind::SettingsAndDocumentUpdate {
|
|
|
|
settings_ids,
|
|
|
|
update_ids: mut other,
|
2022-09-09 12:16:19 +02:00
|
|
|
},
|
2022-09-13 22:38:43 +02:00
|
|
|
Kind::DocumentClear,
|
2022-09-09 12:16:19 +02:00
|
|
|
) => {
|
2022-09-14 00:34:02 +02:00
|
|
|
other.push(id);
|
2022-09-13 14:59:03 +02:00
|
|
|
|
2022-09-13 22:38:43 +02:00
|
|
|
ControlFlow::Continue(BatchKind::ClearAndSettings {
|
2022-09-13 14:59:03 +02:00
|
|
|
settings_ids,
|
2022-09-14 00:34:02 +02:00
|
|
|
other,
|
2022-09-13 14:59:03 +02:00
|
|
|
})
|
2022-09-09 12:16:19 +02:00
|
|
|
}
|
2022-09-14 00:34:02 +02:00
|
|
|
|
|
|
|
// we can batch the settings with a kind of document operation with the same kind of document operation
|
2022-09-09 12:16:19 +02:00
|
|
|
(
|
|
|
|
BatchKind::SettingsAndDocumentAddition {
|
2022-09-13 14:59:03 +02:00
|
|
|
mut addition_ids,
|
2022-09-09 12:16:19 +02:00
|
|
|
settings_ids,
|
|
|
|
},
|
2022-09-14 00:34:02 +02:00
|
|
|
Kind::DocumentAddition,
|
2022-09-09 12:16:19 +02:00
|
|
|
) => {
|
|
|
|
addition_ids.push(id);
|
2022-09-13 14:59:03 +02:00
|
|
|
ControlFlow::Continue(BatchKind::SettingsAndDocumentAddition {
|
2022-09-09 12:16:19 +02:00
|
|
|
addition_ids,
|
2022-09-13 14:59:03 +02:00
|
|
|
settings_ids,
|
|
|
|
})
|
|
|
|
}
|
2022-09-14 00:34:02 +02:00
|
|
|
(
|
|
|
|
BatchKind::SettingsAndDocumentUpdate {
|
|
|
|
mut update_ids,
|
|
|
|
settings_ids,
|
|
|
|
},
|
|
|
|
Kind::DocumentUpdate,
|
|
|
|
) => {
|
|
|
|
update_ids.push(id);
|
|
|
|
ControlFlow::Continue(BatchKind::SettingsAndDocumentUpdate {
|
|
|
|
update_ids,
|
|
|
|
settings_ids,
|
|
|
|
})
|
2022-09-13 14:59:03 +02:00
|
|
|
}
|
2022-09-14 00:34:02 +02:00
|
|
|
// But we can't batch a settings and a doc op with another doc op
|
|
|
|
// this MUST be AFTER the two previous branch
|
|
|
|
(
|
|
|
|
this @ BatchKind::SettingsAndDocumentAddition { .. }
|
|
|
|
| this @ BatchKind::SettingsAndDocumentUpdate { .. },
|
|
|
|
Kind::DocumentDeletion | Kind::DocumentAddition | Kind::DocumentUpdate,
|
|
|
|
) => ControlFlow::Break(this),
|
2022-09-09 12:16:19 +02:00
|
|
|
(
|
|
|
|
BatchKind::SettingsAndDocumentAddition {
|
2022-09-13 14:59:03 +02:00
|
|
|
mut settings_ids,
|
2022-09-09 12:16:19 +02:00
|
|
|
addition_ids,
|
|
|
|
},
|
|
|
|
Kind::Settings,
|
|
|
|
) => {
|
|
|
|
settings_ids.push(id);
|
2022-09-13 14:59:03 +02:00
|
|
|
ControlFlow::Continue(BatchKind::SettingsAndDocumentAddition {
|
|
|
|
settings_ids,
|
|
|
|
addition_ids,
|
|
|
|
})
|
2022-09-09 12:16:19 +02:00
|
|
|
}
|
2022-09-14 00:34:02 +02:00
|
|
|
(
|
|
|
|
BatchKind::SettingsAndDocumentUpdate {
|
|
|
|
mut settings_ids,
|
|
|
|
update_ids,
|
|
|
|
},
|
|
|
|
Kind::Settings,
|
|
|
|
) => {
|
|
|
|
settings_ids.push(id);
|
|
|
|
ControlFlow::Continue(BatchKind::SettingsAndDocumentUpdate {
|
|
|
|
settings_ids,
|
|
|
|
update_ids,
|
|
|
|
})
|
|
|
|
}
|
2022-09-09 12:16:19 +02:00
|
|
|
(_, Kind::CancelTask | Kind::DumpExport | Kind::Snapshot) => unreachable!(),
|
|
|
|
(
|
2022-09-13 22:38:43 +02:00
|
|
|
BatchKind::IndexCreation { .. }
|
|
|
|
| BatchKind::IndexDeletion { .. }
|
|
|
|
| BatchKind::IndexUpdate { .. }
|
|
|
|
| BatchKind::IndexRename { .. }
|
|
|
|
| BatchKind::IndexSwap { .. },
|
2022-09-09 12:16:19 +02:00
|
|
|
_,
|
|
|
|
) => {
|
|
|
|
unreachable!()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn autobatch(enqueued: Vec<(TaskId, Kind)>) -> Option<BatchKind> {
|
|
|
|
let mut enqueued = enqueued.into_iter();
|
|
|
|
let (id, kind) = enqueued.next()?;
|
|
|
|
let (mut acc, is_finished) = BatchKind::new(id, kind);
|
|
|
|
if is_finished {
|
|
|
|
return Some(acc);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (id, kind) in enqueued {
|
2022-09-13 14:59:03 +02:00
|
|
|
acc = match acc.accumulate(id, kind) {
|
|
|
|
ControlFlow::Continue(acc) => acc,
|
|
|
|
ControlFlow::Break(acc) => return Some(acc),
|
|
|
|
};
|
2022-09-09 12:16:19 +02:00
|
|
|
}
|
|
|
|
|
2022-09-14 01:48:58 +02:00
|
|
|
Some(acc)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
use insta::*;
|
|
|
|
use Kind::*;
|
|
|
|
|
|
|
|
fn input_from(input: impl IntoIterator<Item = Kind>) -> Vec<(TaskId, Kind)> {
|
|
|
|
input
|
|
|
|
.into_iter()
|
|
|
|
.enumerate()
|
|
|
|
.map(|(id, kind)| (id as TaskId, kind))
|
|
|
|
.collect()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn autobatch_simple_operation_together() {
|
|
|
|
// we can autobatch one or multiple DocumentAddition together
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentAddition])), @r###"
|
|
|
|
Some(
|
|
|
|
DocumentAddition {
|
|
|
|
addition_ids: [
|
|
|
|
0,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentAddition, DocumentAddition, DocumentAddition])), @r###"
|
|
|
|
Some(
|
|
|
|
DocumentAddition {
|
|
|
|
addition_ids: [
|
|
|
|
0,
|
|
|
|
1,
|
|
|
|
2,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
// we can autobatch one or multiple DocumentUpdate together
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentUpdate])), @r###"
|
|
|
|
Some(
|
|
|
|
DocumentUpdate {
|
|
|
|
update_ids: [
|
|
|
|
0,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentUpdate, DocumentUpdate, DocumentUpdate])), @r###"
|
|
|
|
Some(
|
|
|
|
DocumentUpdate {
|
|
|
|
update_ids: [
|
|
|
|
0,
|
|
|
|
1,
|
|
|
|
2,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
// we can autobatch one or multiple DocumentDeletion together
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentDeletion])), @r###"
|
|
|
|
Some(
|
|
|
|
DocumentDeletion {
|
|
|
|
deletion_ids: [
|
|
|
|
0,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentDeletion, DocumentDeletion, DocumentDeletion])), @r###"
|
|
|
|
Some(
|
|
|
|
DocumentDeletion {
|
|
|
|
deletion_ids: [
|
|
|
|
0,
|
|
|
|
1,
|
|
|
|
2,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
// we can autobatch one or multiple Settings together
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([Settings])), @r###"
|
|
|
|
Some(
|
|
|
|
Settings {
|
|
|
|
settings_ids: [
|
|
|
|
0,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([Settings, Settings, Settings])), @r###"
|
|
|
|
Some(
|
|
|
|
Settings {
|
|
|
|
settings_ids: [
|
|
|
|
0,
|
|
|
|
1,
|
|
|
|
2,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn simple_document_operation_dont_autobatch_with_other() {
|
|
|
|
// addition, updates and deletion can't batch together
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentAddition, DocumentUpdate])), @r###"
|
|
|
|
Some(
|
|
|
|
DocumentAddition {
|
|
|
|
addition_ids: [
|
|
|
|
0,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentAddition, DocumentDeletion])), @r###"
|
|
|
|
Some(
|
|
|
|
DocumentAddition {
|
|
|
|
addition_ids: [
|
|
|
|
0,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentUpdate, DocumentAddition])), @r###"
|
|
|
|
Some(
|
|
|
|
DocumentUpdate {
|
|
|
|
update_ids: [
|
|
|
|
0,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentUpdate, DocumentDeletion])), @r###"
|
|
|
|
Some(
|
|
|
|
DocumentUpdate {
|
|
|
|
update_ids: [
|
|
|
|
0,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentDeletion, DocumentAddition])), @r###"
|
|
|
|
Some(
|
|
|
|
DocumentDeletion {
|
|
|
|
deletion_ids: [
|
|
|
|
0,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentDeletion, DocumentUpdate])), @r###"
|
|
|
|
Some(
|
|
|
|
DocumentDeletion {
|
|
|
|
deletion_ids: [
|
|
|
|
0,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentAddition, IndexCreation])), @r###"
|
|
|
|
Some(
|
|
|
|
DocumentAddition {
|
|
|
|
addition_ids: [
|
|
|
|
0,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentUpdate, IndexCreation])), @r###"
|
|
|
|
Some(
|
|
|
|
DocumentUpdate {
|
|
|
|
update_ids: [
|
|
|
|
0,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentDeletion, IndexCreation])), @r###"
|
|
|
|
Some(
|
|
|
|
DocumentDeletion {
|
|
|
|
deletion_ids: [
|
|
|
|
0,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentAddition, IndexUpdate])), @r###"
|
|
|
|
Some(
|
|
|
|
DocumentAddition {
|
|
|
|
addition_ids: [
|
|
|
|
0,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentUpdate, IndexUpdate])), @r###"
|
|
|
|
Some(
|
|
|
|
DocumentUpdate {
|
|
|
|
update_ids: [
|
|
|
|
0,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentDeletion, IndexUpdate])), @r###"
|
|
|
|
Some(
|
|
|
|
DocumentDeletion {
|
|
|
|
deletion_ids: [
|
|
|
|
0,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentAddition, IndexRename])), @r###"
|
|
|
|
Some(
|
|
|
|
DocumentAddition {
|
|
|
|
addition_ids: [
|
|
|
|
0,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentUpdate, IndexRename])), @r###"
|
|
|
|
Some(
|
|
|
|
DocumentUpdate {
|
|
|
|
update_ids: [
|
|
|
|
0,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentDeletion, IndexRename])), @r###"
|
|
|
|
Some(
|
|
|
|
DocumentDeletion {
|
|
|
|
deletion_ids: [
|
|
|
|
0,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentAddition, IndexSwap])), @r###"
|
|
|
|
Some(
|
|
|
|
DocumentAddition {
|
|
|
|
addition_ids: [
|
|
|
|
0,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentUpdate, IndexSwap])), @r###"
|
|
|
|
Some(
|
|
|
|
DocumentUpdate {
|
|
|
|
update_ids: [
|
|
|
|
0,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentDeletion, IndexSwap])), @r###"
|
|
|
|
Some(
|
|
|
|
DocumentDeletion {
|
|
|
|
deletion_ids: [
|
|
|
|
0,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn document_addition_batch_with_settings() {
|
|
|
|
// simple case
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentAddition, Settings])), @r###"
|
|
|
|
Some(
|
|
|
|
SettingsAndDocumentAddition {
|
|
|
|
settings_ids: [
|
|
|
|
1,
|
|
|
|
],
|
|
|
|
addition_ids: [
|
|
|
|
0,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentUpdate, Settings])), @r###"
|
|
|
|
Some(
|
|
|
|
SettingsAndDocumentUpdate {
|
|
|
|
settings_ids: [
|
|
|
|
1,
|
|
|
|
],
|
|
|
|
update_ids: [
|
|
|
|
0,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
|
|
|
|
// multiple settings and doc addition
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentAddition, DocumentAddition, Settings, Settings])), @r###"
|
|
|
|
Some(
|
|
|
|
SettingsAndDocumentAddition {
|
|
|
|
settings_ids: [
|
|
|
|
2,
|
|
|
|
3,
|
|
|
|
],
|
|
|
|
addition_ids: [
|
|
|
|
0,
|
|
|
|
1,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentAddition, DocumentAddition, Settings, Settings])), @r###"
|
|
|
|
Some(
|
|
|
|
SettingsAndDocumentAddition {
|
|
|
|
settings_ids: [
|
|
|
|
2,
|
|
|
|
3,
|
|
|
|
],
|
|
|
|
addition_ids: [
|
|
|
|
0,
|
|
|
|
1,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
|
|
|
|
// addition and setting unordered
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentAddition, Settings, DocumentAddition, Settings])), @r###"
|
|
|
|
Some(
|
|
|
|
SettingsAndDocumentAddition {
|
|
|
|
settings_ids: [
|
|
|
|
1,
|
|
|
|
3,
|
|
|
|
],
|
|
|
|
addition_ids: [
|
|
|
|
0,
|
|
|
|
2,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentUpdate, Settings, DocumentUpdate, Settings])), @r###"
|
|
|
|
Some(
|
|
|
|
SettingsAndDocumentUpdate {
|
|
|
|
settings_ids: [
|
|
|
|
1,
|
|
|
|
3,
|
|
|
|
],
|
|
|
|
update_ids: [
|
|
|
|
0,
|
|
|
|
2,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
|
|
|
|
// We ensure this kind of batch doesn't batch with forbidden operations
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentAddition, Settings, DocumentUpdate])), @r###"
|
|
|
|
Some(
|
|
|
|
SettingsAndDocumentAddition {
|
|
|
|
settings_ids: [
|
|
|
|
1,
|
|
|
|
],
|
|
|
|
addition_ids: [
|
|
|
|
0,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentUpdate, Settings, DocumentAddition])), @r###"
|
|
|
|
Some(
|
|
|
|
SettingsAndDocumentUpdate {
|
|
|
|
settings_ids: [
|
|
|
|
1,
|
|
|
|
],
|
|
|
|
update_ids: [
|
|
|
|
0,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentAddition, Settings, DocumentDeletion])), @r###"
|
|
|
|
Some(
|
|
|
|
SettingsAndDocumentAddition {
|
|
|
|
settings_ids: [
|
|
|
|
1,
|
|
|
|
],
|
|
|
|
addition_ids: [
|
|
|
|
0,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentUpdate, Settings, DocumentDeletion])), @r###"
|
|
|
|
Some(
|
|
|
|
SettingsAndDocumentUpdate {
|
|
|
|
settings_ids: [
|
|
|
|
1,
|
|
|
|
],
|
|
|
|
update_ids: [
|
|
|
|
0,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentAddition, Settings, IndexCreation])), @r###"
|
|
|
|
Some(
|
|
|
|
SettingsAndDocumentAddition {
|
|
|
|
settings_ids: [
|
|
|
|
1,
|
|
|
|
],
|
|
|
|
addition_ids: [
|
|
|
|
0,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentUpdate, Settings, IndexCreation])), @r###"
|
|
|
|
Some(
|
|
|
|
SettingsAndDocumentUpdate {
|
|
|
|
settings_ids: [
|
|
|
|
1,
|
|
|
|
],
|
|
|
|
update_ids: [
|
|
|
|
0,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentAddition, Settings, IndexUpdate])), @r###"
|
|
|
|
Some(
|
|
|
|
SettingsAndDocumentAddition {
|
|
|
|
settings_ids: [
|
|
|
|
1,
|
|
|
|
],
|
|
|
|
addition_ids: [
|
|
|
|
0,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentUpdate, Settings, IndexUpdate])), @r###"
|
|
|
|
Some(
|
|
|
|
SettingsAndDocumentUpdate {
|
|
|
|
settings_ids: [
|
|
|
|
1,
|
|
|
|
],
|
|
|
|
update_ids: [
|
|
|
|
0,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentAddition, Settings, IndexRename])), @r###"
|
|
|
|
Some(
|
|
|
|
SettingsAndDocumentAddition {
|
|
|
|
settings_ids: [
|
|
|
|
1,
|
|
|
|
],
|
|
|
|
addition_ids: [
|
|
|
|
0,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentUpdate, Settings, IndexRename])), @r###"
|
|
|
|
Some(
|
|
|
|
SettingsAndDocumentUpdate {
|
|
|
|
settings_ids: [
|
|
|
|
1,
|
|
|
|
],
|
|
|
|
update_ids: [
|
|
|
|
0,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentAddition, Settings, IndexSwap])), @r###"
|
|
|
|
Some(
|
|
|
|
SettingsAndDocumentAddition {
|
|
|
|
settings_ids: [
|
|
|
|
1,
|
|
|
|
],
|
|
|
|
addition_ids: [
|
|
|
|
0,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentUpdate, Settings, IndexSwap])), @r###"
|
|
|
|
Some(
|
|
|
|
SettingsAndDocumentUpdate {
|
|
|
|
settings_ids: [
|
|
|
|
1,
|
|
|
|
],
|
|
|
|
update_ids: [
|
|
|
|
0,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn clear_and_additions() {
|
|
|
|
// these two doesn't need to batch
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentClear, DocumentAddition])), @r###"
|
|
|
|
Some(
|
|
|
|
DocumentClear {
|
|
|
|
ids: [
|
|
|
|
0,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentClear, DocumentUpdate])), @r###"
|
|
|
|
Some(
|
|
|
|
DocumentClear {
|
|
|
|
ids: [
|
|
|
|
0,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
|
|
|
|
// Basic use case
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentAddition, DocumentAddition, DocumentClear])), @r###"
|
|
|
|
Some(
|
|
|
|
DocumentClear {
|
|
|
|
ids: [
|
|
|
|
0,
|
|
|
|
1,
|
|
|
|
2,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentUpdate, DocumentUpdate, DocumentClear])), @r###"
|
|
|
|
Some(
|
|
|
|
DocumentClear {
|
|
|
|
ids: [
|
|
|
|
0,
|
|
|
|
1,
|
|
|
|
2,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
|
|
|
|
// This batch kind doesn't mix with other document addition
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentAddition, DocumentAddition, DocumentClear, DocumentAddition])), @r###"
|
|
|
|
Some(
|
|
|
|
DocumentClear {
|
|
|
|
ids: [
|
|
|
|
0,
|
|
|
|
1,
|
|
|
|
2,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentUpdate, DocumentUpdate, DocumentClear, DocumentUpdate])), @r###"
|
|
|
|
Some(
|
|
|
|
DocumentClear {
|
|
|
|
ids: [
|
|
|
|
0,
|
|
|
|
1,
|
|
|
|
2,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
|
|
|
|
// But you can batch multiple clear together
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentAddition, DocumentAddition, DocumentClear, DocumentClear, DocumentClear])), @r###"
|
|
|
|
Some(
|
|
|
|
DocumentClear {
|
|
|
|
ids: [
|
|
|
|
0,
|
|
|
|
1,
|
|
|
|
2,
|
|
|
|
3,
|
|
|
|
4,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentUpdate, DocumentUpdate, DocumentClear, DocumentClear, DocumentClear])), @r###"
|
|
|
|
Some(
|
|
|
|
DocumentClear {
|
|
|
|
ids: [
|
|
|
|
0,
|
|
|
|
1,
|
|
|
|
2,
|
|
|
|
3,
|
|
|
|
4,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn clear_and_additions_and_settings() {
|
|
|
|
// A clear don't need to autobatch the settings that happens AFTER there is no documents
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentClear, Settings])), @r###"
|
|
|
|
Some(
|
|
|
|
DocumentClear {
|
|
|
|
ids: [
|
|
|
|
0,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([Settings, DocumentClear, Settings])), @r###"
|
|
|
|
Some(
|
|
|
|
ClearAndSettings {
|
|
|
|
other: [
|
|
|
|
1,
|
|
|
|
],
|
|
|
|
settings_ids: [
|
|
|
|
0,
|
|
|
|
2,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentAddition, Settings, DocumentClear])), @r###"
|
|
|
|
Some(
|
|
|
|
ClearAndSettings {
|
|
|
|
other: [
|
|
|
|
0,
|
|
|
|
2,
|
|
|
|
],
|
|
|
|
settings_ids: [
|
|
|
|
1,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentUpdate, Settings, DocumentClear])), @r###"
|
|
|
|
Some(
|
|
|
|
ClearAndSettings {
|
|
|
|
other: [
|
|
|
|
0,
|
|
|
|
2,
|
|
|
|
],
|
|
|
|
settings_ids: [
|
|
|
|
1,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn anything_and_index_deletion() {
|
|
|
|
// The indexdeletion doesn't batch with anything that happens AFTER
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([IndexDeletion, DocumentAddition])), @r###"
|
|
|
|
Some(
|
|
|
|
IndexDeletion {
|
|
|
|
ids: [
|
|
|
|
0,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([IndexDeletion, DocumentUpdate])), @r###"
|
|
|
|
Some(
|
|
|
|
IndexDeletion {
|
|
|
|
ids: [
|
|
|
|
0,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([IndexDeletion, DocumentDeletion])), @r###"
|
|
|
|
Some(
|
|
|
|
IndexDeletion {
|
|
|
|
ids: [
|
|
|
|
0,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([IndexDeletion, DocumentClear])), @r###"
|
|
|
|
Some(
|
|
|
|
IndexDeletion {
|
|
|
|
ids: [
|
|
|
|
0,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([IndexDeletion, Settings])), @r###"
|
|
|
|
Some(
|
|
|
|
IndexDeletion {
|
|
|
|
ids: [
|
|
|
|
0,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
|
|
|
|
// The index deletion can accept almost any type of BatchKind and transform it to an IndexDeletion
|
|
|
|
// First, the basic cases
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentAddition, IndexDeletion])), @r###"
|
|
|
|
Some(
|
|
|
|
IndexDeletion {
|
|
|
|
ids: [
|
|
|
|
0,
|
|
|
|
1,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentUpdate, IndexDeletion])), @r###"
|
|
|
|
Some(
|
|
|
|
IndexDeletion {
|
|
|
|
ids: [
|
|
|
|
0,
|
|
|
|
1,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentDeletion, IndexDeletion])), @r###"
|
|
|
|
Some(
|
|
|
|
IndexDeletion {
|
|
|
|
ids: [
|
|
|
|
0,
|
|
|
|
1,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentClear, IndexDeletion])), @r###"
|
|
|
|
Some(
|
|
|
|
IndexDeletion {
|
|
|
|
ids: [
|
|
|
|
0,
|
|
|
|
1,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([Settings, IndexDeletion])), @r###"
|
|
|
|
Some(
|
|
|
|
IndexDeletion {
|
|
|
|
ids: [
|
|
|
|
0,
|
|
|
|
1,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
|
|
|
|
// Then the mixed cases
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentAddition, Settings, IndexDeletion])), @r###"
|
|
|
|
Some(
|
|
|
|
IndexDeletion {
|
|
|
|
ids: [
|
|
|
|
0,
|
|
|
|
2,
|
|
|
|
1,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentUpdate, Settings, IndexDeletion])), @r###"
|
|
|
|
Some(
|
|
|
|
IndexDeletion {
|
|
|
|
ids: [
|
|
|
|
0,
|
|
|
|
2,
|
|
|
|
1,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentAddition, Settings, DocumentClear, IndexDeletion])), @r###"
|
|
|
|
Some(
|
|
|
|
IndexDeletion {
|
|
|
|
ids: [
|
|
|
|
1,
|
|
|
|
3,
|
|
|
|
0,
|
|
|
|
2,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
assert_debug_snapshot!(autobatch(input_from([DocumentUpdate, Settings, DocumentClear, IndexDeletion])), @r###"
|
|
|
|
Some(
|
|
|
|
IndexDeletion {
|
|
|
|
ids: [
|
|
|
|
1,
|
|
|
|
3,
|
|
|
|
0,
|
|
|
|
2,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
"###);
|
|
|
|
}
|
2022-09-09 12:16:19 +02:00
|
|
|
}
|