MeiliSearch/meilisearch-http/src/index_controller/dump_actor/mod.rs

204 lines
5.5 KiB
Rust
Raw Normal View History

2021-05-27 14:30:20 +02:00
use std::fs::File;
use std::path::{Path, PathBuf};
2021-05-10 20:25:09 +02:00
2021-06-15 17:39:07 +02:00
use anyhow::Context;
2021-05-30 15:55:17 +02:00
use chrono::{DateTime, Utc};
2021-06-23 10:41:55 +02:00
use log::{info, trace, warn};
#[cfg(test)]
use mockall::automock;
2021-05-10 20:23:12 +02:00
use serde::{Deserialize, Serialize};
2021-05-31 16:40:59 +02:00
use tokio::fs::create_dir_all;
2021-04-28 16:43:49 +02:00
2021-05-26 20:42:09 +02:00
use loaders::v1::MetadataV1;
use loaders::v2::MetadataV2;
2021-05-10 20:25:09 +02:00
pub use actor::DumpActor;
pub use handle_impl::*;
2021-05-10 20:25:09 +02:00
pub use message::DumpMsg;
2021-05-27 14:30:20 +02:00
use super::{update_actor::UpdateActorHandle, uuid_resolver::UuidResolverHandle};
use crate::index_controller::dump_actor::error::DumpActorError;
2021-05-27 14:30:20 +02:00
use crate::{helpers::compression, option::IndexerOpts};
use error::Result;
2021-05-26 22:52:06 +02:00
mod actor;
2021-06-15 17:39:07 +02:00
pub mod error;
2021-05-26 22:52:06 +02:00
mod handle_impl;
mod loaders;
mod message;
2021-05-31 16:03:39 +02:00
const META_FILE_NAME: &str = "metadata.json";
2021-05-27 14:30:20 +02:00
2021-05-10 20:25:09 +02:00
#[async_trait::async_trait]
#[cfg_attr(test, automock)]
pub trait DumpActorHandle {
/// Start the creation of a dump
/// Implementation: [handle_impl::DumpActorHandleImpl::create_dump]
async fn create_dump(&self) -> Result<DumpInfo>;
2021-05-10 20:25:09 +02:00
/// Return the status of an already created dump
/// Implementation: [handle_impl::DumpActorHandleImpl::dump_info]
async fn dump_info(&self, uid: String) -> Result<DumpInfo>;
2021-05-10 20:25:09 +02:00
}
2021-04-28 16:43:49 +02:00
#[derive(Debug, Serialize, Deserialize)]
2021-05-31 10:42:31 +02:00
#[serde(tag = "dumpVersion")]
2021-05-26 20:42:09 +02:00
pub enum Metadata {
2021-05-31 10:42:31 +02:00
V1(MetadataV1),
V2(MetadataV2),
2021-04-28 16:43:49 +02:00
}
2021-04-29 14:45:08 +02:00
impl Metadata {
2021-05-31 16:40:59 +02:00
pub fn new_v2(index_db_size: usize, update_db_size: usize) -> Self {
2021-05-27 10:51:19 +02:00
let meta = MetadataV2::new(index_db_size, update_db_size);
2021-05-31 10:42:31 +02:00
Self::V2(meta)
2021-05-27 10:51:19 +02:00
}
2021-04-28 16:43:49 +02:00
}
2021-05-10 20:25:09 +02:00
#[derive(Debug, Serialize, Deserialize, PartialEq, Clone)]
#[serde(rename_all = "snake_case")]
pub enum DumpStatus {
Done,
InProgress,
Failed,
2021-04-28 16:43:49 +02:00
}
2021-05-10 20:25:09 +02:00
#[derive(Debug, Serialize, Clone)]
#[serde(rename_all = "camelCase")]
pub struct DumpInfo {
pub uid: String,
pub status: DumpStatus,
2021-05-25 10:48:57 +02:00
#[serde(skip_serializing_if = "Option::is_none")]
pub error: Option<String>,
2021-05-30 15:55:17 +02:00
started_at: DateTime<Utc>,
#[serde(skip_serializing_if = "Option::is_none")]
finished_at: Option<DateTime<Utc>>,
2021-05-10 20:25:09 +02:00
}
2021-04-28 16:43:49 +02:00
2021-05-10 20:25:09 +02:00
impl DumpInfo {
pub fn new(uid: String, status: DumpStatus) -> Self {
Self {
uid,
status,
error: None,
2021-05-30 15:55:17 +02:00
started_at: Utc::now(),
finished_at: None,
2021-05-10 20:25:09 +02:00
}
2021-05-05 14:11:56 +02:00
}
2021-04-28 16:43:49 +02:00
2021-05-10 20:25:09 +02:00
pub fn with_error(&mut self, error: String) {
self.status = DumpStatus::Failed;
2021-05-30 15:55:17 +02:00
self.finished_at = Some(Utc::now());
self.error = Some(error);
2021-05-05 14:11:56 +02:00
}
2021-04-28 16:43:49 +02:00
2021-05-10 20:25:09 +02:00
pub fn done(&mut self) {
2021-05-30 15:55:17 +02:00
self.finished_at = Some(Utc::now());
2021-05-10 20:25:09 +02:00
self.status = DumpStatus::Done;
}
2021-04-28 16:43:49 +02:00
2021-05-10 20:25:09 +02:00
pub fn dump_already_in_progress(&self) -> bool {
self.status == DumpStatus::InProgress
}
2021-04-28 16:43:49 +02:00
}
2021-05-27 14:30:20 +02:00
pub fn load_dump(
2021-05-26 20:42:09 +02:00
dst_path: impl AsRef<Path>,
src_path: impl AsRef<Path>,
2021-05-31 16:40:59 +02:00
index_db_size: usize,
update_db_size: usize,
2021-05-26 22:52:06 +02:00
indexer_opts: &IndexerOpts,
2021-06-15 17:39:07 +02:00
) -> anyhow::Result<()> {
2021-05-27 14:30:20 +02:00
let tmp_src = tempfile::tempdir_in(".")?;
let tmp_src_path = tmp_src.path();
compression::from_tar_gz(&src_path, tmp_src_path)?;
let meta_path = tmp_src_path.join(META_FILE_NAME);
2021-05-26 20:42:09 +02:00
let mut meta_file = File::open(&meta_path)?;
let meta: Metadata = serde_json::from_reader(&mut meta_file)?;
2021-04-28 16:43:49 +02:00
2021-05-31 10:42:31 +02:00
let dst_dir = dst_path
.as_ref()
.parent()
2021-06-15 17:39:07 +02:00
.with_context(|| format!("Invalid db path: {}", dst_path.as_ref().display()))?;
2021-05-31 10:42:31 +02:00
let tmp_dst = tempfile::tempdir_in(dst_dir)?;
2021-05-26 20:42:09 +02:00
match meta {
2021-05-31 16:03:39 +02:00
Metadata::V1(meta) => {
2021-05-31 16:40:59 +02:00
meta.load_dump(&tmp_src_path, tmp_dst.path(), index_db_size, indexer_opts)?
2021-05-31 16:03:39 +02:00
}
2021-05-31 10:42:31 +02:00
Metadata::V2(meta) => meta.load_dump(
2021-05-27 14:30:20 +02:00
&tmp_src_path,
2021-05-31 10:42:31 +02:00
tmp_dst.path(),
2021-05-27 14:30:20 +02:00
index_db_size,
update_db_size,
indexer_opts,
)?,
}
2021-05-31 10:42:31 +02:00
// Persist and atomically rename the db
let persisted_dump = tmp_dst.into_path();
if dst_path.as_ref().exists() {
warn!("Overwriting database at {}", dst_path.as_ref().display());
std::fs::remove_dir_all(&dst_path)?;
}
std::fs::rename(&persisted_dump, &dst_path)?;
2021-05-06 18:44:16 +02:00
2021-04-28 16:43:49 +02:00
Ok(())
}
2021-05-27 14:30:20 +02:00
struct DumpTask<U, P> {
path: PathBuf,
uuid_resolver: U,
update_handle: P,
uid: String,
2021-05-31 16:40:59 +02:00
update_db_size: usize,
index_db_size: usize,
2021-05-27 14:30:20 +02:00
}
impl<U, P> DumpTask<U, P>
where
U: UuidResolverHandle + Send + Sync + Clone + 'static,
P: UpdateActorHandle + Send + Sync + Clone + 'static,
{
async fn run(self) -> Result<()> {
2021-06-23 10:41:55 +02:00
trace!("Performing dump.");
2021-05-27 14:30:20 +02:00
create_dir_all(&self.path).await?;
let path_clone = self.path.clone();
let temp_dump_dir =
tokio::task::spawn_blocking(|| tempfile::TempDir::new_in(path_clone)).await??;
let temp_dump_path = temp_dump_dir.path().to_owned();
let meta = Metadata::new_v2(self.index_db_size, self.update_db_size);
let meta_path = temp_dump_path.join(META_FILE_NAME);
let mut meta_file = File::create(&meta_path)?;
serde_json::to_writer(&mut meta_file, &meta)?;
let uuids = self.uuid_resolver.dump(temp_dump_path.clone()).await?;
self.update_handle
.dump(uuids, temp_dump_path.clone())
.await?;
let dump_path = tokio::task::spawn_blocking(move || -> Result<PathBuf> {
2021-05-27 14:30:20 +02:00
let temp_dump_file = tempfile::NamedTempFile::new_in(&self.path)?;
compression::to_tar_gz(temp_dump_path, temp_dump_file.path())
2021-06-15 17:39:07 +02:00
.map_err(|e| DumpActorError::Internal(e.into()))?;
2021-05-27 14:30:20 +02:00
let dump_path = self.path.join(self.uid).with_extension("dump");
2021-05-27 14:30:20 +02:00
temp_dump_file.persist(&dump_path)?;
Ok(dump_path)
})
.await??;
info!("Created dump in {:?}.", dump_path);
Ok(())
}
}