2022-10-20 10:25:34 +02:00
|
|
|
/*!
|
|
|
|
This module handles the creation and processing of batch operations.
|
|
|
|
|
|
|
|
A batch is a combination of multiple tasks that can be processed at once.
|
|
|
|
Executing a batch operation should always be functionally equivalent to
|
|
|
|
executing each of its tasks' operations individually and in order.
|
|
|
|
|
|
|
|
For example, if the user sends two tasks:
|
|
|
|
1. import documents X
|
|
|
|
2. import documents Y
|
|
|
|
|
|
|
|
We can combine the two tasks in a single batch:
|
|
|
|
1. import documents X and Y
|
|
|
|
|
|
|
|
Processing this batch is functionally equivalent to processing the two
|
|
|
|
tasks individally, but should be much faster since we are only performing
|
|
|
|
one indexing operation.
|
|
|
|
*/
|
|
|
|
|
2022-10-27 09:41:32 +02:00
|
|
|
use std::collections::{BTreeSet, HashSet};
|
2022-10-25 15:51:15 +02:00
|
|
|
use std::ffi::OsStr;
|
2022-10-25 14:09:01 +02:00
|
|
|
use std::fs::{self, File};
|
2022-10-13 15:02:59 +02:00
|
|
|
use std::io::BufWriter;
|
2022-10-13 11:09:00 +02:00
|
|
|
|
2022-10-13 15:02:59 +02:00
|
|
|
use dump::IndexMetadata;
|
2022-10-19 11:48:35 +02:00
|
|
|
use log::{debug, error, info};
|
2022-10-20 18:00:07 +02:00
|
|
|
use meilisearch_types::heed::{RoTxn, RwTxn};
|
|
|
|
use meilisearch_types::milli::documents::{obkv_to_object, DocumentsBatchReader};
|
2022-10-25 14:09:01 +02:00
|
|
|
use meilisearch_types::milli::heed::CompactionOption;
|
2022-10-11 17:42:43 +02:00
|
|
|
use meilisearch_types::milli::update::{
|
2022-10-20 18:00:07 +02:00
|
|
|
DocumentAdditionResult, DocumentDeletionResult, IndexDocumentsConfig, IndexDocumentsMethod,
|
|
|
|
Settings as MilliSettings,
|
2022-10-11 17:42:43 +02:00
|
|
|
};
|
2022-10-20 18:00:07 +02:00
|
|
|
use meilisearch_types::milli::{self, BEU32};
|
2022-10-11 17:42:43 +02:00
|
|
|
use meilisearch_types::settings::{apply_settings_to_builder, Settings, Unchecked};
|
2022-10-27 09:41:32 +02:00
|
|
|
use meilisearch_types::tasks::{Details, IndexSwap, Kind, KindWithContent, Status, Task};
|
2022-10-25 15:51:15 +02:00
|
|
|
use meilisearch_types::{compression, Index, VERSION_FILE_NAME};
|
2022-10-06 16:53:21 +02:00
|
|
|
use roaring::RoaringBitmap;
|
2022-11-28 16:27:41 +01:00
|
|
|
use time::macros::format_description;
|
2022-10-16 02:01:45 +02:00
|
|
|
use time::OffsetDateTime;
|
2022-09-09 01:09:50 +02:00
|
|
|
use uuid::Uuid;
|
2022-09-07 00:10:14 +02:00
|
|
|
|
2022-10-25 10:26:51 +02:00
|
|
|
use crate::autobatcher::{self, BatchKind};
|
2022-10-20 18:00:07 +02:00
|
|
|
use crate::utils::{self, swap_index_uid_in_task};
|
2022-11-28 16:27:41 +01:00
|
|
|
use crate::{Error, IndexScheduler, ProcessingTasks, Result, TaskId};
|
2022-10-20 18:00:07 +02:00
|
|
|
|
2022-10-20 10:25:34 +02:00
|
|
|
/// Represents a combination of tasks that can all be processed at the same time.
|
|
|
|
///
|
|
|
|
/// A batch contains the set of tasks that it represents (accessible through
|
|
|
|
/// [`self.ids()`](Batch::ids)), as well as additional information on how to
|
|
|
|
/// be processed.
|
2022-10-13 12:48:23 +02:00
|
|
|
#[derive(Debug)]
|
2022-09-07 20:08:07 +02:00
|
|
|
pub(crate) enum Batch {
|
2022-11-28 16:27:41 +01:00
|
|
|
TaskCancelation {
|
|
|
|
/// The task cancelation itself.
|
|
|
|
task: Task,
|
|
|
|
/// The date and time at which the previously processing tasks started.
|
|
|
|
previous_started_at: OffsetDateTime,
|
|
|
|
/// The list of tasks that were processing when this task cancelation appeared.
|
|
|
|
previous_processing_tasks: RoaringBitmap,
|
|
|
|
},
|
2022-10-13 11:09:00 +02:00
|
|
|
TaskDeletion(Task),
|
2022-10-25 10:44:58 +02:00
|
|
|
SnapshotCreation(Vec<Task>),
|
2022-10-13 15:02:59 +02:00
|
|
|
Dump(Task),
|
2022-11-28 16:27:41 +01:00
|
|
|
IndexOperation {
|
|
|
|
op: IndexOperation,
|
|
|
|
must_create_index: bool,
|
|
|
|
},
|
|
|
|
IndexCreation {
|
|
|
|
index_uid: String,
|
|
|
|
primary_key: Option<String>,
|
|
|
|
task: Task,
|
|
|
|
},
|
|
|
|
IndexUpdate {
|
|
|
|
index_uid: String,
|
|
|
|
primary_key: Option<String>,
|
|
|
|
task: Task,
|
|
|
|
},
|
|
|
|
IndexDeletion {
|
|
|
|
index_uid: String,
|
|
|
|
tasks: Vec<Task>,
|
|
|
|
index_has_been_created: bool,
|
|
|
|
},
|
|
|
|
IndexSwap {
|
|
|
|
task: Task,
|
|
|
|
},
|
2022-09-29 18:15:50 +02:00
|
|
|
}
|
|
|
|
|
2022-10-20 10:25:34 +02:00
|
|
|
/// A [batch](Batch) that combines multiple tasks operating on an index.
|
2022-10-13 12:48:23 +02:00
|
|
|
#[derive(Debug)]
|
2022-09-29 18:15:50 +02:00
|
|
|
pub(crate) enum IndexOperation {
|
2022-09-29 15:49:54 +02:00
|
|
|
DocumentImport {
|
2022-09-16 16:31:16 +02:00
|
|
|
index_uid: String,
|
|
|
|
primary_key: Option<String>,
|
2022-09-29 15:49:54 +02:00
|
|
|
method: IndexDocumentsMethod,
|
2022-10-04 18:50:18 +02:00
|
|
|
documents_counts: Vec<u64>,
|
2022-09-16 16:31:16 +02:00
|
|
|
content_files: Vec<Uuid>,
|
|
|
|
tasks: Vec<Task>,
|
|
|
|
},
|
|
|
|
DocumentDeletion {
|
|
|
|
index_uid: String,
|
2022-10-22 15:59:30 +02:00
|
|
|
// The vec associated with each document deletion tasks.
|
|
|
|
documents: Vec<Vec<String>>,
|
2022-09-16 16:31:16 +02:00
|
|
|
tasks: Vec<Task>,
|
|
|
|
},
|
|
|
|
DocumentClear {
|
|
|
|
index_uid: String,
|
|
|
|
tasks: Vec<Task>,
|
|
|
|
},
|
|
|
|
Settings {
|
|
|
|
index_uid: String,
|
2022-10-27 16:38:21 +02:00
|
|
|
// The boolean indicates if it's a settings deletion or creation.
|
2022-09-16 16:31:16 +02:00
|
|
|
settings: Vec<(bool, Settings<Unchecked>)>,
|
|
|
|
tasks: Vec<Task>,
|
|
|
|
},
|
|
|
|
DocumentClearAndSetting {
|
|
|
|
index_uid: String,
|
|
|
|
cleared_tasks: Vec<Task>,
|
|
|
|
|
2022-10-27 16:38:21 +02:00
|
|
|
// The boolean indicates if it's a settings deletion or creation.
|
2022-09-16 16:31:16 +02:00
|
|
|
settings: Vec<(bool, Settings<Unchecked>)>,
|
|
|
|
settings_tasks: Vec<Task>,
|
|
|
|
},
|
2022-09-29 15:49:54 +02:00
|
|
|
SettingsAndDocumentImport {
|
2022-09-16 16:31:16 +02:00
|
|
|
index_uid: String,
|
|
|
|
|
|
|
|
primary_key: Option<String>,
|
2022-09-29 15:49:54 +02:00
|
|
|
method: IndexDocumentsMethod,
|
2022-10-04 18:50:18 +02:00
|
|
|
documents_counts: Vec<u64>,
|
2022-09-16 16:31:16 +02:00
|
|
|
content_files: Vec<Uuid>,
|
2022-09-29 15:49:54 +02:00
|
|
|
document_import_tasks: Vec<Task>,
|
2022-09-16 16:31:16 +02:00
|
|
|
|
2022-10-27 16:38:21 +02:00
|
|
|
// The boolean indicates if it's a settings deletion or creation.
|
2022-09-16 16:31:16 +02:00
|
|
|
settings: Vec<(bool, Settings<Unchecked>)>,
|
2022-09-13 11:46:07 +02:00
|
|
|
settings_tasks: Vec<Task>,
|
|
|
|
},
|
2022-09-09 01:09:50 +02:00
|
|
|
}
|
|
|
|
|
2022-09-16 01:58:08 +02:00
|
|
|
impl Batch {
|
2022-10-20 10:25:34 +02:00
|
|
|
/// Return the task ids associated with this batch.
|
2022-09-16 01:58:08 +02:00
|
|
|
pub fn ids(&self) -> Vec<TaskId> {
|
|
|
|
match self {
|
2022-11-28 16:27:41 +01:00
|
|
|
Batch::TaskCancelation { task, .. }
|
2022-10-13 11:09:00 +02:00
|
|
|
| Batch::TaskDeletion(task)
|
2022-10-13 15:02:59 +02:00
|
|
|
| Batch::Dump(task)
|
2022-09-16 21:24:49 +02:00
|
|
|
| Batch::IndexCreation { task, .. }
|
|
|
|
| Batch::IndexUpdate { task, .. } => vec![task.uid],
|
2022-10-25 10:44:58 +02:00
|
|
|
Batch::SnapshotCreation(tasks) | Batch::IndexDeletion { tasks, .. } => {
|
2022-09-29 18:15:50 +02:00
|
|
|
tasks.iter().map(|task| task.uid).collect()
|
2022-09-16 16:31:16 +02:00
|
|
|
}
|
2022-10-19 18:27:18 +02:00
|
|
|
Batch::IndexOperation { op, .. } => match op {
|
2022-09-29 18:15:50 +02:00
|
|
|
IndexOperation::DocumentImport { tasks, .. }
|
|
|
|
| IndexOperation::DocumentDeletion { tasks, .. }
|
|
|
|
| IndexOperation::Settings { tasks, .. }
|
|
|
|
| IndexOperation::DocumentClear { tasks, .. } => {
|
|
|
|
tasks.iter().map(|task| task.uid).collect()
|
|
|
|
}
|
|
|
|
IndexOperation::SettingsAndDocumentImport {
|
|
|
|
document_import_tasks: tasks,
|
|
|
|
settings_tasks: other,
|
|
|
|
..
|
|
|
|
}
|
|
|
|
| IndexOperation::DocumentClearAndSetting {
|
|
|
|
cleared_tasks: tasks,
|
|
|
|
settings_tasks: other,
|
|
|
|
..
|
|
|
|
} => tasks.iter().chain(other).map(|task| task.uid).collect(),
|
|
|
|
},
|
2022-10-17 16:30:18 +02:00
|
|
|
Batch::IndexSwap { task } => vec![task.uid],
|
2022-09-16 01:58:08 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-19 18:27:18 +02:00
|
|
|
impl IndexOperation {
|
|
|
|
pub fn index_uid(&self) -> &str {
|
|
|
|
match self {
|
|
|
|
IndexOperation::DocumentImport { index_uid, .. }
|
|
|
|
| IndexOperation::DocumentDeletion { index_uid, .. }
|
|
|
|
| IndexOperation::DocumentClear { index_uid, .. }
|
|
|
|
| IndexOperation::Settings { index_uid, .. }
|
|
|
|
| IndexOperation::DocumentClearAndSetting { index_uid, .. }
|
|
|
|
| IndexOperation::SettingsAndDocumentImport { index_uid, .. } => index_uid,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-07 00:10:14 +02:00
|
|
|
impl IndexScheduler {
|
2022-10-20 10:25:34 +02:00
|
|
|
/// Convert an [`BatchKind`](crate::autobatcher::BatchKind) into a [`Batch`].
|
|
|
|
///
|
|
|
|
/// ## Arguments
|
|
|
|
/// - `rtxn`: read transaction
|
|
|
|
/// - `index_uid`: name of the index affected by the operations of the autobatch
|
|
|
|
/// - `batch`: the result of the autobatcher
|
2022-09-13 11:46:07 +02:00
|
|
|
pub(crate) fn create_next_batch_index(
|
|
|
|
&self,
|
|
|
|
rtxn: &RoTxn,
|
|
|
|
index_uid: String,
|
|
|
|
batch: BatchKind,
|
2022-10-19 18:27:18 +02:00
|
|
|
must_create_index: bool,
|
2022-09-13 11:46:07 +02:00
|
|
|
) -> Result<Option<Batch>> {
|
|
|
|
match batch {
|
2022-10-19 18:27:18 +02:00
|
|
|
BatchKind::DocumentClear { ids } => Ok(Some(Batch::IndexOperation {
|
|
|
|
op: IndexOperation::DocumentClear {
|
2022-09-29 18:15:50 +02:00
|
|
|
tasks: self.get_existing_tasks(rtxn, ids)?,
|
|
|
|
index_uid,
|
2022-10-19 18:27:18 +02:00
|
|
|
},
|
|
|
|
must_create_index,
|
|
|
|
})),
|
2022-10-20 15:19:28 +02:00
|
|
|
BatchKind::DocumentImport { method, import_ids, .. } => {
|
2022-09-29 15:49:54 +02:00
|
|
|
let tasks = self.get_existing_tasks(rtxn, import_ids)?;
|
2022-09-16 16:31:16 +02:00
|
|
|
let primary_key = match &tasks[0].kind {
|
2022-10-21 18:03:10 +02:00
|
|
|
KindWithContent::DocumentAdditionOrUpdate { primary_key, .. } => {
|
|
|
|
primary_key.clone()
|
|
|
|
}
|
2022-09-13 11:46:07 +02:00
|
|
|
_ => unreachable!(),
|
|
|
|
};
|
2022-10-04 18:50:18 +02:00
|
|
|
|
|
|
|
let mut documents_counts = Vec::new();
|
|
|
|
let mut content_files = Vec::new();
|
|
|
|
for task in &tasks {
|
2022-10-05 13:46:45 +02:00
|
|
|
match task.kind {
|
2022-10-21 18:03:10 +02:00
|
|
|
KindWithContent::DocumentAdditionOrUpdate {
|
|
|
|
content_file,
|
|
|
|
documents_count,
|
|
|
|
..
|
2022-10-05 13:46:45 +02:00
|
|
|
} => {
|
|
|
|
documents_counts.push(documents_count);
|
|
|
|
content_files.push(content_file);
|
|
|
|
}
|
|
|
|
_ => unreachable!(),
|
2022-10-04 18:50:18 +02:00
|
|
|
}
|
|
|
|
}
|
2022-09-13 11:46:07 +02:00
|
|
|
|
2022-10-19 18:27:18 +02:00
|
|
|
Ok(Some(Batch::IndexOperation {
|
|
|
|
op: IndexOperation::DocumentImport {
|
2022-09-29 18:15:50 +02:00
|
|
|
index_uid,
|
|
|
|
primary_key,
|
|
|
|
method,
|
2022-10-04 18:50:18 +02:00
|
|
|
documents_counts,
|
2022-09-29 18:15:50 +02:00
|
|
|
content_files,
|
|
|
|
tasks,
|
|
|
|
},
|
2022-10-19 18:27:18 +02:00
|
|
|
must_create_index,
|
|
|
|
}))
|
2022-09-16 16:31:16 +02:00
|
|
|
}
|
|
|
|
BatchKind::DocumentDeletion { deletion_ids } => {
|
|
|
|
let tasks = self.get_existing_tasks(rtxn, deletion_ids)?;
|
|
|
|
|
|
|
|
let mut documents = Vec::new();
|
|
|
|
for task in &tasks {
|
|
|
|
match task.kind {
|
2022-10-20 18:00:07 +02:00
|
|
|
KindWithContent::DocumentDeletion { ref documents_ids, .. } => {
|
2022-10-22 15:59:30 +02:00
|
|
|
documents.push(documents_ids.clone())
|
2022-10-20 18:00:07 +02:00
|
|
|
}
|
2022-09-16 16:31:16 +02:00
|
|
|
_ => unreachable!(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-19 18:27:18 +02:00
|
|
|
Ok(Some(Batch::IndexOperation {
|
2022-10-20 18:00:07 +02:00
|
|
|
op: IndexOperation::DocumentDeletion { index_uid, documents, tasks },
|
2022-10-19 18:27:18 +02:00
|
|
|
must_create_index,
|
|
|
|
}))
|
2022-09-16 16:31:16 +02:00
|
|
|
}
|
2022-10-20 15:19:28 +02:00
|
|
|
BatchKind::Settings { settings_ids, .. } => {
|
2022-09-16 16:31:16 +02:00
|
|
|
let tasks = self.get_existing_tasks(rtxn, settings_ids)?;
|
|
|
|
|
|
|
|
let mut settings = Vec::new();
|
|
|
|
for task in &tasks {
|
|
|
|
match task.kind {
|
2022-10-21 18:03:10 +02:00
|
|
|
KindWithContent::SettingsUpdate {
|
|
|
|
ref new_settings, is_deletion, ..
|
2022-10-22 16:35:42 +02:00
|
|
|
} => settings.push((is_deletion, *new_settings.clone())),
|
2022-09-16 16:31:16 +02:00
|
|
|
_ => unreachable!(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-19 18:27:18 +02:00
|
|
|
Ok(Some(Batch::IndexOperation {
|
2022-10-20 18:00:07 +02:00
|
|
|
op: IndexOperation::Settings { index_uid, settings, tasks },
|
2022-10-19 18:27:18 +02:00
|
|
|
must_create_index,
|
|
|
|
}))
|
2022-09-16 16:31:16 +02:00
|
|
|
}
|
2022-10-20 18:00:07 +02:00
|
|
|
BatchKind::ClearAndSettings { other, settings_ids, allow_index_creation } => {
|
2022-09-16 16:31:16 +02:00
|
|
|
let (index_uid, settings, settings_tasks) = match self
|
2022-10-06 15:55:48 +02:00
|
|
|
.create_next_batch_index(
|
|
|
|
rtxn,
|
|
|
|
index_uid,
|
2022-10-20 18:00:07 +02:00
|
|
|
BatchKind::Settings { settings_ids, allow_index_creation },
|
2022-10-19 18:27:18 +02:00
|
|
|
must_create_index,
|
2022-10-06 15:55:48 +02:00
|
|
|
)?
|
2022-09-16 16:31:16 +02:00
|
|
|
.unwrap()
|
|
|
|
{
|
2022-10-19 18:27:18 +02:00
|
|
|
Batch::IndexOperation {
|
2022-10-20 18:00:07 +02:00
|
|
|
op: IndexOperation::Settings { index_uid, settings, tasks, .. },
|
2022-10-06 15:51:26 +02:00
|
|
|
..
|
2022-10-19 18:27:18 +02:00
|
|
|
} => (index_uid, settings, tasks),
|
2022-09-16 16:31:16 +02:00
|
|
|
_ => unreachable!(),
|
|
|
|
};
|
|
|
|
let (index_uid, cleared_tasks) = match self
|
|
|
|
.create_next_batch_index(
|
|
|
|
rtxn,
|
|
|
|
index_uid,
|
|
|
|
BatchKind::DocumentClear { ids: other },
|
2022-10-19 18:27:18 +02:00
|
|
|
must_create_index,
|
2022-09-16 16:31:16 +02:00
|
|
|
)?
|
|
|
|
.unwrap()
|
|
|
|
{
|
2022-10-19 18:27:18 +02:00
|
|
|
Batch::IndexOperation {
|
|
|
|
op: IndexOperation::DocumentClear { index_uid, tasks },
|
|
|
|
..
|
|
|
|
} => (index_uid, tasks),
|
2022-09-16 16:31:16 +02:00
|
|
|
_ => unreachable!(),
|
|
|
|
};
|
|
|
|
|
2022-10-19 18:27:18 +02:00
|
|
|
Ok(Some(Batch::IndexOperation {
|
|
|
|
op: IndexOperation::DocumentClearAndSetting {
|
2022-09-29 18:15:50 +02:00
|
|
|
index_uid,
|
|
|
|
cleared_tasks,
|
|
|
|
settings,
|
|
|
|
settings_tasks,
|
|
|
|
},
|
2022-10-19 18:27:18 +02:00
|
|
|
must_create_index,
|
|
|
|
}))
|
2022-09-16 16:31:16 +02:00
|
|
|
}
|
2022-09-29 15:49:54 +02:00
|
|
|
BatchKind::SettingsAndDocumentImport {
|
2022-09-16 16:31:16 +02:00
|
|
|
settings_ids,
|
2022-09-29 15:49:54 +02:00
|
|
|
method,
|
2022-10-06 15:55:48 +02:00
|
|
|
allow_index_creation,
|
2022-09-29 15:49:54 +02:00
|
|
|
import_ids,
|
2022-09-16 16:31:16 +02:00
|
|
|
} => {
|
|
|
|
let settings = self.create_next_batch_index(
|
|
|
|
rtxn,
|
|
|
|
index_uid.clone(),
|
2022-10-20 18:00:07 +02:00
|
|
|
BatchKind::Settings { settings_ids, allow_index_creation },
|
2022-10-19 18:27:18 +02:00
|
|
|
must_create_index,
|
2022-09-16 16:31:16 +02:00
|
|
|
)?;
|
|
|
|
|
2022-09-29 15:49:54 +02:00
|
|
|
let document_import = self.create_next_batch_index(
|
2022-09-16 16:31:16 +02:00
|
|
|
rtxn,
|
|
|
|
index_uid.clone(),
|
2022-10-20 18:00:07 +02:00
|
|
|
BatchKind::DocumentImport { method, allow_index_creation, import_ids },
|
2022-10-19 18:27:18 +02:00
|
|
|
must_create_index,
|
2022-09-16 16:31:16 +02:00
|
|
|
)?;
|
|
|
|
|
2022-09-29 15:49:54 +02:00
|
|
|
match (document_import, settings) {
|
2022-09-16 16:31:16 +02:00
|
|
|
(
|
2022-10-19 18:27:18 +02:00
|
|
|
Some(Batch::IndexOperation {
|
|
|
|
op:
|
|
|
|
IndexOperation::DocumentImport {
|
|
|
|
primary_key,
|
|
|
|
documents_counts,
|
|
|
|
content_files,
|
|
|
|
tasks: document_import_tasks,
|
|
|
|
..
|
|
|
|
},
|
2022-09-16 16:31:16 +02:00
|
|
|
..
|
2022-10-19 18:27:18 +02:00
|
|
|
}),
|
|
|
|
Some(Batch::IndexOperation {
|
2022-10-20 18:00:07 +02:00
|
|
|
op: IndexOperation::Settings { settings, tasks: settings_tasks, .. },
|
2022-09-16 16:31:16 +02:00
|
|
|
..
|
2022-10-19 18:27:18 +02:00
|
|
|
}),
|
|
|
|
) => Ok(Some(Batch::IndexOperation {
|
|
|
|
op: IndexOperation::SettingsAndDocumentImport {
|
2022-09-29 18:15:50 +02:00
|
|
|
index_uid,
|
|
|
|
primary_key,
|
|
|
|
method,
|
2022-10-04 18:50:18 +02:00
|
|
|
documents_counts,
|
2022-09-29 18:15:50 +02:00
|
|
|
content_files,
|
|
|
|
document_import_tasks,
|
|
|
|
settings,
|
|
|
|
settings_tasks,
|
|
|
|
},
|
2022-10-19 18:27:18 +02:00
|
|
|
must_create_index,
|
|
|
|
})),
|
2022-09-16 16:31:16 +02:00
|
|
|
_ => unreachable!(),
|
|
|
|
}
|
|
|
|
}
|
2022-09-16 21:24:49 +02:00
|
|
|
BatchKind::IndexCreation { id } => {
|
|
|
|
let task = self.get_task(rtxn, id)?.ok_or(Error::CorruptedTaskQueue)?;
|
|
|
|
let (index_uid, primary_key) = match &task.kind {
|
2022-10-20 18:00:07 +02:00
|
|
|
KindWithContent::IndexCreation { index_uid, primary_key } => {
|
|
|
|
(index_uid.clone(), primary_key.clone())
|
|
|
|
}
|
2022-09-16 21:24:49 +02:00
|
|
|
_ => unreachable!(),
|
|
|
|
};
|
2022-10-20 18:00:07 +02:00
|
|
|
Ok(Some(Batch::IndexCreation { index_uid, primary_key, task }))
|
2022-09-16 21:24:49 +02:00
|
|
|
}
|
|
|
|
BatchKind::IndexUpdate { id } => {
|
|
|
|
let task = self.get_task(rtxn, id)?.ok_or(Error::CorruptedTaskQueue)?;
|
|
|
|
let primary_key = match &task.kind {
|
|
|
|
KindWithContent::IndexUpdate { primary_key, .. } => primary_key.clone(),
|
|
|
|
_ => unreachable!(),
|
|
|
|
};
|
2022-10-20 18:00:07 +02:00
|
|
|
Ok(Some(Batch::IndexUpdate { index_uid, primary_key, task }))
|
2022-09-16 21:24:49 +02:00
|
|
|
}
|
|
|
|
BatchKind::IndexDeletion { ids } => Ok(Some(Batch::IndexDeletion {
|
|
|
|
index_uid,
|
2022-10-20 13:18:25 +02:00
|
|
|
index_has_been_created: must_create_index,
|
2022-09-16 21:24:49 +02:00
|
|
|
tasks: self.get_existing_tasks(rtxn, ids)?,
|
|
|
|
})),
|
2022-10-17 16:30:18 +02:00
|
|
|
BatchKind::IndexSwap { id } => {
|
|
|
|
let task = self.get_task(rtxn, id)?.ok_or(Error::CorruptedTaskQueue)?;
|
|
|
|
Ok(Some(Batch::IndexSwap { task }))
|
|
|
|
}
|
2022-09-13 11:46:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-07 00:10:14 +02:00
|
|
|
/// Create the next batch to be processed;
|
|
|
|
/// 1. We get the *last* task to cancel.
|
2022-10-06 16:53:21 +02:00
|
|
|
/// 2. We get the *next* task to delete.
|
|
|
|
/// 3. We get the *next* snapshot to process.
|
|
|
|
/// 4. We get the *next* dump to process.
|
|
|
|
/// 5. We get the *next* tasks to process for a specific index.
|
2022-09-09 01:40:28 +02:00
|
|
|
pub(crate) fn create_next_batch(&self, rtxn: &RoTxn) -> Result<Option<Batch>> {
|
2022-10-20 17:11:44 +02:00
|
|
|
#[cfg(test)]
|
|
|
|
self.maybe_fail(crate::tests::FailureLocation::InsideCreateBatch)?;
|
|
|
|
|
2022-09-07 00:10:14 +02:00
|
|
|
let enqueued = &self.get_status(rtxn, Status::Enqueued)?;
|
2022-10-17 17:19:17 +02:00
|
|
|
let to_cancel = self.get_kind(rtxn, Kind::TaskCancelation)? & enqueued;
|
2022-09-07 00:10:14 +02:00
|
|
|
|
|
|
|
// 1. we get the last task to cancel.
|
|
|
|
if let Some(task_id) = to_cancel.max() {
|
2022-11-28 16:27:41 +01:00
|
|
|
// We retrieve the tasks that were processing before this tasks cancelation started.
|
|
|
|
// We must *not* reset the processing tasks before calling this method.
|
|
|
|
let ProcessingTasks { started_at, processing } =
|
|
|
|
&*self.processing_tasks.read().unwrap();
|
|
|
|
return Ok(Some(Batch::TaskCancelation {
|
|
|
|
task: self.get_task(rtxn, task_id)?.ok_or(Error::CorruptedTaskQueue)?,
|
|
|
|
previous_started_at: *started_at,
|
|
|
|
previous_processing_tasks: processing.clone(),
|
|
|
|
}));
|
2022-09-07 00:10:14 +02:00
|
|
|
}
|
|
|
|
|
2022-10-06 16:53:21 +02:00
|
|
|
// 2. we get the next task to delete
|
2022-10-13 12:48:23 +02:00
|
|
|
let to_delete = self.get_kind(rtxn, Kind::TaskDeletion)? & enqueued;
|
2022-10-06 16:53:21 +02:00
|
|
|
if let Some(task_id) = to_delete.min() {
|
2022-10-20 18:00:07 +02:00
|
|
|
let task = self.get_task(rtxn, task_id)?.ok_or(Error::CorruptedTaskQueue)?;
|
2022-10-13 11:09:00 +02:00
|
|
|
return Ok(Some(Batch::TaskDeletion(task)));
|
2022-10-06 16:53:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// 3. we batch the snapshot.
|
2022-10-25 10:44:58 +02:00
|
|
|
let to_snapshot = self.get_kind(rtxn, Kind::SnapshotCreation)? & enqueued;
|
2022-09-07 00:10:14 +02:00
|
|
|
if !to_snapshot.is_empty() {
|
2022-10-25 10:44:58 +02:00
|
|
|
return Ok(Some(Batch::SnapshotCreation(self.get_existing_tasks(rtxn, to_snapshot)?)));
|
2022-09-07 00:10:14 +02:00
|
|
|
}
|
|
|
|
|
2022-10-06 16:53:21 +02:00
|
|
|
// 4. we batch the dumps.
|
2022-10-24 19:08:15 +02:00
|
|
|
let to_dump = self.get_kind(rtxn, Kind::DumpCreation)? & enqueued;
|
2022-10-13 15:02:59 +02:00
|
|
|
if let Some(to_dump) = to_dump.min() {
|
|
|
|
return Ok(Some(Batch::Dump(
|
2022-10-20 18:00:07 +02:00
|
|
|
self.get_task(rtxn, to_dump)?.ok_or(Error::CorruptedTaskQueue)?,
|
2022-10-13 15:02:59 +02:00
|
|
|
)));
|
2022-09-07 00:10:14 +02:00
|
|
|
}
|
|
|
|
|
2022-10-25 10:26:51 +02:00
|
|
|
// 5. We make a batch from the unprioritised tasks. Start by taking the next enqueued task.
|
|
|
|
let task_id = if let Some(task_id) = enqueued.min() { task_id } else { return Ok(None) };
|
|
|
|
let task = self.get_task(rtxn, task_id)?.ok_or(Error::CorruptedTaskQueue)?;
|
|
|
|
|
|
|
|
// If the task is not associated with any index, verify that it is an index swap and
|
|
|
|
// create the batch directly. Otherwise, get the index name associated with the task
|
|
|
|
// and use the autobatcher to batch the enqueued tasks associated with it
|
|
|
|
|
|
|
|
let index_name = if let Some(&index_name) = task.indexes().first() {
|
|
|
|
index_name
|
|
|
|
} else {
|
|
|
|
assert!(matches!(&task.kind, KindWithContent::IndexSwap { swaps } if swaps.is_empty()));
|
|
|
|
return Ok(Some(Batch::IndexSwap { task }));
|
|
|
|
};
|
|
|
|
|
|
|
|
let index_already_exists = self.index_mapper.exists(rtxn, index_name)?;
|
|
|
|
|
|
|
|
let index_tasks = self.index_tasks(rtxn, index_name)? & enqueued;
|
|
|
|
|
|
|
|
// If autobatching is disabled we only take one task at a time.
|
|
|
|
let tasks_limit = if self.autobatching_enabled { usize::MAX } else { 1 };
|
|
|
|
|
|
|
|
let enqueued = index_tasks
|
|
|
|
.into_iter()
|
|
|
|
.take(tasks_limit)
|
|
|
|
.map(|task_id| {
|
|
|
|
self.get_task(rtxn, task_id)
|
|
|
|
.and_then(|task| task.ok_or(Error::CorruptedTaskQueue))
|
|
|
|
.map(|task| (task.uid, task.kind))
|
|
|
|
})
|
|
|
|
.collect::<Result<Vec<_>>>()?;
|
|
|
|
|
|
|
|
if let Some((batchkind, create_index)) =
|
|
|
|
autobatcher::autobatch(enqueued, index_already_exists)
|
|
|
|
{
|
|
|
|
return self.create_next_batch_index(
|
|
|
|
rtxn,
|
|
|
|
index_name.to_string(),
|
|
|
|
batchkind,
|
|
|
|
create_index,
|
|
|
|
);
|
2022-09-07 00:10:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// If we found no tasks then we were notified for something that got autobatched
|
|
|
|
// somehow and there is nothing to do.
|
2022-09-09 01:40:28 +02:00
|
|
|
Ok(None)
|
2022-09-07 00:10:14 +02:00
|
|
|
}
|
|
|
|
|
2022-10-20 10:25:34 +02:00
|
|
|
/// Apply the operation associated with the given batch.
|
|
|
|
///
|
|
|
|
/// ## Return
|
|
|
|
/// The list of tasks that were processed. The metadata of each task in the returned
|
|
|
|
/// list is updated accordingly, with the exception of the its date fields
|
|
|
|
/// [`finished_at`](meilisearch_types::tasks::Task::finished_at) and [`started_at`](meilisearch_types::tasks::Task::started_at).
|
2022-09-26 22:26:30 +02:00
|
|
|
pub(crate) fn process_batch(&self, batch: Batch) -> Result<Vec<Task>> {
|
2022-10-20 17:11:44 +02:00
|
|
|
#[cfg(test)]
|
2022-10-25 11:42:14 +02:00
|
|
|
{
|
|
|
|
self.maybe_fail(crate::tests::FailureLocation::InsideProcessBatch)?;
|
|
|
|
self.maybe_fail(crate::tests::FailureLocation::PanicInsideProcessBatch)?;
|
|
|
|
self.breakpoint(crate::Breakpoint::InsideProcessBatch);
|
|
|
|
}
|
2022-09-09 12:16:19 +02:00
|
|
|
match batch {
|
2022-11-28 16:27:41 +01:00
|
|
|
Batch::TaskCancelation { mut task, previous_started_at, previous_processing_tasks } => {
|
2022-10-17 17:19:17 +02:00
|
|
|
// 1. Retrieve the tasks that matched the query at enqueue-time.
|
|
|
|
let matched_tasks =
|
|
|
|
if let KindWithContent::TaskCancelation { tasks, query: _ } = &task.kind {
|
|
|
|
tasks
|
|
|
|
} else {
|
|
|
|
unreachable!()
|
|
|
|
};
|
|
|
|
|
|
|
|
let mut wtxn = self.env.write_txn()?;
|
2022-11-28 16:27:41 +01:00
|
|
|
let canceled_tasks_content_uuids = self.cancel_matched_tasks(
|
|
|
|
&mut wtxn,
|
|
|
|
task.uid,
|
|
|
|
matched_tasks,
|
|
|
|
previous_started_at,
|
|
|
|
&previous_processing_tasks,
|
|
|
|
)?;
|
2022-10-17 17:19:17 +02:00
|
|
|
|
|
|
|
task.status = Status::Succeeded;
|
|
|
|
match &mut task.details {
|
|
|
|
Some(Details::TaskCancelation {
|
|
|
|
matched_tasks: _,
|
|
|
|
canceled_tasks,
|
2022-11-28 16:27:41 +01:00
|
|
|
original_filter: _,
|
2022-10-17 17:19:17 +02:00
|
|
|
}) => {
|
2022-10-19 11:48:35 +02:00
|
|
|
*canceled_tasks = Some(canceled_tasks_content_uuids.len() as u64);
|
2022-10-17 17:19:17 +02:00
|
|
|
}
|
|
|
|
_ => unreachable!(),
|
|
|
|
}
|
|
|
|
|
2022-10-25 18:44:07 +02:00
|
|
|
// We must only remove the content files if the transaction is successfully committed
|
2022-10-19 11:48:35 +02:00
|
|
|
// and if errors occurs when we are deleting files we must do our best to delete
|
|
|
|
// everything. We do not return the encountered errors when deleting the content
|
|
|
|
// files as it is not a breaking operation and we can safely continue our job.
|
|
|
|
match wtxn.commit() {
|
|
|
|
Ok(()) => {
|
|
|
|
for content_uuid in canceled_tasks_content_uuids {
|
|
|
|
if let Err(error) = self.delete_update_file(content_uuid) {
|
|
|
|
error!(
|
|
|
|
"We failed deleting the content file indentified as {}: {}",
|
|
|
|
content_uuid, error
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Err(e) => return Err(e.into()),
|
|
|
|
}
|
|
|
|
|
2022-10-17 17:19:17 +02:00
|
|
|
Ok(vec![task])
|
|
|
|
}
|
2022-10-13 11:09:00 +02:00
|
|
|
Batch::TaskDeletion(mut task) => {
|
2022-10-11 09:53:08 +02:00
|
|
|
// 1. Retrieve the tasks that matched the query at enqueue-time.
|
2022-10-06 16:53:21 +02:00
|
|
|
let matched_tasks =
|
2022-10-13 11:09:00 +02:00
|
|
|
if let KindWithContent::TaskDeletion { tasks, query: _ } = &task.kind {
|
2022-10-06 16:53:21 +02:00
|
|
|
tasks
|
|
|
|
} else {
|
|
|
|
unreachable!()
|
|
|
|
};
|
2022-10-10 12:57:17 +02:00
|
|
|
|
2022-10-06 16:53:21 +02:00
|
|
|
let mut wtxn = self.env.write_txn()?;
|
2022-10-18 17:47:47 +02:00
|
|
|
let deleted_tasks_count = self.delete_matched_tasks(&mut wtxn, matched_tasks)?;
|
2022-10-10 12:57:17 +02:00
|
|
|
|
2022-10-06 16:53:21 +02:00
|
|
|
task.status = Status::Succeeded;
|
|
|
|
match &mut task.details {
|
2022-10-13 11:09:00 +02:00
|
|
|
Some(Details::TaskDeletion {
|
2022-10-06 16:53:21 +02:00
|
|
|
matched_tasks: _,
|
|
|
|
deleted_tasks,
|
2022-11-28 16:27:41 +01:00
|
|
|
original_filter: _,
|
2022-10-06 16:53:21 +02:00
|
|
|
}) => {
|
2022-10-18 17:47:47 +02:00
|
|
|
*deleted_tasks = Some(deleted_tasks_count);
|
2022-10-06 16:53:21 +02:00
|
|
|
}
|
|
|
|
_ => unreachable!(),
|
|
|
|
}
|
|
|
|
wtxn.commit()?;
|
|
|
|
Ok(vec![task])
|
|
|
|
}
|
2022-10-25 14:09:01 +02:00
|
|
|
Batch::SnapshotCreation(mut tasks) => {
|
|
|
|
fs::create_dir_all(&self.snapshots_path)?;
|
|
|
|
let temp_snapshot_dir = tempfile::tempdir()?;
|
|
|
|
|
|
|
|
// 1. Snapshot the version file.
|
2022-10-25 15:06:28 +02:00
|
|
|
let dst = temp_snapshot_dir.path().join(VERSION_FILE_NAME);
|
|
|
|
fs::copy(&self.version_file_path, dst)?;
|
2022-10-25 14:09:01 +02:00
|
|
|
|
|
|
|
// 2. Snapshot the index-scheduler LMDB env
|
|
|
|
//
|
|
|
|
// When we call copy_to_path, LMDB opens a read transaction by itself,
|
|
|
|
// we can't provide our own. It is an issue as we would like to know
|
|
|
|
// the update files to copy but new ones can be enqueued between the copy
|
|
|
|
// of the env and the new transaction we open to retrieve the enqueued tasks.
|
|
|
|
// So we prefer opening a new transaction after copying the env and copy more
|
|
|
|
// update files than not enough.
|
|
|
|
//
|
|
|
|
// Note that there cannot be any update files deleted between those
|
|
|
|
// two read operations as the task processing is synchronous.
|
|
|
|
|
2022-10-25 18:44:07 +02:00
|
|
|
// 2.1 First copy the LMDB env of the index-scheduler
|
|
|
|
let dst = temp_snapshot_dir.path().join("tasks");
|
|
|
|
fs::create_dir_all(&dst)?;
|
|
|
|
self.env.copy_to_path(dst.join("data.mdb"), CompactionOption::Enabled)?;
|
2022-10-25 14:09:01 +02:00
|
|
|
|
|
|
|
// 2.2 Create a read transaction on the index-scheduler
|
|
|
|
let rtxn = self.env.read_txn()?;
|
|
|
|
|
|
|
|
// 2.3 Create the update files directory
|
|
|
|
let update_files_dir = temp_snapshot_dir.path().join("update_files");
|
|
|
|
fs::create_dir_all(&update_files_dir)?;
|
|
|
|
|
|
|
|
// 2.4 Only copy the update files of the enqueued tasks
|
|
|
|
for task_id in self.get_status(&rtxn, Status::Enqueued)? {
|
|
|
|
let task = self.get_task(&rtxn, task_id)?.ok_or(Error::CorruptedTaskQueue)?;
|
|
|
|
if let Some(content_uuid) = task.content_uuid() {
|
|
|
|
let src = self.file_store.get_update_path(content_uuid);
|
|
|
|
let dst = update_files_dir.join(content_uuid.to_string());
|
|
|
|
fs::copy(src, dst)?;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 3. Snapshot every indexes
|
|
|
|
// TODO we are opening all of the indexes it can be too much we should unload all
|
|
|
|
// of the indexes we are trying to open. It would be even better to only unload
|
2022-10-25 15:06:28 +02:00
|
|
|
// the ones that were opened by us. Or maybe use a LRU in the index mapper.
|
2022-10-25 14:09:01 +02:00
|
|
|
for result in self.index_mapper.index_mapping.iter(&rtxn)? {
|
|
|
|
let (name, uuid) = result?;
|
|
|
|
let index = self.index_mapper.index(&rtxn, name)?;
|
2022-10-25 18:44:07 +02:00
|
|
|
let dst = temp_snapshot_dir.path().join("indexes").join(uuid.to_string());
|
|
|
|
fs::create_dir_all(&dst)?;
|
|
|
|
index.copy_to_path(dst.join("data.mdb"), CompactionOption::Enabled)?;
|
2022-10-25 14:09:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
drop(rtxn);
|
|
|
|
|
|
|
|
// 4. Snapshot the auth LMDB env
|
2022-10-25 18:44:07 +02:00
|
|
|
let dst = temp_snapshot_dir.path().join("auth");
|
2022-10-25 14:09:01 +02:00
|
|
|
fs::create_dir_all(&dst)?;
|
2022-10-25 18:44:07 +02:00
|
|
|
// TODO We can't use the open_auth_store_env function here but we should
|
|
|
|
let auth = milli::heed::EnvOpenOptions::new()
|
2022-10-26 15:14:46 +02:00
|
|
|
.map_size(1024 * 1024 * 1024) // 1 GiB
|
2022-10-25 18:44:07 +02:00
|
|
|
.max_dbs(2)
|
|
|
|
.open(&self.auth_path)?;
|
|
|
|
auth.copy_to_path(dst.join("data.mdb"), CompactionOption::Enabled)?;
|
2022-10-25 14:09:01 +02:00
|
|
|
|
2022-10-25 15:51:15 +02:00
|
|
|
// 5. Copy and tarball the flat snapshot
|
|
|
|
// 5.1 Find the original name of the database
|
|
|
|
// TODO find a better way to get this path
|
|
|
|
let mut base_path = self.env.path().to_owned();
|
|
|
|
base_path.pop();
|
|
|
|
let db_name = base_path.file_name().and_then(OsStr::to_str).unwrap_or("data.ms");
|
|
|
|
|
|
|
|
// 5.2 Tarball the content of the snapshot in a tempfile with a .snapshot extension
|
2022-10-25 18:44:07 +02:00
|
|
|
let snapshot_path = self.snapshots_path.join(format!("{}.snapshot", db_name));
|
2022-10-25 15:51:15 +02:00
|
|
|
let temp_snapshot_file = tempfile::NamedTempFile::new_in(&self.snapshots_path)?;
|
|
|
|
compression::to_tar_gz(temp_snapshot_dir.path(), temp_snapshot_file.path())?;
|
2022-12-19 14:12:26 +01:00
|
|
|
let file = temp_snapshot_file.persist(snapshot_path)?;
|
2022-10-25 15:51:15 +02:00
|
|
|
|
|
|
|
// 5.3 Change the permission to make the snapshot readonly
|
|
|
|
let mut permissions = file.metadata()?.permissions();
|
|
|
|
permissions.set_readonly(true);
|
|
|
|
file.set_permissions(permissions)?;
|
2022-10-25 14:09:01 +02:00
|
|
|
|
|
|
|
for task in &mut tasks {
|
|
|
|
task.status = Status::Succeeded;
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(tasks)
|
|
|
|
}
|
2022-10-13 15:02:59 +02:00
|
|
|
Batch::Dump(mut task) => {
|
2022-10-16 02:01:45 +02:00
|
|
|
let started_at = OffsetDateTime::now_utc();
|
2022-11-28 16:27:41 +01:00
|
|
|
let (keys, instance_uid) =
|
|
|
|
if let KindWithContent::DumpCreation { keys, instance_uid } = &task.kind {
|
|
|
|
(keys, instance_uid)
|
2022-10-24 19:08:15 +02:00
|
|
|
} else {
|
|
|
|
unreachable!();
|
|
|
|
};
|
2022-10-22 16:35:42 +02:00
|
|
|
let dump = dump::DumpWriter::new(*instance_uid)?;
|
2022-10-13 15:02:59 +02:00
|
|
|
|
|
|
|
// 1. dump the keys
|
2022-10-17 17:04:52 +02:00
|
|
|
let mut dump_keys = dump.create_keys()?;
|
2022-10-13 15:02:59 +02:00
|
|
|
for key in keys {
|
2022-10-17 16:45:00 +02:00
|
|
|
dump_keys.push_key(key)?;
|
2022-10-13 15:02:59 +02:00
|
|
|
}
|
2022-10-17 17:04:52 +02:00
|
|
|
dump_keys.flush()?;
|
2022-10-13 15:02:59 +02:00
|
|
|
|
|
|
|
let rtxn = self.env.read_txn()?;
|
|
|
|
|
|
|
|
// 2. dump the tasks
|
2022-10-17 17:04:52 +02:00
|
|
|
let mut dump_tasks = dump.create_tasks_queue()?;
|
2022-10-13 15:02:59 +02:00
|
|
|
for ret in self.all_tasks.iter(&rtxn)? {
|
2022-10-16 02:01:45 +02:00
|
|
|
let (_, mut t) = ret?;
|
|
|
|
let status = t.status;
|
2022-10-25 14:09:01 +02:00
|
|
|
let content_file = t.content_uuid();
|
2022-10-16 02:01:45 +02:00
|
|
|
|
|
|
|
// In the case we're dumping ourselves we want to be marked as finished
|
|
|
|
// to not loop over ourselves indefinitely.
|
|
|
|
if t.uid == task.uid {
|
|
|
|
let finished_at = OffsetDateTime::now_utc();
|
|
|
|
|
|
|
|
// We're going to fake the date because we don't know if everything is going to go well.
|
|
|
|
// But we need to dump the task as finished and successful.
|
|
|
|
// If something fail everything will be set appropriately in the end.
|
|
|
|
t.status = Status::Succeeded;
|
|
|
|
t.started_at = Some(started_at);
|
|
|
|
t.finished_at = Some(finished_at);
|
|
|
|
}
|
2022-10-17 17:04:52 +02:00
|
|
|
let mut dump_content_file = dump_tasks.push_task(&t.into())?;
|
2022-10-13 15:02:59 +02:00
|
|
|
|
2022-10-16 02:01:45 +02:00
|
|
|
// 2.1. Dump the `content_file` associated with the task if there is one and the task is not finished yet.
|
2022-10-13 16:21:54 +02:00
|
|
|
if let Some(content_file) = content_file {
|
2022-10-16 02:01:45 +02:00
|
|
|
if status == Status::Enqueued {
|
|
|
|
let content_file = self.file_store.get_update(content_file)?;
|
|
|
|
|
|
|
|
let reader = DocumentsBatchReader::from_reader(content_file)
|
|
|
|
.map_err(milli::Error::from)?;
|
|
|
|
|
|
|
|
let (mut cursor, documents_batch_index) =
|
|
|
|
reader.into_cursor_and_fields_index();
|
|
|
|
|
|
|
|
while let Some(doc) =
|
|
|
|
cursor.next_document().map_err(milli::Error::from)?
|
|
|
|
{
|
|
|
|
dump_content_file.push_document(&obkv_to_object(
|
|
|
|
&doc,
|
|
|
|
&documents_batch_index,
|
|
|
|
)?)?;
|
|
|
|
}
|
2022-10-17 17:04:52 +02:00
|
|
|
dump_content_file.flush()?;
|
2022-10-13 15:02:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-10-17 17:04:52 +02:00
|
|
|
dump_tasks.flush()?;
|
2022-10-13 15:02:59 +02:00
|
|
|
|
|
|
|
// 3. Dump the indexes
|
2022-10-17 17:43:23 +02:00
|
|
|
for (uid, index) in self.index_mapper.indexes(&rtxn)? {
|
2022-10-13 15:02:59 +02:00
|
|
|
let rtxn = index.read_txn()?;
|
|
|
|
let metadata = IndexMetadata {
|
|
|
|
uid: uid.clone(),
|
|
|
|
primary_key: index.primary_key(&rtxn)?.map(String::from),
|
|
|
|
created_at: index.created_at(&rtxn)?,
|
|
|
|
updated_at: index.updated_at(&rtxn)?,
|
|
|
|
};
|
|
|
|
let mut index_dumper = dump.create_index(&uid, &metadata)?;
|
|
|
|
|
|
|
|
let fields_ids_map = index.fields_ids_map(&rtxn)?;
|
|
|
|
let all_fields: Vec<_> = fields_ids_map.iter().map(|(id, _)| id).collect();
|
|
|
|
|
|
|
|
// 3.1. Dump the documents
|
|
|
|
for ret in index.all_documents(&rtxn)? {
|
|
|
|
let (_id, doc) = ret?;
|
|
|
|
let document = milli::obkv_to_json(&all_fields, &fields_ids_map, doc)?;
|
|
|
|
index_dumper.push_document(&document)?;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 3.2. Dump the settings
|
|
|
|
let settings = meilisearch_types::settings::settings(&index, &rtxn)?;
|
|
|
|
index_dumper.settings(&settings)?;
|
|
|
|
}
|
|
|
|
|
2022-11-28 16:27:41 +01:00
|
|
|
let dump_uid = started_at.format(format_description!(
|
|
|
|
"[year repr:full][month repr:numerical][day padding:zero]-[hour padding:zero][minute padding:zero][second padding:zero][subsecond digits:3]"
|
|
|
|
)).unwrap();
|
|
|
|
|
2022-10-13 15:02:59 +02:00
|
|
|
let path = self.dumps_path.join(format!("{}.dump", dump_uid));
|
2022-10-17 16:45:00 +02:00
|
|
|
let file = File::create(path)?;
|
|
|
|
dump.persist_to(BufWriter::new(file))?;
|
2022-10-13 15:02:59 +02:00
|
|
|
|
2022-10-17 17:04:52 +02:00
|
|
|
// if we reached this step we can tell the scheduler we succeeded to dump ourselves.
|
2022-10-13 15:02:59 +02:00
|
|
|
task.status = Status::Succeeded;
|
2022-11-28 16:27:41 +01:00
|
|
|
task.details = Some(Details::Dump { dump_uid: Some(dump_uid) });
|
2022-10-13 15:02:59 +02:00
|
|
|
Ok(vec![task])
|
|
|
|
}
|
2022-10-20 18:00:07 +02:00
|
|
|
Batch::IndexOperation { op, must_create_index } => {
|
2022-10-19 18:27:18 +02:00
|
|
|
let index_uid = op.index_uid();
|
|
|
|
let index = if must_create_index {
|
|
|
|
// create the index if it doesn't already exist
|
2022-10-26 14:19:56 +02:00
|
|
|
let wtxn = self.env.write_txn()?;
|
2022-12-16 08:11:12 +01:00
|
|
|
self.index_mapper.create_index(wtxn, index_uid, None)?
|
2022-10-19 18:27:18 +02:00
|
|
|
} else {
|
|
|
|
let rtxn = self.env.read_txn()?;
|
|
|
|
self.index_mapper.index(&rtxn, index_uid)?
|
2022-09-29 18:15:50 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
let mut index_wtxn = index.write_txn()?;
|
2022-10-19 18:27:18 +02:00
|
|
|
let tasks = self.apply_index_operation(&mut index_wtxn, &index, op)?;
|
2022-09-29 18:15:50 +02:00
|
|
|
index_wtxn.commit()?;
|
2022-09-29 14:31:01 +02:00
|
|
|
|
|
|
|
Ok(tasks)
|
|
|
|
}
|
2022-10-20 18:00:07 +02:00
|
|
|
Batch::IndexCreation { index_uid, primary_key, task } => {
|
2022-10-26 14:19:56 +02:00
|
|
|
let wtxn = self.env.write_txn()?;
|
2022-10-22 14:57:59 +02:00
|
|
|
if self.index_mapper.exists(&wtxn, &index_uid)? {
|
|
|
|
return Err(Error::IndexAlreadyExists(index_uid));
|
|
|
|
}
|
2022-12-16 08:11:12 +01:00
|
|
|
self.index_mapper.create_index(wtxn, &index_uid, None)?;
|
2022-10-04 11:51:39 +02:00
|
|
|
|
2022-10-20 18:00:07 +02:00
|
|
|
self.process_batch(Batch::IndexUpdate { index_uid, primary_key, task })
|
2022-10-04 11:51:39 +02:00
|
|
|
}
|
2022-10-20 18:00:07 +02:00
|
|
|
Batch::IndexUpdate { index_uid, primary_key, mut task } => {
|
2022-10-04 11:51:39 +02:00
|
|
|
let rtxn = self.env.read_txn()?;
|
|
|
|
let index = self.index_mapper.index(&rtxn, &index_uid)?;
|
2022-10-04 11:48:08 +02:00
|
|
|
|
2022-10-04 18:50:18 +02:00
|
|
|
if let Some(primary_key) = primary_key.clone() {
|
2022-10-04 11:48:08 +02:00
|
|
|
let mut index_wtxn = index.write_txn()?;
|
2022-10-11 17:42:43 +02:00
|
|
|
let mut builder = MilliSettings::new(
|
2022-10-04 11:48:08 +02:00
|
|
|
&mut index_wtxn,
|
|
|
|
&index,
|
|
|
|
self.index_mapper.indexer_config(),
|
|
|
|
);
|
|
|
|
builder.set_primary_key(primary_key);
|
2022-10-19 11:22:59 +02:00
|
|
|
let must_stop_processing = self.must_stop_processing.clone();
|
2022-10-17 17:19:17 +02:00
|
|
|
builder.execute(
|
|
|
|
|indexing_step| debug!("update: {:?}", indexing_step),
|
2022-10-19 11:22:59 +02:00
|
|
|
|| must_stop_processing.get(),
|
2022-10-17 17:19:17 +02:00
|
|
|
)?;
|
2022-10-04 11:48:08 +02:00
|
|
|
index_wtxn.commit()?;
|
|
|
|
}
|
2022-10-04 18:50:18 +02:00
|
|
|
task.status = Status::Succeeded;
|
|
|
|
task.details = Some(Details::IndexInfo { primary_key });
|
|
|
|
|
2022-10-04 11:48:08 +02:00
|
|
|
Ok(vec![task])
|
|
|
|
}
|
2022-10-20 18:00:07 +02:00
|
|
|
Batch::IndexDeletion { index_uid, index_has_been_created, mut tasks } => {
|
2022-10-04 18:19:18 +02:00
|
|
|
let wtxn = self.env.write_txn()?;
|
2022-10-05 14:05:20 +02:00
|
|
|
|
2022-10-20 13:18:25 +02:00
|
|
|
// it's possible that the index doesn't exist
|
|
|
|
let number_of_documents = || -> Result<u64> {
|
2022-10-05 14:05:20 +02:00
|
|
|
let index = self.index_mapper.index(&wtxn, &index_uid)?;
|
|
|
|
let index_rtxn = index.read_txn()?;
|
2022-10-20 13:18:25 +02:00
|
|
|
Ok(index.number_of_documents(&index_rtxn)?)
|
|
|
|
}()
|
|
|
|
.unwrap_or_default();
|
2022-10-05 14:05:20 +02:00
|
|
|
|
2022-10-04 18:50:18 +02:00
|
|
|
// The write transaction is directly owned and commited inside.
|
2022-10-20 13:18:25 +02:00
|
|
|
match self.index_mapper.delete_index(wtxn, &index_uid) {
|
|
|
|
Ok(()) => (),
|
|
|
|
Err(Error::IndexNotFound(_)) if index_has_been_created => (),
|
|
|
|
Err(e) => return Err(e),
|
|
|
|
}
|
2022-10-04 18:50:18 +02:00
|
|
|
|
|
|
|
// We set all the tasks details to the default value.
|
|
|
|
for task in &mut tasks {
|
|
|
|
task.status = Status::Succeeded;
|
2022-10-05 14:05:20 +02:00
|
|
|
task.details = match &task.kind {
|
2022-10-20 18:00:07 +02:00
|
|
|
KindWithContent::IndexDeletion { .. } => {
|
|
|
|
Some(Details::ClearAll { deleted_documents: Some(number_of_documents) })
|
|
|
|
}
|
2022-10-19 16:44:42 +02:00
|
|
|
otherwise => otherwise.default_finished_details(),
|
2022-10-05 14:05:20 +02:00
|
|
|
};
|
2022-10-04 18:50:18 +02:00
|
|
|
}
|
2022-10-04 18:19:18 +02:00
|
|
|
|
2022-10-04 18:50:18 +02:00
|
|
|
Ok(tasks)
|
2022-10-04 18:19:18 +02:00
|
|
|
}
|
2022-10-17 16:30:18 +02:00
|
|
|
Batch::IndexSwap { mut task } => {
|
|
|
|
let mut wtxn = self.env.write_txn()?;
|
|
|
|
let swaps = if let KindWithContent::IndexSwap { swaps } = &task.kind {
|
|
|
|
swaps
|
|
|
|
} else {
|
|
|
|
unreachable!()
|
|
|
|
};
|
2022-10-27 09:41:32 +02:00
|
|
|
let mut not_found_indexes = BTreeSet::new();
|
|
|
|
for IndexSwap { indexes: (lhs, rhs) } in swaps {
|
|
|
|
for index in [lhs, rhs] {
|
|
|
|
let index_exists = self.index_mapper.index_exists(&wtxn, index)?;
|
|
|
|
if !index_exists {
|
|
|
|
not_found_indexes.insert(index);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !not_found_indexes.is_empty() {
|
|
|
|
if not_found_indexes.len() == 1 {
|
2023-01-05 23:21:44 +01:00
|
|
|
return Err(Error::SwapIndexNotFound(
|
2022-10-27 09:41:32 +02:00
|
|
|
not_found_indexes.into_iter().next().unwrap().clone(),
|
|
|
|
));
|
|
|
|
} else {
|
2023-01-05 23:21:44 +01:00
|
|
|
return Err(Error::SwapIndexesNotFound(
|
2022-10-27 09:41:32 +02:00
|
|
|
not_found_indexes.into_iter().cloned().collect(),
|
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
2022-10-26 12:57:29 +02:00
|
|
|
for swap in swaps {
|
|
|
|
self.apply_index_swap(&mut wtxn, task.uid, &swap.indexes.0, &swap.indexes.1)?;
|
2022-10-17 16:30:18 +02:00
|
|
|
}
|
|
|
|
wtxn.commit()?;
|
|
|
|
task.status = Status::Succeeded;
|
|
|
|
Ok(vec![task])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Swap the index `lhs` with the index `rhs`.
|
|
|
|
fn apply_index_swap(&self, wtxn: &mut RwTxn, task_id: u32, lhs: &str, rhs: &str) -> Result<()> {
|
|
|
|
// 1. Verify that both lhs and rhs are existing indexes
|
2022-10-22 16:35:42 +02:00
|
|
|
let index_lhs_exists = self.index_mapper.index_exists(wtxn, lhs)?;
|
2022-10-17 16:30:18 +02:00
|
|
|
if !index_lhs_exists {
|
|
|
|
return Err(Error::IndexNotFound(lhs.to_owned()));
|
2022-09-29 18:15:50 +02:00
|
|
|
}
|
2022-10-22 16:35:42 +02:00
|
|
|
let index_rhs_exists = self.index_mapper.index_exists(wtxn, rhs)?;
|
2022-10-17 16:30:18 +02:00
|
|
|
if !index_rhs_exists {
|
|
|
|
return Err(Error::IndexNotFound(rhs.to_owned()));
|
|
|
|
}
|
|
|
|
|
2022-10-27 09:41:32 +02:00
|
|
|
// 2. Get the task set for index = name that appeared before the index swap task
|
2022-10-27 13:00:30 +02:00
|
|
|
let mut index_lhs_task_ids = self.index_tasks(wtxn, lhs)?;
|
2022-10-17 16:30:18 +02:00
|
|
|
index_lhs_task_ids.remove_range(task_id..);
|
2022-10-27 13:00:30 +02:00
|
|
|
let mut index_rhs_task_ids = self.index_tasks(wtxn, rhs)?;
|
2022-10-17 16:30:18 +02:00
|
|
|
index_rhs_task_ids.remove_range(task_id..);
|
|
|
|
|
|
|
|
// 3. before_name -> new_name in the task's KindWithContent
|
|
|
|
for task_id in &index_lhs_task_ids | &index_rhs_task_ids {
|
2022-10-22 16:35:42 +02:00
|
|
|
let mut task = self.get_task(wtxn, task_id)?.ok_or(Error::CorruptedTaskQueue)?;
|
2022-10-17 16:30:18 +02:00
|
|
|
swap_index_uid_in_task(&mut task, (lhs, rhs));
|
|
|
|
self.all_tasks.put(wtxn, &BEU32::new(task_id), &task)?;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 4. remove the task from indexuid = before_name
|
|
|
|
// 5. add the task to indexuid = after_name
|
|
|
|
self.update_index(wtxn, lhs, |lhs_tasks| {
|
|
|
|
*lhs_tasks -= &index_lhs_task_ids;
|
|
|
|
*lhs_tasks |= &index_rhs_task_ids;
|
|
|
|
})?;
|
2022-10-26 17:31:23 +02:00
|
|
|
self.update_index(wtxn, rhs, |rhs_tasks| {
|
|
|
|
*rhs_tasks -= &index_rhs_task_ids;
|
|
|
|
*rhs_tasks |= &index_lhs_task_ids;
|
2022-10-17 16:30:18 +02:00
|
|
|
})?;
|
|
|
|
|
|
|
|
// 6. Swap in the index mapper
|
|
|
|
self.index_mapper.swap(wtxn, lhs, rhs)?;
|
|
|
|
|
|
|
|
Ok(())
|
2022-09-29 18:15:50 +02:00
|
|
|
}
|
|
|
|
|
2022-10-20 10:25:34 +02:00
|
|
|
/// Process the index operation on the given index.
|
|
|
|
///
|
|
|
|
/// ## Return
|
|
|
|
/// The list of processed tasks.
|
2022-09-29 18:15:50 +02:00
|
|
|
fn apply_index_operation<'txn, 'i>(
|
|
|
|
&self,
|
|
|
|
index_wtxn: &'txn mut RwTxn<'i, '_>,
|
2022-10-11 17:42:43 +02:00
|
|
|
index: &'i Index,
|
2022-09-29 18:15:50 +02:00
|
|
|
operation: IndexOperation,
|
|
|
|
) -> Result<Vec<Task>> {
|
|
|
|
match operation {
|
2022-10-04 18:50:18 +02:00
|
|
|
IndexOperation::DocumentClear { mut tasks, .. } => {
|
2022-10-05 16:48:43 +02:00
|
|
|
let count = milli::update::ClearDocuments::new(index_wtxn, index).execute()?;
|
|
|
|
|
2022-10-05 16:54:06 +02:00
|
|
|
let mut first_clear_found = false;
|
2022-09-29 18:15:50 +02:00
|
|
|
for task in &mut tasks {
|
2022-10-05 16:48:43 +02:00
|
|
|
task.status = Status::Succeeded;
|
2022-10-05 16:54:06 +02:00
|
|
|
// The first document clear will effectively delete every documents
|
|
|
|
// in the database but the next ones will clear 0 documents.
|
2022-10-05 16:48:43 +02:00
|
|
|
task.details = match &task.kind {
|
2022-10-05 16:54:06 +02:00
|
|
|
KindWithContent::DocumentClear { .. } => {
|
|
|
|
let count = if first_clear_found { 0 } else { count };
|
|
|
|
first_clear_found = true;
|
2022-10-20 18:00:07 +02:00
|
|
|
Some(Details::ClearAll { deleted_documents: Some(count) })
|
2022-10-05 16:54:06 +02:00
|
|
|
}
|
2022-10-05 16:48:43 +02:00
|
|
|
otherwise => otherwise.default_details(),
|
|
|
|
};
|
2022-09-18 22:04:36 +02:00
|
|
|
}
|
|
|
|
|
2022-09-21 12:01:46 +02:00
|
|
|
Ok(tasks)
|
2022-09-18 22:04:36 +02:00
|
|
|
}
|
2022-09-29 18:15:50 +02:00
|
|
|
IndexOperation::DocumentImport {
|
2022-10-04 18:50:18 +02:00
|
|
|
index_uid: _,
|
2022-09-13 11:46:07 +02:00
|
|
|
primary_key,
|
2022-09-29 15:49:54 +02:00
|
|
|
method,
|
2022-10-04 18:50:18 +02:00
|
|
|
documents_counts,
|
2022-09-13 11:46:07 +02:00
|
|
|
content_files,
|
2022-09-29 18:15:50 +02:00
|
|
|
mut tasks,
|
2022-09-13 11:46:07 +02:00
|
|
|
} => {
|
2022-10-22 14:45:20 +02:00
|
|
|
let mut primary_key_has_been_set = false;
|
2022-10-19 11:22:59 +02:00
|
|
|
let must_stop_processing = self.must_stop_processing.clone();
|
2022-09-29 18:15:50 +02:00
|
|
|
let indexer_config = self.index_mapper.indexer_config();
|
2022-10-04 11:48:08 +02:00
|
|
|
// TODO use the code from the IndexCreate operation
|
2022-09-29 18:15:50 +02:00
|
|
|
if let Some(primary_key) = primary_key {
|
|
|
|
if index.primary_key(index_wtxn)?.is_none() {
|
|
|
|
let mut builder =
|
|
|
|
milli::update::Settings::new(index_wtxn, index, indexer_config);
|
|
|
|
builder.set_primary_key(primary_key);
|
2022-10-17 17:19:17 +02:00
|
|
|
builder.execute(
|
|
|
|
|indexing_step| debug!("update: {:?}", indexing_step),
|
2022-10-19 11:22:59 +02:00
|
|
|
|| must_stop_processing.clone().get(),
|
2022-10-17 17:19:17 +02:00
|
|
|
)?;
|
2022-10-22 14:45:20 +02:00
|
|
|
primary_key_has_been_set = true;
|
2022-09-29 16:04:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-20 18:00:07 +02:00
|
|
|
let config = IndexDocumentsConfig { update_method: method, ..Default::default() };
|
2022-09-29 16:04:23 +02:00
|
|
|
|
2022-09-29 18:15:50 +02:00
|
|
|
let mut builder = milli::update::IndexDocuments::new(
|
|
|
|
index_wtxn,
|
|
|
|
index,
|
|
|
|
indexer_config,
|
|
|
|
config,
|
|
|
|
|indexing_step| debug!("update: {:?}", indexing_step),
|
2022-10-19 11:22:59 +02:00
|
|
|
|| must_stop_processing.get(),
|
2022-09-29 16:04:23 +02:00
|
|
|
)?;
|
|
|
|
|
2022-09-29 18:15:50 +02:00
|
|
|
let mut results = Vec::new();
|
|
|
|
for content_uuid in content_files.into_iter() {
|
|
|
|
let content_file = self.file_store.get_update(content_uuid)?;
|
|
|
|
let reader = DocumentsBatchReader::from_reader(content_file)
|
2022-10-11 17:42:43 +02:00
|
|
|
.map_err(milli::Error::from)?;
|
2022-09-29 18:15:50 +02:00
|
|
|
let (new_builder, user_result) = builder.add_documents(reader)?;
|
|
|
|
builder = new_builder;
|
|
|
|
|
|
|
|
let user_result = match user_result {
|
2022-10-04 18:50:18 +02:00
|
|
|
Ok(count) => Ok(DocumentAdditionResult {
|
|
|
|
indexed_documents: count,
|
2022-10-16 01:39:01 +02:00
|
|
|
number_of_documents: count, // TODO: this is wrong, we should use the value stored in the Details.
|
2022-10-04 18:50:18 +02:00
|
|
|
}),
|
2022-10-11 17:42:43 +02:00
|
|
|
Err(e) => Err(milli::Error::from(e)),
|
2022-09-29 18:15:50 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
results.push(user_result);
|
|
|
|
}
|
|
|
|
|
|
|
|
if results.iter().any(|res| res.is_ok()) {
|
|
|
|
let addition = builder.execute()?;
|
|
|
|
info!("document addition done: {:?}", addition);
|
2022-10-22 14:45:20 +02:00
|
|
|
} else if primary_key_has_been_set {
|
|
|
|
// Everything failed but we've set a primary key.
|
|
|
|
// We need to remove it.
|
|
|
|
let mut builder =
|
|
|
|
milli::update::Settings::new(index_wtxn, index, indexer_config);
|
|
|
|
builder.reset_primary_key();
|
|
|
|
builder.execute(
|
|
|
|
|indexing_step| debug!("update: {:?}", indexing_step),
|
|
|
|
|| must_stop_processing.clone().get(),
|
|
|
|
)?;
|
2022-09-29 18:15:50 +02:00
|
|
|
}
|
|
|
|
|
2022-10-20 18:00:07 +02:00
|
|
|
for (task, (ret, count)) in
|
|
|
|
tasks.iter_mut().zip(results.into_iter().zip(documents_counts))
|
2022-10-04 18:50:18 +02:00
|
|
|
{
|
2022-09-29 16:04:23 +02:00
|
|
|
match ret {
|
2022-10-20 18:00:07 +02:00
|
|
|
Ok(DocumentAdditionResult { indexed_documents, number_of_documents }) => {
|
2022-10-04 18:50:18 +02:00
|
|
|
task.status = Status::Succeeded;
|
2022-10-21 18:03:10 +02:00
|
|
|
task.details = Some(Details::DocumentAdditionOrUpdate {
|
2022-09-29 16:04:23 +02:00
|
|
|
received_documents: number_of_documents,
|
2022-10-13 15:02:59 +02:00
|
|
|
indexed_documents: Some(indexed_documents),
|
2022-10-04 18:50:18 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
Err(error) => {
|
|
|
|
task.status = Status::Failed;
|
2022-10-21 18:03:10 +02:00
|
|
|
task.details = Some(Details::DocumentAdditionOrUpdate {
|
2022-10-04 18:50:18 +02:00
|
|
|
received_documents: count,
|
2022-10-13 15:02:59 +02:00
|
|
|
indexed_documents: Some(count),
|
2022-10-04 18:50:18 +02:00
|
|
|
});
|
|
|
|
task.error = Some(error.into())
|
2022-09-29 16:04:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(tasks)
|
2022-09-09 12:16:19 +02:00
|
|
|
}
|
2022-10-20 18:00:07 +02:00
|
|
|
IndexOperation::DocumentDeletion { index_uid: _, documents, mut tasks } => {
|
2022-09-29 18:15:50 +02:00
|
|
|
let mut builder = milli::update::DeleteDocuments::new(index_wtxn, index)?;
|
2022-10-22 15:59:30 +02:00
|
|
|
documents.iter().flatten().for_each(|id| {
|
2022-09-29 18:15:50 +02:00
|
|
|
builder.delete_external_id(id);
|
|
|
|
});
|
|
|
|
|
2022-10-20 18:00:07 +02:00
|
|
|
let DocumentDeletionResult { deleted_documents, .. } = builder.execute()?;
|
2022-10-05 16:48:43 +02:00
|
|
|
|
2022-09-29 18:15:50 +02:00
|
|
|
for (task, documents) in tasks.iter_mut().zip(documents) {
|
2022-10-05 16:48:43 +02:00
|
|
|
task.status = Status::Succeeded;
|
|
|
|
task.details = Some(Details::DocumentDeletion {
|
2022-11-28 16:27:41 +01:00
|
|
|
provided_ids: documents.len(),
|
2022-10-22 15:59:30 +02:00
|
|
|
deleted_documents: Some(deleted_documents.min(documents.len() as u64)),
|
2022-10-05 16:48:43 +02:00
|
|
|
});
|
2022-09-29 11:49:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok(tasks)
|
|
|
|
}
|
2022-10-20 18:00:07 +02:00
|
|
|
IndexOperation::Settings { index_uid: _, settings, mut tasks } => {
|
2022-09-29 18:15:50 +02:00
|
|
|
let indexer_config = self.index_mapper.indexer_config();
|
2022-10-27 16:38:21 +02:00
|
|
|
let mut builder = milli::update::Settings::new(index_wtxn, index, indexer_config);
|
|
|
|
|
2022-09-29 13:57:28 +02:00
|
|
|
for (task, (_, settings)) in tasks.iter_mut().zip(settings) {
|
|
|
|
let checked_settings = settings.clone().check();
|
2022-10-22 16:35:42 +02:00
|
|
|
task.details = Some(Details::SettingsUpdate { settings: Box::new(settings) });
|
2022-09-29 18:15:50 +02:00
|
|
|
apply_settings_to_builder(&checked_settings, &mut builder);
|
|
|
|
|
2022-10-27 16:38:21 +02:00
|
|
|
// We can apply the status right now and if an update fail later
|
|
|
|
// the whole batch will be marked as failed.
|
2022-10-05 16:48:43 +02:00
|
|
|
task.status = Status::Succeeded;
|
2022-09-29 13:57:28 +02:00
|
|
|
}
|
|
|
|
|
2022-10-27 16:38:21 +02:00
|
|
|
let must_stop_processing = self.must_stop_processing.clone();
|
|
|
|
builder.execute(
|
|
|
|
|indexing_step| debug!("update: {:?}", indexing_step),
|
|
|
|
|| must_stop_processing.get(),
|
|
|
|
)?;
|
|
|
|
|
2022-09-29 13:57:28 +02:00
|
|
|
Ok(tasks)
|
|
|
|
}
|
2022-09-29 18:15:50 +02:00
|
|
|
IndexOperation::SettingsAndDocumentImport {
|
2022-09-16 16:31:16 +02:00
|
|
|
index_uid,
|
2022-09-29 18:15:50 +02:00
|
|
|
primary_key,
|
|
|
|
method,
|
2022-10-04 18:50:18 +02:00
|
|
|
documents_counts,
|
2022-09-29 18:15:50 +02:00
|
|
|
content_files,
|
|
|
|
document_import_tasks,
|
2022-09-16 16:31:16 +02:00
|
|
|
settings,
|
2022-09-29 18:15:50 +02:00
|
|
|
settings_tasks,
|
2022-09-29 14:19:13 +02:00
|
|
|
} => {
|
2022-09-29 18:15:50 +02:00
|
|
|
let settings_tasks = self.apply_index_operation(
|
|
|
|
index_wtxn,
|
|
|
|
index,
|
|
|
|
IndexOperation::Settings {
|
|
|
|
index_uid: index_uid.clone(),
|
|
|
|
settings,
|
|
|
|
tasks: settings_tasks,
|
|
|
|
},
|
|
|
|
)?;
|
2022-09-29 14:19:13 +02:00
|
|
|
|
2022-09-29 18:15:50 +02:00
|
|
|
let mut import_tasks = self.apply_index_operation(
|
|
|
|
index_wtxn,
|
|
|
|
index,
|
|
|
|
IndexOperation::DocumentImport {
|
|
|
|
index_uid,
|
|
|
|
primary_key,
|
|
|
|
method,
|
2022-10-04 18:50:18 +02:00
|
|
|
documents_counts,
|
2022-09-29 18:15:50 +02:00
|
|
|
content_files,
|
|
|
|
tasks: document_import_tasks,
|
|
|
|
},
|
|
|
|
)?;
|
2022-09-29 14:19:13 +02:00
|
|
|
|
2022-09-29 18:15:50 +02:00
|
|
|
let mut tasks = settings_tasks;
|
|
|
|
tasks.append(&mut import_tasks);
|
2022-09-29 14:19:13 +02:00
|
|
|
Ok(tasks)
|
|
|
|
}
|
2022-09-29 18:15:50 +02:00
|
|
|
IndexOperation::DocumentClearAndSetting {
|
2022-09-16 21:24:49 +02:00
|
|
|
index_uid,
|
2022-09-29 18:15:50 +02:00
|
|
|
cleared_tasks,
|
|
|
|
settings,
|
|
|
|
settings_tasks,
|
|
|
|
} => {
|
|
|
|
let mut import_tasks = self.apply_index_operation(
|
|
|
|
index_wtxn,
|
|
|
|
index,
|
|
|
|
IndexOperation::DocumentClear {
|
|
|
|
index_uid: index_uid.clone(),
|
|
|
|
tasks: cleared_tasks,
|
|
|
|
},
|
|
|
|
)?;
|
|
|
|
|
|
|
|
let settings_tasks = self.apply_index_operation(
|
|
|
|
index_wtxn,
|
|
|
|
index,
|
2022-10-20 18:00:07 +02:00
|
|
|
IndexOperation::Settings { index_uid, settings, tasks: settings_tasks },
|
2022-09-29 18:15:50 +02:00
|
|
|
)?;
|
|
|
|
|
|
|
|
let mut tasks = settings_tasks;
|
|
|
|
tasks.append(&mut import_tasks);
|
|
|
|
Ok(tasks)
|
|
|
|
}
|
2022-09-07 00:10:14 +02:00
|
|
|
}
|
|
|
|
}
|
2022-10-06 16:53:21 +02:00
|
|
|
|
|
|
|
/// Delete each given task from all the databases (if it is deleteable).
|
|
|
|
///
|
2022-10-17 12:58:20 +02:00
|
|
|
/// Return the number of tasks that were actually deleted.
|
2022-10-19 11:09:40 +02:00
|
|
|
fn delete_matched_tasks(&self, wtxn: &mut RwTxn, matched_tasks: &RoaringBitmap) -> Result<u64> {
|
2022-10-06 16:53:21 +02:00
|
|
|
// 1. Remove from this list the tasks that we are not allowed to delete
|
|
|
|
let enqueued_tasks = self.get_status(wtxn, Status::Enqueued)?;
|
2022-10-17 13:54:35 +02:00
|
|
|
let processing_tasks = &self.processing_tasks.read().unwrap().processing.clone();
|
2022-10-06 16:53:21 +02:00
|
|
|
|
2022-10-22 16:35:42 +02:00
|
|
|
let all_task_ids = self.all_task_ids(wtxn)?;
|
2022-10-17 12:58:20 +02:00
|
|
|
let mut to_delete_tasks = all_task_ids & matched_tasks;
|
|
|
|
to_delete_tasks -= processing_tasks;
|
2022-10-13 11:09:00 +02:00
|
|
|
to_delete_tasks -= enqueued_tasks;
|
2022-10-06 16:53:21 +02:00
|
|
|
|
2022-10-13 11:09:00 +02:00
|
|
|
// 2. We now have a list of tasks to delete, delete them
|
2022-10-06 16:53:21 +02:00
|
|
|
|
2022-10-13 11:09:00 +02:00
|
|
|
let mut affected_indexes = HashSet::new();
|
|
|
|
let mut affected_statuses = HashSet::new();
|
|
|
|
let mut affected_kinds = HashSet::new();
|
2022-11-28 16:27:41 +01:00
|
|
|
let mut affected_canceled_by = RoaringBitmap::new();
|
2022-10-06 16:53:21 +02:00
|
|
|
|
2022-10-13 11:09:00 +02:00
|
|
|
for task_id in to_delete_tasks.iter() {
|
2022-10-20 18:00:07 +02:00
|
|
|
let task = self.get_task(wtxn, task_id)?.ok_or(Error::CorruptedTaskQueue)?;
|
2022-10-25 10:26:51 +02:00
|
|
|
|
|
|
|
affected_indexes.extend(task.indexes().into_iter().map(|x| x.to_owned()));
|
2022-10-18 15:04:14 +02:00
|
|
|
affected_statuses.insert(task.status);
|
|
|
|
affected_kinds.insert(task.kind.as_kind());
|
|
|
|
// Note: don't delete the persisted task data since
|
|
|
|
// we can only delete succeeded, failed, and canceled tasks.
|
|
|
|
// In each of those cases, the persisted data is supposed to
|
|
|
|
// have been deleted already.
|
2022-10-19 12:59:12 +02:00
|
|
|
utils::remove_task_datetime(wtxn, self.enqueued_at, task.enqueued_at, task.uid)?;
|
|
|
|
if let Some(started_at) = task.started_at {
|
|
|
|
utils::remove_task_datetime(wtxn, self.started_at, started_at, task.uid)?;
|
|
|
|
}
|
|
|
|
if let Some(finished_at) = task.finished_at {
|
|
|
|
utils::remove_task_datetime(wtxn, self.finished_at, finished_at, task.uid)?;
|
|
|
|
}
|
2022-11-28 16:27:41 +01:00
|
|
|
if let Some(canceled_by) = task.canceled_by {
|
|
|
|
affected_canceled_by.insert(canceled_by);
|
|
|
|
}
|
2022-10-06 16:53:21 +02:00
|
|
|
}
|
2022-10-18 13:47:22 +02:00
|
|
|
|
2022-10-13 11:09:00 +02:00
|
|
|
for index in affected_indexes {
|
2022-10-18 13:47:22 +02:00
|
|
|
self.update_index(wtxn, &index, |bitmap| *bitmap -= &to_delete_tasks)?;
|
2022-10-13 11:09:00 +02:00
|
|
|
}
|
2022-10-18 13:47:22 +02:00
|
|
|
|
2022-10-13 11:09:00 +02:00
|
|
|
for status in affected_statuses {
|
2022-10-18 13:47:22 +02:00
|
|
|
self.update_status(wtxn, status, |bitmap| *bitmap -= &to_delete_tasks)?;
|
2022-10-13 11:09:00 +02:00
|
|
|
}
|
2022-10-18 13:47:22 +02:00
|
|
|
|
2022-10-13 11:09:00 +02:00
|
|
|
for kind in affected_kinds {
|
2022-10-18 13:47:22 +02:00
|
|
|
self.update_kind(wtxn, kind, |bitmap| *bitmap -= &to_delete_tasks)?;
|
2022-10-13 11:09:00 +02:00
|
|
|
}
|
2022-10-18 13:47:22 +02:00
|
|
|
|
2022-10-13 11:09:00 +02:00
|
|
|
for task in to_delete_tasks.iter() {
|
|
|
|
self.all_tasks.delete(wtxn, &BEU32::new(task))?;
|
|
|
|
}
|
2022-11-28 16:27:41 +01:00
|
|
|
for canceled_by in affected_canceled_by {
|
|
|
|
let canceled_by = BEU32::new(canceled_by);
|
|
|
|
if let Some(mut tasks) = self.canceled_by.get(wtxn, &canceled_by)? {
|
|
|
|
tasks -= &to_delete_tasks;
|
|
|
|
if tasks.is_empty() {
|
|
|
|
self.canceled_by.delete(wtxn, &canceled_by)?;
|
|
|
|
} else {
|
|
|
|
self.canceled_by.put(wtxn, &canceled_by, &tasks)?;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-10-18 13:47:22 +02:00
|
|
|
|
2022-10-19 11:09:40 +02:00
|
|
|
Ok(to_delete_tasks.len())
|
2022-10-06 16:53:21 +02:00
|
|
|
}
|
2022-10-18 13:47:22 +02:00
|
|
|
|
|
|
|
/// Cancel each given task from all the databases (if it is cancelable).
|
|
|
|
///
|
2022-10-19 11:48:35 +02:00
|
|
|
/// Returns the content files that the transaction owner must delete if the commit is successful.
|
2022-10-18 13:47:22 +02:00
|
|
|
fn cancel_matched_tasks(
|
|
|
|
&self,
|
|
|
|
wtxn: &mut RwTxn,
|
2022-10-18 13:57:58 +02:00
|
|
|
cancel_task_id: TaskId,
|
2022-10-18 13:47:22 +02:00
|
|
|
matched_tasks: &RoaringBitmap,
|
2022-11-28 16:27:41 +01:00
|
|
|
previous_started_at: OffsetDateTime,
|
|
|
|
previous_processing_tasks: &RoaringBitmap,
|
2022-10-19 11:48:35 +02:00
|
|
|
) -> Result<Vec<Uuid>> {
|
2022-10-18 13:57:58 +02:00
|
|
|
let now = OffsetDateTime::now_utc();
|
|
|
|
|
2022-10-18 13:47:22 +02:00
|
|
|
// 1. Remove from this list the tasks that we are not allowed to cancel
|
|
|
|
// Notice that only the _enqueued_ ones are cancelable and we should
|
|
|
|
// have already aborted the indexation of the _processing_ ones
|
2022-10-18 13:57:58 +02:00
|
|
|
let cancelable_tasks = self.get_status(wtxn, Status::Enqueued)?;
|
2022-10-18 13:47:22 +02:00
|
|
|
let tasks_to_cancel = cancelable_tasks & matched_tasks;
|
|
|
|
|
|
|
|
// 2. We now have a list of tasks to cancel, cancel them
|
2022-10-19 11:48:35 +02:00
|
|
|
let mut content_files_to_delete = Vec::new();
|
2022-10-18 13:57:58 +02:00
|
|
|
for mut task in self.get_existing_tasks(wtxn, tasks_to_cancel.iter())? {
|
2022-10-19 11:48:35 +02:00
|
|
|
if let Some(uuid) = task.content_uuid() {
|
2022-10-25 14:09:01 +02:00
|
|
|
content_files_to_delete.push(uuid);
|
2022-10-19 11:48:35 +02:00
|
|
|
}
|
2022-11-28 16:27:41 +01:00
|
|
|
if previous_processing_tasks.contains(task.uid) {
|
|
|
|
task.started_at = Some(previous_started_at);
|
|
|
|
}
|
2022-10-18 13:57:58 +02:00
|
|
|
task.status = Status::Canceled;
|
|
|
|
task.canceled_by = Some(cancel_task_id);
|
|
|
|
task.finished_at = Some(now);
|
2022-11-28 16:27:41 +01:00
|
|
|
task.details = task.details.map(|d| d.to_failed());
|
2022-10-18 13:57:58 +02:00
|
|
|
self.update_task(wtxn, &task)?;
|
|
|
|
}
|
2022-11-28 16:27:41 +01:00
|
|
|
self.canceled_by.put(wtxn, &BEU32::new(cancel_task_id), &tasks_to_cancel)?;
|
2022-10-18 13:47:22 +02:00
|
|
|
|
2022-10-19 11:48:35 +02:00
|
|
|
Ok(content_files_to_delete)
|
2022-10-18 13:47:22 +02:00
|
|
|
}
|
2022-09-07 00:10:14 +02:00
|
|
|
}
|