2022-09-29 21:49:54 +08:00
|
|
|
use milli::update::IndexDocumentsMethod::{self, ReplaceDocuments, UpdateDocuments};
|
2022-10-06 17:46:08 +08:00
|
|
|
use std::ops::ControlFlow::{self, Break, Continue};
|
2022-09-13 20:59:03 +08:00
|
|
|
|
2022-09-09 18:16:19 +08:00
|
|
|
use crate::{task::Kind, TaskId};
|
|
|
|
|
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,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
impl BatchKind {
|
2022-10-06 17:46:08 +08:00
|
|
|
/// Returns a `ControlFlow::Break` if you must stop right now.
|
|
|
|
pub fn new(task_id: TaskId, kind: Kind) -> ControlFlow<BatchKind, BatchKind> {
|
2022-09-09 18:16:19 +08:00
|
|
|
match kind {
|
2022-10-06 17:46:08 +08:00
|
|
|
Kind::IndexCreation => Break(BatchKind::IndexCreation { id: task_id }),
|
|
|
|
Kind::IndexDeletion => Break(BatchKind::IndexDeletion { ids: vec![task_id] }),
|
|
|
|
Kind::IndexUpdate => Break(BatchKind::IndexUpdate { id: task_id }),
|
|
|
|
Kind::IndexSwap => Break(BatchKind::IndexSwap { id: task_id }),
|
|
|
|
Kind::DocumentClear => Continue(BatchKind::DocumentClear { ids: vec![task_id] }),
|
2022-10-06 21:55:48 +08:00
|
|
|
Kind::DocumentImport {
|
|
|
|
method,
|
|
|
|
allow_index_creation,
|
|
|
|
} => Continue(BatchKind::DocumentImport {
|
|
|
|
method,
|
|
|
|
allow_index_creation,
|
2022-10-06 17:46:08 +08:00
|
|
|
import_ids: vec![task_id],
|
|
|
|
}),
|
|
|
|
Kind::DocumentDeletion => Continue(BatchKind::DocumentDeletion {
|
|
|
|
deletion_ids: vec![task_id],
|
|
|
|
}),
|
2022-10-06 21:55:48 +08:00
|
|
|
Kind::Settings {
|
|
|
|
allow_index_creation,
|
|
|
|
} => Continue(BatchKind::Settings {
|
|
|
|
allow_index_creation,
|
2022-10-06 17:46:08 +08:00
|
|
|
settings_ids: vec![task_id],
|
|
|
|
}),
|
2022-10-06 22:53:21 +08:00
|
|
|
Kind::DumpExport | Kind::Snapshot | Kind::CancelTask | Kind::DeleteTasks => 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-06 17:46:08 +08:00
|
|
|
fn accumulate(self, id: TaskId, kind: Kind) -> ControlFlow<BatchKind, BatchKind> {
|
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-06 17:46:08 +08:00
|
|
|
(this, Kind::IndexCreation | Kind::IndexUpdate | Kind::IndexSwap) => 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-09-14 04:38:43 +08:00
|
|
|
Kind::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-09-14 04:38:43 +08:00
|
|
|
Kind::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 },
|
|
|
|
Kind::DocumentClear | Kind::DocumentDeletion,
|
|
|
|
) => {
|
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-06 21:55:48 +08:00
|
|
|
Kind::DocumentImport { .. } | Kind::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-09-14 06:34:02 +08:00
|
|
|
Kind::DocumentClear,
|
|
|
|
) => {
|
|
|
|
ids.push(id);
|
2022-10-06 17:46:08 +08:00
|
|
|
Continue(BatchKind::DocumentClear { ids })
|
2022-09-09 18:16:19 +08:00
|
|
|
}
|
|
|
|
|
2022-10-06 21:55:48 +08:00
|
|
|
// We only want to batch together document imports that are allowed to create the index
|
|
|
|
// or document imports not allowed to create an index if the first operation can.
|
|
|
|
(
|
|
|
|
this @ BatchKind::DocumentImport { method: _, allow_index_creation: false, .. },
|
|
|
|
Kind::DocumentImport { method: _, allow_index_creation: true },
|
|
|
|
) => Break(this),
|
|
|
|
|
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 },
|
|
|
|
Kind::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 },
|
|
|
|
Kind::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-06 21:55:48 +08:00
|
|
|
Kind::DocumentDeletion | Kind::DocumentImport { .. },
|
2022-10-06 17:46:08 +08:00
|
|
|
) => Break(this),
|
2022-10-06 21:55:48 +08:00
|
|
|
|
|
|
|
// We only want to batch together document imports that are allowed to create the index
|
|
|
|
// or document imports not allowed to create an index if the first operation can.
|
|
|
|
(
|
|
|
|
this @ BatchKind::DocumentImport { allow_index_creation: false, .. },
|
|
|
|
Kind::Settings { allow_index_creation: true },
|
|
|
|
) => Break(this),
|
|
|
|
(
|
|
|
|
BatchKind::DocumentImport { method, allow_index_creation, import_ids },
|
|
|
|
Kind::Settings { .. },
|
|
|
|
) => Continue(BatchKind::SettingsAndDocumentImport {
|
|
|
|
settings_ids: vec![id],
|
|
|
|
method,
|
|
|
|
allow_index_creation,
|
|
|
|
import_ids,
|
|
|
|
}),
|
2022-09-09 18:16:19 +08:00
|
|
|
|
2022-09-14 04:38:43 +08:00
|
|
|
(BatchKind::DocumentDeletion { mut deletion_ids }, Kind::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-06 21:55:48 +08:00
|
|
|
(this @ BatchKind::DocumentDeletion { .. }, Kind::DocumentImport { .. }) => Break(this),
|
2022-09-13 20:59:03 +08:00
|
|
|
(BatchKind::DocumentDeletion { mut deletion_ids }, Kind::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-06 21:55:48 +08:00
|
|
|
(this @ BatchKind::DocumentDeletion { .. }, Kind::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 },
|
|
|
|
Kind::DocumentClear,
|
|
|
|
) => 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-06 21:55:48 +08:00
|
|
|
Kind::DocumentImport { .. } | Kind::DocumentDeletion,
|
2022-10-06 17:46:08 +08:00
|
|
|
) => Break(this),
|
2022-10-06 21:55:48 +08:00
|
|
|
(
|
|
|
|
this @ BatchKind::Settings { allow_index_creation: false, .. },
|
|
|
|
Kind::Settings { allow_index_creation: true },
|
|
|
|
) => Break(this),
|
|
|
|
(
|
|
|
|
BatchKind::Settings { mut settings_ids, allow_index_creation },
|
|
|
|
Kind::Settings { .. },
|
|
|
|
) => {
|
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-09-14 04:38:43 +08:00
|
|
|
Kind::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-06 21:55:48 +08:00
|
|
|
(this @ BatchKind::ClearAndSettings { .. }, Kind::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
|
|
|
},
|
|
|
|
Kind::DocumentDeletion,
|
|
|
|
) => {
|
|
|
|
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
|
|
|
this @ BatchKind::ClearAndSettings { allow_index_creation: false, .. },
|
|
|
|
Kind::Settings {
|
|
|
|
allow_index_creation: true,
|
2022-09-09 18:16:19 +08:00
|
|
|
},
|
2022-10-06 21:55:48 +08:00
|
|
|
) => Break(this),
|
|
|
|
(
|
|
|
|
BatchKind::ClearAndSettings { mut settings_ids, other, allow_index_creation },
|
|
|
|
Kind::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-09-14 04:38:43 +08:00
|
|
|
Kind::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
|
|
|
|
|
|
|
// we can batch the settings with a kind of document operation with the same kind of document operation
|
2022-09-09 18:16:19 +08:00
|
|
|
(
|
2022-10-06 21:55:48 +08:00
|
|
|
this @ BatchKind::SettingsAndDocumentImport { allow_index_creation: false, .. },
|
|
|
|
Kind::DocumentImport { allow_index_creation: true, .. },
|
|
|
|
) => Break(this),
|
|
|
|
(
|
|
|
|
BatchKind::SettingsAndDocumentImport { settings_ids, method: ReplaceDocuments, mut import_ids, allow_index_creation },
|
|
|
|
Kind::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 },
|
|
|
|
Kind::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-06 21:55:48 +08:00
|
|
|
Kind::DocumentDeletion | Kind::DocumentImport { .. },
|
2022-10-06 17:46:08 +08:00
|
|
|
) => Break(this),
|
2022-09-09 18:16:19 +08:00
|
|
|
(
|
2022-10-06 21:55:48 +08:00
|
|
|
this @ BatchKind::SettingsAndDocumentImport { allow_index_creation: false, .. },
|
|
|
|
Kind::Settings { allow_index_creation: true },
|
|
|
|
) => Break(this),
|
|
|
|
(
|
|
|
|
BatchKind::SettingsAndDocumentImport { mut settings_ids, method, allow_index_creation, import_ids },
|
|
|
|
Kind::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-06 22:53:21 +08:00
|
|
|
(_, Kind::CancelTask | Kind::DeleteTasks | Kind::DumpExport | Kind::Snapshot) => {
|
|
|
|
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!()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn autobatch(enqueued: Vec<(TaskId, Kind)>) -> Option<BatchKind> {
|
|
|
|
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-09-13 20:59:03 +08:00
|
|
|
acc = match acc.accumulate(id, kind) {
|
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::*;
|
|
|
|
use Kind::*;
|
|
|
|
|
2022-09-26 20:12:06 +08:00
|
|
|
fn autobatch_from(input: impl IntoIterator<Item = Kind>) -> Option<BatchKind> {
|
|
|
|
autobatch(
|
|
|
|
input
|
|
|
|
.into_iter()
|
|
|
|
.enumerate()
|
|
|
|
.map(|(id, kind)| (id as TaskId, kind))
|
|
|
|
.collect(),
|
|
|
|
)
|
2022-09-14 07:48:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn autobatch_simple_operation_together() {
|
|
|
|
// we can autobatch one or multiple DocumentAddition together
|
2022-10-06 21:55:48 +08:00
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: ReplaceDocuments, allow_index_creation: true }]), @"Some(DocumentImport { method: ReplaceDocuments, allow_index_creation: true, import_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: ReplaceDocuments, allow_index_creation: true }, DocumentImport { method: ReplaceDocuments, allow_index_creation: true }, DocumentImport { method: ReplaceDocuments, allow_index_creation: 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-06 21:55:48 +08:00
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: UpdateDocuments, allow_index_creation: true }]), @"Some(DocumentImport { method: UpdateDocuments, allow_index_creation: true, import_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: UpdateDocuments, allow_index_creation: true }, DocumentImport { method: UpdateDocuments, allow_index_creation: true }, DocumentImport { method: UpdateDocuments, allow_index_creation: 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-09-26 20:12:06 +08:00
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentDeletion]), @"Some(DocumentDeletion { deletion_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentDeletion, DocumentDeletion, DocumentDeletion]), @"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-06 21:55:48 +08:00
|
|
|
assert_smol_debug_snapshot!(autobatch_from([Settings { allow_index_creation: true }]), @"Some(Settings { allow_index_creation: true, settings_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([Settings { allow_index_creation: true }, Settings { allow_index_creation: true }, Settings { allow_index_creation: 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-06 21:55:48 +08:00
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: ReplaceDocuments, allow_index_creation: true }, DocumentImport { method: UpdateDocuments, allow_index_creation: true }]), @"Some(DocumentImport { method: ReplaceDocuments, allow_index_creation: true, import_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: ReplaceDocuments, allow_index_creation: true }, DocumentDeletion]), @"Some(DocumentImport { method: ReplaceDocuments, allow_index_creation: true, import_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: UpdateDocuments, allow_index_creation: true }, DocumentImport { method: ReplaceDocuments, allow_index_creation: true }]), @"Some(DocumentImport { method: UpdateDocuments, allow_index_creation: true, import_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: UpdateDocuments, allow_index_creation: true }, DocumentDeletion]), @"Some(DocumentImport { method: UpdateDocuments, allow_index_creation: true, import_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentDeletion, DocumentImport { method: ReplaceDocuments, allow_index_creation: true }]), @"Some(DocumentDeletion { deletion_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentDeletion, DocumentImport { method: UpdateDocuments, allow_index_creation: true }]), @"Some(DocumentDeletion { deletion_ids: [0] })");
|
|
|
|
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: ReplaceDocuments, allow_index_creation: true }, IndexCreation]), @"Some(DocumentImport { method: ReplaceDocuments, allow_index_creation: true, import_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: UpdateDocuments, allow_index_creation: true }, IndexCreation]), @"Some(DocumentImport { method: UpdateDocuments, allow_index_creation: true, import_ids: [0] })");
|
2022-09-26 20:12:06 +08:00
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentDeletion, IndexCreation]), @"Some(DocumentDeletion { deletion_ids: [0] })");
|
|
|
|
|
2022-10-06 21:55:48 +08:00
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: ReplaceDocuments, allow_index_creation: true }, IndexUpdate]), @"Some(DocumentImport { method: ReplaceDocuments, allow_index_creation: true, import_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: UpdateDocuments, allow_index_creation: true }, IndexUpdate]), @"Some(DocumentImport { method: UpdateDocuments, allow_index_creation: true, import_ids: [0] })");
|
2022-09-26 20:12:06 +08:00
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentDeletion, IndexUpdate]), @"Some(DocumentDeletion { deletion_ids: [0] })");
|
|
|
|
|
2022-10-06 21:55:48 +08:00
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: ReplaceDocuments, allow_index_creation: true }, IndexSwap]), @"Some(DocumentImport { method: ReplaceDocuments, allow_index_creation: true, import_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: UpdateDocuments, allow_index_creation: true }, IndexSwap]), @"Some(DocumentImport { method: UpdateDocuments, allow_index_creation: true, import_ids: [0] })");
|
2022-09-26 20:12:06 +08:00
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentDeletion, IndexSwap]), @"Some(DocumentDeletion { deletion_ids: [0] })");
|
2022-09-14 07:48:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn document_addition_batch_with_settings() {
|
|
|
|
// simple case
|
2022-10-06 21:55:48 +08:00
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: ReplaceDocuments, allow_index_creation: true }, Settings { allow_index_creation: true }]), @"Some(SettingsAndDocumentImport { settings_ids: [1], method: ReplaceDocuments, allow_index_creation: true, import_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: UpdateDocuments, allow_index_creation: true }, Settings { allow_index_creation: true }]), @"Some(SettingsAndDocumentImport { settings_ids: [1], method: UpdateDocuments, allow_index_creation: true, import_ids: [0] })");
|
2022-09-14 07:48:58 +08:00
|
|
|
|
|
|
|
// multiple settings and doc addition
|
2022-10-06 21:55:48 +08:00
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: ReplaceDocuments, allow_index_creation: true }, DocumentImport { method: ReplaceDocuments, allow_index_creation: true }, Settings { allow_index_creation: true }, Settings { allow_index_creation: true }]), @"Some(SettingsAndDocumentImport { settings_ids: [2, 3], method: ReplaceDocuments, allow_index_creation: true, import_ids: [0, 1] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: ReplaceDocuments, allow_index_creation: true }, DocumentImport { method: ReplaceDocuments, allow_index_creation: true }, Settings { allow_index_creation: true }, Settings { allow_index_creation: true }]), @"Some(SettingsAndDocumentImport { settings_ids: [2, 3], method: ReplaceDocuments, allow_index_creation: true, import_ids: [0, 1] })");
|
2022-09-14 07:48:58 +08:00
|
|
|
|
|
|
|
// addition and setting unordered
|
2022-10-06 21:55:48 +08:00
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: ReplaceDocuments, allow_index_creation: true }, Settings { allow_index_creation: true }, DocumentImport { method: ReplaceDocuments, allow_index_creation: true }, Settings { allow_index_creation: true }]), @"Some(SettingsAndDocumentImport { settings_ids: [1, 3], method: ReplaceDocuments, allow_index_creation: true, import_ids: [0, 2] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: UpdateDocuments, allow_index_creation: true }, Settings { allow_index_creation: true }, DocumentImport { method: UpdateDocuments, allow_index_creation: true }, Settings { allow_index_creation: true }]), @"Some(SettingsAndDocumentImport { settings_ids: [1, 3], method: UpdateDocuments, 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-06 21:55:48 +08:00
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: ReplaceDocuments, allow_index_creation: true }, Settings { allow_index_creation: true }, DocumentImport { method: UpdateDocuments, allow_index_creation: true }]), @"Some(SettingsAndDocumentImport { settings_ids: [1], method: ReplaceDocuments, allow_index_creation: true, import_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: UpdateDocuments, allow_index_creation: true }, Settings { allow_index_creation: true }, DocumentImport { method: ReplaceDocuments, allow_index_creation: true }]), @"Some(SettingsAndDocumentImport { settings_ids: [1], method: UpdateDocuments, allow_index_creation: true, import_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: ReplaceDocuments, allow_index_creation: true }, Settings { allow_index_creation: true }, DocumentDeletion]), @"Some(SettingsAndDocumentImport { settings_ids: [1], method: ReplaceDocuments, allow_index_creation: true, import_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: UpdateDocuments, allow_index_creation: true }, Settings { allow_index_creation: true }, DocumentDeletion]), @"Some(SettingsAndDocumentImport { settings_ids: [1], method: UpdateDocuments, allow_index_creation: true, import_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: ReplaceDocuments, allow_index_creation: true }, Settings { allow_index_creation: true }, IndexCreation]), @"Some(SettingsAndDocumentImport { settings_ids: [1], method: ReplaceDocuments, allow_index_creation: true, import_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: UpdateDocuments, allow_index_creation: true }, Settings { allow_index_creation: true }, IndexCreation]), @"Some(SettingsAndDocumentImport { settings_ids: [1], method: UpdateDocuments, allow_index_creation: true, import_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: ReplaceDocuments, allow_index_creation: true }, Settings { allow_index_creation: true }, IndexUpdate]), @"Some(SettingsAndDocumentImport { settings_ids: [1], method: ReplaceDocuments, allow_index_creation: true, import_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: UpdateDocuments, allow_index_creation: true }, Settings { allow_index_creation: true }, IndexUpdate]), @"Some(SettingsAndDocumentImport { settings_ids: [1], method: UpdateDocuments, allow_index_creation: true, import_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: ReplaceDocuments, allow_index_creation: true }, Settings { allow_index_creation: true }, IndexSwap]), @"Some(SettingsAndDocumentImport { settings_ids: [1], method: ReplaceDocuments, allow_index_creation: true, import_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: UpdateDocuments, allow_index_creation: true }, Settings { allow_index_creation: true }, IndexSwap]), @"Some(SettingsAndDocumentImport { settings_ids: [1], method: UpdateDocuments, 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-06 21:55:48 +08:00
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentClear, DocumentImport { method: ReplaceDocuments, allow_index_creation: true }]), @"Some(DocumentClear { ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentClear, DocumentImport { method: UpdateDocuments, allow_index_creation: true }]), @"Some(DocumentClear { ids: [0] })");
|
2022-09-14 07:48:58 +08:00
|
|
|
|
|
|
|
// Basic use case
|
2022-10-06 21:55:48 +08:00
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: ReplaceDocuments, allow_index_creation: true }, DocumentImport { method: ReplaceDocuments, allow_index_creation: true }, DocumentClear]), @"Some(DocumentClear { ids: [0, 1, 2] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: UpdateDocuments, allow_index_creation: true }, DocumentImport { method: UpdateDocuments, allow_index_creation: true }, DocumentClear]), @"Some(DocumentClear { ids: [0, 1, 2] })");
|
2022-09-14 07:48:58 +08:00
|
|
|
|
|
|
|
// This batch kind doesn't mix with other document addition
|
2022-10-06 21:55:48 +08:00
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: ReplaceDocuments, allow_index_creation: true }, DocumentImport { method: ReplaceDocuments, allow_index_creation: true }, DocumentClear, DocumentImport { method: ReplaceDocuments, allow_index_creation: true }]), @"Some(DocumentClear { ids: [0, 1, 2] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: UpdateDocuments, allow_index_creation: true }, DocumentImport { method: UpdateDocuments, allow_index_creation: true }, DocumentClear, DocumentImport { method: UpdateDocuments, allow_index_creation: true }]), @"Some(DocumentClear { ids: [0, 1, 2] })");
|
2022-09-14 07:48:58 +08:00
|
|
|
|
|
|
|
// But you can batch multiple clear together
|
2022-10-06 21:55:48 +08:00
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: ReplaceDocuments, allow_index_creation: true }, DocumentImport { method: ReplaceDocuments, allow_index_creation: true }, DocumentClear, DocumentClear, DocumentClear]), @"Some(DocumentClear { ids: [0, 1, 2, 3, 4] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: UpdateDocuments, allow_index_creation: true }, DocumentImport { method: UpdateDocuments, allow_index_creation: true }, DocumentClear, DocumentClear, DocumentClear]), @"Some(DocumentClear { 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-06 21:55:48 +08:00
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentClear, Settings { allow_index_creation: true }]), @"Some(DocumentClear { ids: [0] })");
|
2022-09-14 07:48:58 +08:00
|
|
|
|
2022-10-06 21:55:48 +08:00
|
|
|
assert_smol_debug_snapshot!(autobatch_from([Settings { allow_index_creation: true }, DocumentClear, Settings { allow_index_creation: true }]), @"Some(ClearAndSettings { other: [1], allow_index_creation: true, settings_ids: [0, 2] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: ReplaceDocuments, allow_index_creation: true }, Settings { allow_index_creation: true }, DocumentClear]), @"Some(ClearAndSettings { other: [0, 2], allow_index_creation: true, settings_ids: [1] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: UpdateDocuments, allow_index_creation: true }, Settings { allow_index_creation: true }, DocumentClear]), @"Some(ClearAndSettings { other: [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-06 21:55:48 +08:00
|
|
|
assert_smol_debug_snapshot!(autobatch_from([IndexDeletion, DocumentImport { method: ReplaceDocuments, allow_index_creation: true }]), @"Some(IndexDeletion { ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([IndexDeletion, DocumentImport { method: UpdateDocuments, allow_index_creation: true }]), @"Some(IndexDeletion { ids: [0] })");
|
2022-09-26 20:12:06 +08:00
|
|
|
assert_smol_debug_snapshot!(autobatch_from([IndexDeletion, DocumentDeletion]), @"Some(IndexDeletion { ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([IndexDeletion, DocumentClear]), @"Some(IndexDeletion { ids: [0] })");
|
2022-10-06 21:55:48 +08:00
|
|
|
assert_smol_debug_snapshot!(autobatch_from([IndexDeletion, Settings { allow_index_creation: true }]), @"Some(IndexDeletion { ids: [0] })");
|
2022-09-14 07:48:58 +08:00
|
|
|
|
|
|
|
// The index deletion can accept almost any type of BatchKind and transform it to an IndexDeletion
|
|
|
|
// First, the basic cases
|
2022-10-06 21:55:48 +08:00
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: ReplaceDocuments, allow_index_creation: true }, IndexDeletion]), @"Some(IndexDeletion { ids: [0, 1] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: UpdateDocuments, allow_index_creation: true }, IndexDeletion]), @"Some(IndexDeletion { ids: [0, 1] })");
|
2022-09-26 20:12:06 +08:00
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentDeletion, IndexDeletion]), @"Some(IndexDeletion { ids: [0, 1] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentClear, IndexDeletion]), @"Some(IndexDeletion { ids: [0, 1] })");
|
2022-10-06 21:55:48 +08:00
|
|
|
assert_smol_debug_snapshot!(autobatch_from([Settings { allow_index_creation: true }, IndexDeletion]), @"Some(IndexDeletion { ids: [0, 1] })");
|
2022-09-14 07:48:58 +08:00
|
|
|
|
|
|
|
// Then the mixed cases
|
2022-10-06 21:55:48 +08:00
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: ReplaceDocuments, allow_index_creation: true }, Settings { allow_index_creation: true }, IndexDeletion]), @"Some(IndexDeletion { ids: [0, 2, 1] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: UpdateDocuments, allow_index_creation: true }, Settings { allow_index_creation: true }, IndexDeletion]), @"Some(IndexDeletion { ids: [0, 2, 1] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: ReplaceDocuments, allow_index_creation: true }, Settings { allow_index_creation: true }, DocumentClear, IndexDeletion]), @"Some(IndexDeletion { ids: [1, 3, 0, 2] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: UpdateDocuments, allow_index_creation: true }, Settings { allow_index_creation: true }, DocumentClear, IndexDeletion]), @"Some(IndexDeletion { ids: [1, 3, 0, 2] })");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn allowed_and_disallowed_index_creation() {
|
|
|
|
// DocumentImport that can create indexes can't be mixed with those disallowed to do so
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: ReplaceDocuments, allow_index_creation: false }, DocumentImport { method: ReplaceDocuments, allow_index_creation: true }]), @"Some(DocumentImport { method: ReplaceDocuments, allow_index_creation: false, import_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: ReplaceDocuments, allow_index_creation: true }, DocumentImport { method: ReplaceDocuments, allow_index_creation: true }]), @"Some(DocumentImport { method: ReplaceDocuments, allow_index_creation: true, import_ids: [0, 1] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: ReplaceDocuments, allow_index_creation: false }, DocumentImport { method: ReplaceDocuments, allow_index_creation: false }]), @"Some(DocumentImport { method: ReplaceDocuments, allow_index_creation: false, import_ids: [0, 1] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: ReplaceDocuments, allow_index_creation: true }, Settings { allow_index_creation: true }]), @"Some(SettingsAndDocumentImport { settings_ids: [1], method: ReplaceDocuments, allow_index_creation: true, import_ids: [0] })");
|
|
|
|
assert_smol_debug_snapshot!(autobatch_from([DocumentImport { method: ReplaceDocuments, allow_index_creation: false }, Settings { allow_index_creation: true }]), @"Some(DocumentImport { method: ReplaceDocuments, allow_index_creation: false, import_ids: [0] })");
|
2022-09-14 07:48:58 +08:00
|
|
|
}
|
2022-09-09 18:16:19 +08:00
|
|
|
}
|