mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-12-02 18:15:38 +08:00
170 lines
4.9 KiB
Rust
170 lines
4.9 KiB
Rust
|
use std::path::PathBuf;
|
||
|
|
||
|
use chrono::{DateTime, Utc};
|
||
|
use meilisearch_error::ResponseError;
|
||
|
use milli::update::{DocumentAdditionResult, IndexDocumentsMethod};
|
||
|
use serde::{Deserialize, Serialize};
|
||
|
use tokio::sync::oneshot;
|
||
|
use uuid::Uuid;
|
||
|
|
||
|
use super::batch::BatchId;
|
||
|
use crate::{
|
||
|
index::{Settings, Unchecked},
|
||
|
index_resolver::{error::IndexResolverError, IndexUid},
|
||
|
snapshot::SnapshotJob,
|
||
|
};
|
||
|
|
||
|
pub type TaskId = u64;
|
||
|
|
||
|
#[derive(Clone, Debug, Serialize, Deserialize, PartialEq, Eq)]
|
||
|
#[cfg_attr(test, derive(proptest_derive::Arbitrary))]
|
||
|
pub enum TaskResult {
|
||
|
DocumentAddition { indexed_documents: u64 },
|
||
|
DocumentDeletion { deleted_documents: u64 },
|
||
|
ClearAll { deleted_documents: u64 },
|
||
|
Other,
|
||
|
}
|
||
|
|
||
|
impl From<DocumentAdditionResult> for TaskResult {
|
||
|
fn from(other: DocumentAdditionResult) -> Self {
|
||
|
Self::DocumentAddition {
|
||
|
indexed_documents: other.indexed_documents,
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#[derive(Clone, Debug, Serialize, Deserialize, PartialEq, Eq)]
|
||
|
#[cfg_attr(test, derive(proptest_derive::Arbitrary))]
|
||
|
pub enum TaskEvent {
|
||
|
Created(#[cfg_attr(test, proptest(strategy = "test::datetime_strategy()"))] DateTime<Utc>),
|
||
|
Batched {
|
||
|
#[cfg_attr(test, proptest(strategy = "test::datetime_strategy()"))]
|
||
|
timestamp: DateTime<Utc>,
|
||
|
batch_id: BatchId,
|
||
|
},
|
||
|
Processing(#[cfg_attr(test, proptest(strategy = "test::datetime_strategy()"))] DateTime<Utc>),
|
||
|
Succeded {
|
||
|
result: TaskResult,
|
||
|
#[cfg_attr(test, proptest(strategy = "test::datetime_strategy()"))]
|
||
|
timestamp: DateTime<Utc>,
|
||
|
},
|
||
|
Failed {
|
||
|
error: ResponseError,
|
||
|
#[cfg_attr(test, proptest(strategy = "test::datetime_strategy()"))]
|
||
|
timestamp: DateTime<Utc>,
|
||
|
},
|
||
|
}
|
||
|
|
||
|
/// A task represents an operation that Meilisearch must do.
|
||
|
/// It's stored on disk and executed from the lowest to highest Task id.
|
||
|
/// Everytime a new task is created it has a higher Task id than the previous one.
|
||
|
/// See also `Job`.
|
||
|
#[derive(Clone, Debug, Serialize, Deserialize, PartialEq)]
|
||
|
#[cfg_attr(test, derive(proptest_derive::Arbitrary))]
|
||
|
pub struct Task {
|
||
|
pub id: TaskId,
|
||
|
pub index_uid: IndexUid,
|
||
|
pub content: TaskContent,
|
||
|
pub events: Vec<TaskEvent>,
|
||
|
}
|
||
|
|
||
|
impl Task {
|
||
|
/// Return true when a task is finished.
|
||
|
/// A task is finished when its last state is either `Succeeded` or `Failed`.
|
||
|
pub fn is_finished(&self) -> bool {
|
||
|
self.events.last().map_or(false, |event| {
|
||
|
matches!(event, TaskEvent::Succeded { .. } | TaskEvent::Failed { .. })
|
||
|
})
|
||
|
}
|
||
|
|
||
|
/// Return the content_uuid of the `Task` if there is one.
|
||
|
pub fn get_content_uuid(&self) -> Option<Uuid> {
|
||
|
match self {
|
||
|
Task {
|
||
|
content: TaskContent::DocumentAddition { content_uuid, .. },
|
||
|
..
|
||
|
} => Some(*content_uuid),
|
||
|
_ => None,
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/// A job is like a volatile priority `Task`.
|
||
|
/// It should be processed as fast as possible and is not stored on disk.
|
||
|
/// This means, when Meilisearch is closed all your unprocessed jobs will disappear.
|
||
|
#[derive(Debug, derivative::Derivative)]
|
||
|
#[derivative(PartialEq)]
|
||
|
pub enum Job {
|
||
|
Dump {
|
||
|
#[derivative(PartialEq = "ignore")]
|
||
|
ret: oneshot::Sender<Result<(), IndexResolverError>>,
|
||
|
path: PathBuf,
|
||
|
},
|
||
|
Snapshot(#[derivative(PartialEq = "ignore")] SnapshotJob),
|
||
|
Empty,
|
||
|
}
|
||
|
|
||
|
impl Default for Job {
|
||
|
fn default() -> Self {
|
||
|
Self::Empty
|
||
|
}
|
||
|
}
|
||
|
|
||
|
impl Job {
|
||
|
pub fn take(&mut self) -> Self {
|
||
|
std::mem::take(self)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#[derive(Clone, Debug, Serialize, Deserialize, PartialEq)]
|
||
|
#[cfg_attr(test, derive(proptest_derive::Arbitrary))]
|
||
|
pub enum DocumentDeletion {
|
||
|
Clear,
|
||
|
Ids(Vec<String>),
|
||
|
}
|
||
|
|
||
|
#[derive(Clone, Debug, Serialize, Deserialize, PartialEq)]
|
||
|
#[cfg_attr(test, derive(proptest_derive::Arbitrary))]
|
||
|
#[allow(clippy::large_enum_variant)]
|
||
|
pub enum TaskContent {
|
||
|
DocumentAddition {
|
||
|
#[cfg_attr(test, proptest(value = "Uuid::new_v4()"))]
|
||
|
content_uuid: Uuid,
|
||
|
#[cfg_attr(test, proptest(strategy = "test::index_document_method_strategy()"))]
|
||
|
merge_strategy: IndexDocumentsMethod,
|
||
|
primary_key: Option<String>,
|
||
|
documents_count: usize,
|
||
|
},
|
||
|
DocumentDeletion(DocumentDeletion),
|
||
|
SettingsUpdate {
|
||
|
settings: Settings<Unchecked>,
|
||
|
/// Indicates whether the task was a deletion
|
||
|
is_deletion: bool,
|
||
|
},
|
||
|
IndexDeletion,
|
||
|
IndexCreation {
|
||
|
primary_key: Option<String>,
|
||
|
},
|
||
|
IndexUpdate {
|
||
|
primary_key: Option<String>,
|
||
|
},
|
||
|
}
|
||
|
|
||
|
#[cfg(test)]
|
||
|
mod test {
|
||
|
use proptest::prelude::*;
|
||
|
|
||
|
use super::*;
|
||
|
|
||
|
pub(super) fn index_document_method_strategy() -> impl Strategy<Value = IndexDocumentsMethod> {
|
||
|
prop_oneof![
|
||
|
Just(IndexDocumentsMethod::ReplaceDocuments),
|
||
|
Just(IndexDocumentsMethod::UpdateDocuments),
|
||
|
]
|
||
|
}
|
||
|
|
||
|
pub(super) fn datetime_strategy() -> impl Strategy<Value = DateTime<Utc>> {
|
||
|
Just(Utc::now())
|
||
|
}
|
||
|
}
|