mirror of
https://github.com/rustfs/rustfs.git
synced 2026-08-22 12:26:37 +00:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0cd2ae20e2 | |||
| 55a7fa9f03 | |||
| 9f51f37a0d |
Generated
+1
@@ -9587,6 +9587,7 @@ dependencies = [
|
|||||||
"serde",
|
"serde",
|
||||||
"serde_json",
|
"serde_json",
|
||||||
"serial_test",
|
"serial_test",
|
||||||
|
"sha2 0.11.0",
|
||||||
"temp-env",
|
"temp-env",
|
||||||
"tempfile",
|
"tempfile",
|
||||||
"thiserror 2.0.20",
|
"thiserror 2.0.20",
|
||||||
|
|||||||
@@ -91,6 +91,7 @@ metrics = { workspace = true }
|
|||||||
base64 = { workspace = true }
|
base64 = { workspace = true }
|
||||||
bytes = { workspace = true }
|
bytes = { workspace = true }
|
||||||
crc-fast = { workspace = true }
|
crc-fast = { workspace = true }
|
||||||
|
sha2 = { workspace = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
serde_json = { workspace = true, features = ["raw_value"] }
|
serde_json = { workspace = true, features = ["raw_value"] }
|
||||||
|
|||||||
@@ -373,6 +373,11 @@ impl ErasureSetHealer {
|
|||||||
set_disk_id: &str,
|
set_disk_id: &str,
|
||||||
buckets: &[String],
|
buckets: &[String],
|
||||||
) -> Result<(ResumeManager, CheckpointManager)> {
|
) -> Result<(ResumeManager, CheckpointManager)> {
|
||||||
|
if self.replacement_task_id.is_none() && CheckpointManager::is_blocked(&self.disk, task_id).await {
|
||||||
|
return Err(Error::TaskExecutionFailed {
|
||||||
|
message: format!("Resume task {task_id} has a blocked checkpoint"),
|
||||||
|
});
|
||||||
|
}
|
||||||
// check if resume state exists
|
// check if resume state exists
|
||||||
let has_resume_state = if self.replacement_task_id.is_some() {
|
let has_resume_state = if self.replacement_task_id.is_some() {
|
||||||
ResumeManager::has_replacement_intent(&self.disk, task_id).await
|
ResumeManager::has_replacement_intent(&self.disk, task_id).await
|
||||||
|
|||||||
@@ -51,6 +51,7 @@ const RESUME_STATE_FILE: &str = "ahm_resume_state.json";
|
|||||||
const REPLACEMENT_INTENT_FILE: &str = "ahm_replacement_intent.json";
|
const REPLACEMENT_INTENT_FILE: &str = "ahm_replacement_intent.json";
|
||||||
const RESUME_PROGRESS_FILE: &str = "ahm_progress.json";
|
const RESUME_PROGRESS_FILE: &str = "ahm_progress.json";
|
||||||
pub(super) const RESUME_CHECKPOINT_FILE: &str = "ahm_checkpoint.json";
|
pub(super) const RESUME_CHECKPOINT_FILE: &str = "ahm_checkpoint.json";
|
||||||
|
pub(super) const RESUME_CHECKPOINT_BLOCKED_FILE: &str = "ahm_checkpoint.blocked";
|
||||||
const REPLACEMENT_COMPLETION_PROOF_FILE: &str = "ahm_replacement_completion_proof.json";
|
const REPLACEMENT_COMPLETION_PROOF_FILE: &str = "ahm_replacement_completion_proof.json";
|
||||||
const REPLACEMENT_RECOVERY_DIR: &str = "ahm-replacement";
|
const REPLACEMENT_RECOVERY_DIR: &str = "ahm-replacement";
|
||||||
const REPLACEMENT_INTENT_SEAL_FILE: &str = "ahm_replacement_intent_seal";
|
const REPLACEMENT_INTENT_SEAL_FILE: &str = "ahm_replacement_intent_seal";
|
||||||
|
|||||||
@@ -13,21 +13,25 @@
|
|||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
use crate::{Error, Result};
|
use crate::{Error, Result};
|
||||||
|
use base64::Engine as _;
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
|
use sha2::{Digest, Sha256};
|
||||||
use std::collections::HashSet;
|
use std::collections::HashSet;
|
||||||
use std::path::Path;
|
use std::path::Path;
|
||||||
use std::sync::{Arc, Mutex};
|
use std::sync::{Arc, Mutex};
|
||||||
use std::time::{SystemTime, UNIX_EPOCH};
|
use std::time::{SystemTime, UNIX_EPOCH};
|
||||||
use tokio::sync::RwLock;
|
use tokio::sync::{Mutex as AsyncMutex, RwLock};
|
||||||
use tracing::{debug, warn};
|
use tracing::{debug, warn};
|
||||||
|
|
||||||
use super::super::{BUCKET_META_PREFIX, DiskStore, HealDiskExt as _, RUSTFS_META_BUCKET};
|
use super::super::storage_api::owner::{EcstoreConditionalFileUpdate, EcstoreDiskAPI, EcstoreDiskBytes};
|
||||||
|
use super::super::{BUCKET_META_PREFIX, DiskStore, HealDiskExt, RUSTFS_META_BUCKET};
|
||||||
use super::{
|
use super::{
|
||||||
LOG_COMPONENT_HEAL, LOG_SUBSYSTEM_RESUME, PersistThrottle, RESUME_CHECKPOINT_FILE, delete_resume_file, path_to_str,
|
LOG_COMPONENT_HEAL, LOG_SUBSYSTEM_RESUME, PersistThrottle, RESUME_CHECKPOINT_BLOCKED_FILE, RESUME_CHECKPOINT_FILE,
|
||||||
validate_resume_task_id,
|
delete_resume_file, path_to_str, validate_resume_task_id,
|
||||||
};
|
};
|
||||||
|
|
||||||
const EVENT_HEAL_CHECKPOINT_STATE: &str = "heal_checkpoint_state";
|
const EVENT_HEAL_CHECKPOINT_STATE: &str = "heal_checkpoint_state";
|
||||||
|
const RESUME_CHECKPOINT_DIGEST_FILE: &str = "ahm_checkpoint.sha256";
|
||||||
|
|
||||||
/// Current on-disk schema version for `ResumeCheckpoint`. Same rationale as
|
/// Current on-disk schema version for `ResumeCheckpoint`. Same rationale as
|
||||||
/// `CURRENT_RESUME_SCHEMA`: pre-per-version dedup identities are not comparable
|
/// `CURRENT_RESUME_SCHEMA`: pre-per-version dedup identities are not comparable
|
||||||
@@ -116,17 +120,111 @@ pub struct CheckpointManager {
|
|||||||
disk: DiskStore,
|
disk: DiskStore,
|
||||||
checkpoint: Arc<RwLock<ResumeCheckpoint>>,
|
checkpoint: Arc<RwLock<ResumeCheckpoint>>,
|
||||||
throttle: Mutex<PersistThrottle>,
|
throttle: Mutex<PersistThrottle>,
|
||||||
|
save_lock: AsyncMutex<()>,
|
||||||
|
last_saved: Mutex<Option<EcstoreDiskBytes>>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl CheckpointManager {
|
impl CheckpointManager {
|
||||||
|
fn blocked_path(task_id: &str) -> std::path::PathBuf {
|
||||||
|
Path::new(BUCKET_META_PREFIX).join(format!("{task_id}_{RESUME_CHECKPOINT_BLOCKED_FILE}"))
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Return whether a checkpoint was permanently isolated after a malformed
|
||||||
|
/// or unsupported snapshot was observed.
|
||||||
|
pub(crate) async fn is_blocked(disk: &DiskStore, task_id: &str) -> bool {
|
||||||
|
if validate_resume_task_id(task_id).is_err() {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
let blocked_path = Self::blocked_path(task_id);
|
||||||
|
let Ok(path) = path_to_str(&blocked_path) else {
|
||||||
|
return false;
|
||||||
|
};
|
||||||
|
match HealDiskExt::read_all(disk.as_ref(), RUSTFS_META_BUCKET, path).await {
|
||||||
|
Ok(_) => true,
|
||||||
|
Err(crate::heal::DiskError::FileNotFound) => false,
|
||||||
|
Err(_) => true,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Validate the checkpoint while enumerating resumable state. This reads
|
||||||
|
/// the checkpoint once and also isolates malformed or unsupported data.
|
||||||
|
pub(crate) async fn is_resumable(disk: &DiskStore, task_id: &str) -> Result<bool> {
|
||||||
|
validate_resume_task_id(task_id)?;
|
||||||
|
if Self::is_blocked(disk, task_id).await {
|
||||||
|
return Err(Error::InvalidCheckpoint(format!("Resume task {task_id} has a blocked checkpoint")));
|
||||||
|
}
|
||||||
|
let file_path = Path::new(BUCKET_META_PREFIX).join(format!("{task_id}_{RESUME_CHECKPOINT_FILE}"));
|
||||||
|
let Ok(path) = path_to_str(&file_path) else {
|
||||||
|
return Err(Error::InvalidCheckpoint("Resume checkpoint path is not valid UTF-8".to_string()));
|
||||||
|
};
|
||||||
|
match HealDiskExt::read_all(disk.as_ref(), RUSTFS_META_BUCKET, path).await {
|
||||||
|
Ok(bytes) if bytes.is_empty() => Ok(true),
|
||||||
|
Ok(bytes) => Self::load_from_data(disk.clone(), task_id, bytes.to_vec())
|
||||||
|
.await
|
||||||
|
.map(|_| true),
|
||||||
|
Err(crate::heal::DiskError::FileNotFound) => Ok(true),
|
||||||
|
Err(error) => Err(error.into()),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async fn block_invalid_snapshot(disk: &DiskStore, task_id: &str) {
|
||||||
|
// This marker is intentionally version-agnostic: an unsupported reader
|
||||||
|
// must stop selector retries until an operator cleans up the snapshot.
|
||||||
|
let blocked_path = Self::blocked_path(task_id);
|
||||||
|
let Ok(path) = path_to_str(&blocked_path) else {
|
||||||
|
return;
|
||||||
|
};
|
||||||
|
let result = EcstoreDiskAPI::compare_and_update_file(
|
||||||
|
disk.as_ref(),
|
||||||
|
RUSTFS_META_BUCKET,
|
||||||
|
path,
|
||||||
|
None,
|
||||||
|
Some(EcstoreDiskBytes::from_static(b"blocked")),
|
||||||
|
)
|
||||||
|
.await;
|
||||||
|
match result {
|
||||||
|
Ok(EcstoreConditionalFileUpdate::Updated | EcstoreConditionalFileUpdate::Mismatch) => {}
|
||||||
|
Ok(EcstoreConditionalFileUpdate::Missing) => warn!(
|
||||||
|
target: "rustfs::heal::resume",
|
||||||
|
event = EVENT_HEAL_CHECKPOINT_STATE,
|
||||||
|
component = LOG_COMPONENT_HEAL,
|
||||||
|
subsystem = LOG_SUBSYSTEM_RESUME,
|
||||||
|
task_id,
|
||||||
|
state = "blocked_marker_write_failed",
|
||||||
|
error = "marker target disappeared",
|
||||||
|
"Heal checkpoint could not persist its blocked marker"
|
||||||
|
),
|
||||||
|
Err(error) => warn!(
|
||||||
|
target: "rustfs::heal::resume",
|
||||||
|
event = EVENT_HEAL_CHECKPOINT_STATE,
|
||||||
|
component = LOG_COMPONENT_HEAL,
|
||||||
|
subsystem = LOG_SUBSYSTEM_RESUME,
|
||||||
|
task_id,
|
||||||
|
state = "blocked_marker_write_failed",
|
||||||
|
error = %error,
|
||||||
|
"Heal checkpoint could not persist its blocked marker"
|
||||||
|
),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// create new checkpoint manager
|
/// create new checkpoint manager
|
||||||
pub async fn new(disk: DiskStore, task_id: String) -> Result<Self> {
|
pub async fn new(disk: DiskStore, task_id: String) -> Result<Self> {
|
||||||
validate_resume_task_id(&task_id)?;
|
validate_resume_task_id(&task_id)?;
|
||||||
|
let checkpoint_volume = format!("{RUSTFS_META_BUCKET}/{BUCKET_META_PREFIX}");
|
||||||
|
if let Err(error) = EcstoreDiskAPI::make_volume(disk.as_ref(), &checkpoint_volume).await
|
||||||
|
&& error != crate::heal::DiskError::VolumeExists
|
||||||
|
{
|
||||||
|
return Err(Error::TaskExecutionFailed {
|
||||||
|
message: format!("Failed to create checkpoint volume: {error}"),
|
||||||
|
});
|
||||||
|
}
|
||||||
let checkpoint = ResumeCheckpoint::new(task_id);
|
let checkpoint = ResumeCheckpoint::new(task_id);
|
||||||
let manager = Self {
|
let manager = Self {
|
||||||
disk,
|
disk,
|
||||||
checkpoint: Arc::new(RwLock::new(checkpoint)),
|
checkpoint: Arc::new(RwLock::new(checkpoint)),
|
||||||
throttle: Mutex::new(PersistThrottle::new()),
|
throttle: Mutex::new(PersistThrottle::new()),
|
||||||
|
save_lock: AsyncMutex::new(()),
|
||||||
|
last_saved: Mutex::new(None),
|
||||||
};
|
};
|
||||||
|
|
||||||
// save initial checkpoint
|
// save initial checkpoint
|
||||||
@@ -140,6 +238,7 @@ impl CheckpointManager {
|
|||||||
error = %e,
|
error = %e,
|
||||||
"Heal checkpoint persistence failed"
|
"Heal checkpoint persistence failed"
|
||||||
);
|
);
|
||||||
|
return Err(e);
|
||||||
}
|
}
|
||||||
Ok(manager)
|
Ok(manager)
|
||||||
}
|
}
|
||||||
@@ -148,11 +247,22 @@ impl CheckpointManager {
|
|||||||
pub async fn load_from_disk(disk: DiskStore, task_id: &str) -> Result<Self> {
|
pub async fn load_from_disk(disk: DiskStore, task_id: &str) -> Result<Self> {
|
||||||
validate_resume_task_id(task_id)?;
|
validate_resume_task_id(task_id)?;
|
||||||
let checkpoint_data = Self::read_checkpoint_file(&disk, task_id).await?;
|
let checkpoint_data = Self::read_checkpoint_file(&disk, task_id).await?;
|
||||||
let mut checkpoint: ResumeCheckpoint =
|
Self::load_from_data(disk, task_id, checkpoint_data).await
|
||||||
serde_json::from_slice(&checkpoint_data).map_err(|e| Error::TaskExecutionFailed {
|
}
|
||||||
message: format!("Failed to deserialize checkpoint: {e}"),
|
|
||||||
})?;
|
async fn load_from_data(disk: DiskStore, task_id: &str, checkpoint_data: Vec<u8>) -> Result<Self> {
|
||||||
|
validate_resume_task_id(task_id)?;
|
||||||
|
let mut checkpoint: ResumeCheckpoint = match serde_json::from_slice(&checkpoint_data) {
|
||||||
|
Ok(checkpoint) => checkpoint,
|
||||||
|
Err(error) => {
|
||||||
|
Self::block_invalid_snapshot(&disk, task_id).await;
|
||||||
|
return Err(Error::TaskExecutionFailed {
|
||||||
|
message: format!("Failed to deserialize checkpoint: {error}"),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
if checkpoint.task_id != task_id {
|
if checkpoint.task_id != task_id {
|
||||||
|
Self::block_invalid_snapshot(&disk, task_id).await;
|
||||||
return Err(Error::TaskExecutionFailed {
|
return Err(Error::TaskExecutionFailed {
|
||||||
message: "Resume checkpoint task id does not match filename".to_string(),
|
message: "Resume checkpoint task id does not match filename".to_string(),
|
||||||
});
|
});
|
||||||
@@ -163,6 +273,7 @@ impl CheckpointManager {
|
|||||||
// identities. Discard the stale sets and position, then stamp the
|
// identities. Discard the stale sets and position, then stamp the
|
||||||
// current schema so the scan restarts cleanly.
|
// current schema so the scan restarts cleanly.
|
||||||
if checkpoint.schema_version > CURRENT_CHECKPOINT_SCHEMA {
|
if checkpoint.schema_version > CURRENT_CHECKPOINT_SCHEMA {
|
||||||
|
Self::block_invalid_snapshot(&disk, task_id).await;
|
||||||
return Err(Error::TaskExecutionFailed {
|
return Err(Error::TaskExecutionFailed {
|
||||||
message: format!(
|
message: format!(
|
||||||
"Checkpoint schema {} is newer than supported schema {CURRENT_CHECKPOINT_SCHEMA}",
|
"Checkpoint schema {} is newer than supported schema {CURRENT_CHECKPOINT_SCHEMA}",
|
||||||
@@ -194,6 +305,8 @@ impl CheckpointManager {
|
|||||||
disk,
|
disk,
|
||||||
checkpoint: Arc::new(RwLock::new(checkpoint)),
|
checkpoint: Arc::new(RwLock::new(checkpoint)),
|
||||||
throttle: Mutex::new(PersistThrottle::new()),
|
throttle: Mutex::new(PersistThrottle::new()),
|
||||||
|
save_lock: AsyncMutex::new(()),
|
||||||
|
last_saved: Mutex::new(Some(EcstoreDiskBytes::from(checkpoint_data))),
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -204,7 +317,7 @@ impl CheckpointManager {
|
|||||||
}
|
}
|
||||||
let file_path = Path::new(BUCKET_META_PREFIX).join(format!("{task_id}_{RESUME_CHECKPOINT_FILE}"));
|
let file_path = Path::new(BUCKET_META_PREFIX).join(format!("{task_id}_{RESUME_CHECKPOINT_FILE}"));
|
||||||
match path_to_str(&file_path) {
|
match path_to_str(&file_path) {
|
||||||
Ok(path_str) => match disk.read_all(RUSTFS_META_BUCKET, path_str).await {
|
Ok(path_str) => match HealDiskExt::read_all(disk.as_ref(), RUSTFS_META_BUCKET, path_str).await {
|
||||||
Ok(data) => !data.is_empty(),
|
Ok(data) => !data.is_empty(),
|
||||||
Err(_) => false,
|
Err(_) => false,
|
||||||
},
|
},
|
||||||
@@ -292,6 +405,8 @@ impl CheckpointManager {
|
|||||||
|
|
||||||
let checkpoint_file = Path::new(BUCKET_META_PREFIX).join(format!("{task_id}_{RESUME_CHECKPOINT_FILE}"));
|
let checkpoint_file = Path::new(BUCKET_META_PREFIX).join(format!("{task_id}_{RESUME_CHECKPOINT_FILE}"));
|
||||||
delete_resume_file(&self.disk, &checkpoint_file).await?;
|
delete_resume_file(&self.disk, &checkpoint_file).await?;
|
||||||
|
delete_resume_file(&self.disk, &Self::digest_path(&task_id)).await?;
|
||||||
|
delete_resume_file(&self.disk, &Self::blocked_path(&task_id)).await?;
|
||||||
|
|
||||||
debug!(
|
debug!(
|
||||||
target: "rustfs::heal::resume",
|
target: "rustfs::heal::resume",
|
||||||
@@ -307,22 +422,140 @@ impl CheckpointManager {
|
|||||||
|
|
||||||
/// save checkpoint to disk
|
/// save checkpoint to disk
|
||||||
async fn save_checkpoint(&self) -> Result<()> {
|
async fn save_checkpoint(&self) -> Result<()> {
|
||||||
let checkpoint = self.checkpoint.read().await;
|
// Serialize saves and take the snapshot only after acquiring the lock:
|
||||||
|
// a slower writer must not publish a snapshot taken before a newer one.
|
||||||
|
let _save_guard = self.save_lock.lock().await;
|
||||||
|
let checkpoint = self.checkpoint.read().await.clone();
|
||||||
validate_resume_task_id(&checkpoint.task_id)?;
|
validate_resume_task_id(&checkpoint.task_id)?;
|
||||||
let checkpoint_data = serde_json::to_vec(&*checkpoint).map_err(|e| Error::TaskExecutionFailed {
|
let checkpoint_data =
|
||||||
|
EcstoreDiskBytes::from(serde_json::to_vec(&checkpoint).map_err(|e| Error::TaskExecutionFailed {
|
||||||
message: format!("Failed to serialize checkpoint: {e}"),
|
message: format!("Failed to serialize checkpoint: {e}"),
|
||||||
})?;
|
})?);
|
||||||
|
|
||||||
let file_path = Path::new(BUCKET_META_PREFIX).join(format!("{}_{}", checkpoint.task_id, RESUME_CHECKPOINT_FILE));
|
let file_path = Path::new(BUCKET_META_PREFIX).join(format!("{}_{}", checkpoint.task_id, RESUME_CHECKPOINT_FILE));
|
||||||
|
|
||||||
let path_str = path_to_str(&file_path)?;
|
let path_str = path_to_str(&file_path)?;
|
||||||
self.disk
|
let last_saved = self
|
||||||
.write_all(RUSTFS_META_BUCKET, path_str, checkpoint_data.into())
|
.last_saved
|
||||||
|
.lock()
|
||||||
|
.map_err(|_| Error::TaskExecutionFailed {
|
||||||
|
message: "Checkpoint save state lock is poisoned; refusing to save".to_string(),
|
||||||
|
})?
|
||||||
|
.clone();
|
||||||
|
let update = EcstoreDiskAPI::compare_and_update_file(
|
||||||
|
self.disk.as_ref(),
|
||||||
|
RUSTFS_META_BUCKET,
|
||||||
|
path_str,
|
||||||
|
last_saved.clone(),
|
||||||
|
Some(checkpoint_data.clone()),
|
||||||
|
)
|
||||||
.await
|
.await
|
||||||
.map_err(|e| Error::TaskExecutionFailed {
|
.map_err(|e| Error::TaskExecutionFailed {
|
||||||
message: format!("Failed to save checkpoint: {e}"),
|
message: format!("Failed to save checkpoint: {e}"),
|
||||||
})?;
|
})?;
|
||||||
|
|
||||||
|
let expected = match update {
|
||||||
|
EcstoreConditionalFileUpdate::Updated => None,
|
||||||
|
EcstoreConditionalFileUpdate::Missing => {
|
||||||
|
return Err(Error::TaskExecutionFailed {
|
||||||
|
message: "Checkpoint was removed after this manager saved it; refusing to recreate it".to_string(),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
EcstoreConditionalFileUpdate::Mismatch => {
|
||||||
|
// A healthy manager normally completes the CAS above without
|
||||||
|
// another read or JSON parse. Inspect only after a mismatch so
|
||||||
|
// corruption and future schemas cannot be overwritten blindly.
|
||||||
|
let existing = match HealDiskExt::read_all(self.disk.as_ref(), RUSTFS_META_BUCKET, path_str).await {
|
||||||
|
Ok(existing) => existing,
|
||||||
|
Err(crate::heal::DiskError::FileNotFound) => {
|
||||||
|
return Err(Error::TaskExecutionFailed {
|
||||||
|
message: "Checkpoint was removed after this manager saved it; refusing to recreate it".to_string(),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
Err(error) => {
|
||||||
|
return Err(Error::TaskExecutionFailed {
|
||||||
|
message: format!("Failed to inspect checkpoint after CAS mismatch: {error}"),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
if existing.is_empty() && last_saved.is_none() {
|
||||||
|
Some(existing)
|
||||||
|
} else {
|
||||||
|
let current: ResumeCheckpoint = match serde_json::from_slice(&existing) {
|
||||||
|
Ok(current) => current,
|
||||||
|
Err(error) => {
|
||||||
|
Self::block_invalid_snapshot(&self.disk, &checkpoint.task_id).await;
|
||||||
|
return Err(Error::TaskExecutionFailed {
|
||||||
|
message: format!("Existing checkpoint is corrupt: {error}"),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
if current.task_id != checkpoint.task_id {
|
||||||
|
Self::block_invalid_snapshot(&self.disk, &checkpoint.task_id).await;
|
||||||
|
return Err(Error::TaskExecutionFailed {
|
||||||
|
message: "Existing checkpoint task id does not match filename".to_string(),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if current.schema_version > CURRENT_CHECKPOINT_SCHEMA {
|
||||||
|
Self::block_invalid_snapshot(&self.disk, &checkpoint.task_id).await;
|
||||||
|
return Err(Error::TaskExecutionFailed {
|
||||||
|
message: format!(
|
||||||
|
"Existing checkpoint schema {} is newer than supported schema {CURRENT_CHECKPOINT_SCHEMA}",
|
||||||
|
current.schema_version
|
||||||
|
),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if last_saved.as_ref().is_none_or(|saved| saved.as_ref() != existing.as_ref()) {
|
||||||
|
return Err(Error::TaskExecutionFailed {
|
||||||
|
message: "Checkpoint changed since this manager loaded it; refusing to overwrite newer progress"
|
||||||
|
.to_string(),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
Some(existing)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
if let Some(expected) = expected {
|
||||||
|
match EcstoreDiskAPI::compare_and_update_file(
|
||||||
|
self.disk.as_ref(),
|
||||||
|
RUSTFS_META_BUCKET,
|
||||||
|
path_str,
|
||||||
|
Some(expected),
|
||||||
|
Some(checkpoint_data.clone()),
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
.map_err(|e| Error::TaskExecutionFailed {
|
||||||
|
message: format!("Failed to save checkpoint after CAS mismatch: {e}"),
|
||||||
|
})? {
|
||||||
|
EcstoreConditionalFileUpdate::Updated => {}
|
||||||
|
EcstoreConditionalFileUpdate::Missing | EcstoreConditionalFileUpdate::Mismatch => {
|
||||||
|
return Err(Error::TaskExecutionFailed {
|
||||||
|
message: "Checkpoint changed while saving; refusing to overwrite newer progress".to_string(),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
let digest_path = Self::digest_path(&checkpoint.task_id);
|
||||||
|
let digest = base64::engine::general_purpose::STANDARD.encode(Sha256::digest(checkpoint_data.as_ref()));
|
||||||
|
HealDiskExt::write_all(
|
||||||
|
self.disk.as_ref(),
|
||||||
|
RUSTFS_META_BUCKET,
|
||||||
|
path_to_str(&digest_path)?,
|
||||||
|
EcstoreDiskBytes::from(digest.into_bytes()),
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
.map_err(|e| Error::TaskExecutionFailed {
|
||||||
|
message: format!("Failed to save checkpoint digest: {e}"),
|
||||||
|
})?;
|
||||||
|
|
||||||
|
let mut last_saved = self.last_saved.lock().map_err(|_| Error::TaskExecutionFailed {
|
||||||
|
message: "Checkpoint save state lock is poisoned after save".to_string(),
|
||||||
|
})?;
|
||||||
|
*last_saved = Some(checkpoint_data);
|
||||||
|
|
||||||
debug!(
|
debug!(
|
||||||
target: "rustfs::heal::resume",
|
target: "rustfs::heal::resume",
|
||||||
event = EVENT_HEAL_CHECKPOINT_STATE,
|
event = EVENT_HEAL_CHECKPOINT_STATE,
|
||||||
@@ -341,11 +574,35 @@ impl CheckpointManager {
|
|||||||
let file_path = Path::new(BUCKET_META_PREFIX).join(format!("{task_id}_{RESUME_CHECKPOINT_FILE}"));
|
let file_path = Path::new(BUCKET_META_PREFIX).join(format!("{task_id}_{RESUME_CHECKPOINT_FILE}"));
|
||||||
|
|
||||||
let path_str = path_to_str(&file_path)?;
|
let path_str = path_to_str(&file_path)?;
|
||||||
disk.read_all(RUSTFS_META_BUCKET, path_str)
|
let checkpoint = HealDiskExt::read_all(disk.as_ref(), RUSTFS_META_BUCKET, path_str)
|
||||||
.await
|
.await
|
||||||
.map(|bytes| bytes.to_vec())
|
.map(|bytes| bytes.to_vec())
|
||||||
.map_err(|e| Error::TaskExecutionFailed {
|
.map_err(|e| Error::TaskExecutionFailed {
|
||||||
message: format!("Failed to read checkpoint file: {e}"),
|
message: format!("Failed to read checkpoint file: {e}"),
|
||||||
})
|
})?;
|
||||||
|
let digest_path = Self::digest_path(task_id);
|
||||||
|
let digest_path = path_to_str(&digest_path)?;
|
||||||
|
match HealDiskExt::read_all(disk.as_ref(), RUSTFS_META_BUCKET, digest_path).await {
|
||||||
|
Ok(expected) => {
|
||||||
|
let actual = base64::engine::general_purpose::STANDARD.encode(Sha256::digest(&checkpoint));
|
||||||
|
if expected.as_ref() != actual.as_bytes() {
|
||||||
|
Self::block_invalid_snapshot(disk, task_id).await;
|
||||||
|
return Err(Error::InvalidCheckpoint(format!(
|
||||||
|
"Resume checkpoint digest does not match task {task_id}"
|
||||||
|
)));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Err(crate::heal::DiskError::FileNotFound) => {}
|
||||||
|
Err(error) => {
|
||||||
|
return Err(Error::TaskExecutionFailed {
|
||||||
|
message: format!("Failed to read checkpoint digest: {error}"),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Ok(checkpoint)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn digest_path(task_id: &str) -> std::path::PathBuf {
|
||||||
|
Path::new(BUCKET_META_PREFIX).join(format!("{task_id}_{RESUME_CHECKPOINT_DIGEST_FILE}"))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1675,6 +1675,285 @@ async fn future_resume_and_checkpoint_schemas_are_rejected() {
|
|||||||
temp_dir.close().expect("remove schema test directory");
|
temp_dir.close().expect("remove schema test directory");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn checkpoint_save_does_not_replace_a_non_empty_truncated_snapshot() {
|
||||||
|
let (temp_dir, disk) = schema_test_disk().await;
|
||||||
|
let task_id = ResumeUtils::generate_task_id();
|
||||||
|
let manager = CheckpointManager::new(disk.clone(), task_id.clone())
|
||||||
|
.await
|
||||||
|
.expect("create checkpoint manager");
|
||||||
|
let checkpoint_path = format!("{BUCKET_META_PREFIX}/{task_id}_{RESUME_CHECKPOINT_FILE}");
|
||||||
|
let truncated = b"{\"schema_version\":5,\"task_id\":";
|
||||||
|
disk.write_all(RUSTFS_META_BUCKET, &checkpoint_path, truncated.as_slice().into())
|
||||||
|
.await
|
||||||
|
.expect("write truncated checkpoint fixture");
|
||||||
|
|
||||||
|
let error = manager
|
||||||
|
.update_position(2, 7)
|
||||||
|
.await
|
||||||
|
.expect_err("a truncated checkpoint must fail closed during save");
|
||||||
|
assert!(error.to_string().contains("Existing checkpoint is corrupt"));
|
||||||
|
assert_eq!(
|
||||||
|
disk.read_all(RUSTFS_META_BUCKET, &checkpoint_path)
|
||||||
|
.await
|
||||||
|
.expect("read truncated checkpoint fixture"),
|
||||||
|
truncated.as_slice()
|
||||||
|
);
|
||||||
|
assert!(CheckpointManager::is_blocked(&disk, &task_id).await);
|
||||||
|
temp_dir.close().expect("remove checkpoint save test directory");
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn checkpoint_save_does_not_replace_a_future_schema_snapshot() {
|
||||||
|
let (temp_dir, disk) = schema_test_disk().await;
|
||||||
|
let task_id = ResumeUtils::generate_task_id();
|
||||||
|
let manager = CheckpointManager::new(disk.clone(), task_id.clone())
|
||||||
|
.await
|
||||||
|
.expect("create checkpoint manager");
|
||||||
|
let checkpoint_path = format!("{BUCKET_META_PREFIX}/{task_id}_{RESUME_CHECKPOINT_FILE}");
|
||||||
|
let mut future = ResumeCheckpoint::new(task_id.clone());
|
||||||
|
future.schema_version = CURRENT_CHECKPOINT_SCHEMA + 1;
|
||||||
|
let future_bytes = serde_json::to_vec(&future).expect("serialize future checkpoint fixture");
|
||||||
|
disk.write_all(RUSTFS_META_BUCKET, &checkpoint_path, future_bytes.clone().into())
|
||||||
|
.await
|
||||||
|
.expect("write future checkpoint fixture");
|
||||||
|
|
||||||
|
let error = manager
|
||||||
|
.update_position(2, 7)
|
||||||
|
.await
|
||||||
|
.expect_err("a future schema must fail closed during save");
|
||||||
|
assert!(error.to_string().contains("Existing checkpoint schema"));
|
||||||
|
assert_eq!(
|
||||||
|
disk.read_all(RUSTFS_META_BUCKET, &checkpoint_path)
|
||||||
|
.await
|
||||||
|
.expect("read future checkpoint fixture"),
|
||||||
|
future_bytes
|
||||||
|
);
|
||||||
|
assert!(CheckpointManager::is_blocked(&disk, &task_id).await);
|
||||||
|
temp_dir.close().expect("remove future schema test directory");
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn checkpoint_digest_rejects_same_length_progress_tampering() {
|
||||||
|
let (temp_dir, disk) = schema_test_disk().await;
|
||||||
|
let task_id = ResumeUtils::generate_task_id();
|
||||||
|
let manager = CheckpointManager::new(disk.clone(), task_id.clone())
|
||||||
|
.await
|
||||||
|
.expect("create checkpoint manager");
|
||||||
|
manager
|
||||||
|
.add_processed_object("victim-a".to_string())
|
||||||
|
.await
|
||||||
|
.expect("persist checkpoint progress");
|
||||||
|
manager.update_position(1, 1).await.expect("flush checkpoint progress");
|
||||||
|
let checkpoint_path = format!("{BUCKET_META_PREFIX}/{task_id}_{RESUME_CHECKPOINT_FILE}");
|
||||||
|
let original = disk
|
||||||
|
.read_all(RUSTFS_META_BUCKET, &checkpoint_path)
|
||||||
|
.await
|
||||||
|
.expect("read checkpoint fixture");
|
||||||
|
let tampered = original
|
||||||
|
.windows(b"victim-a".len())
|
||||||
|
.position(|window| window == b"victim-a")
|
||||||
|
.map(|index| {
|
||||||
|
let mut bytes = original.to_vec();
|
||||||
|
bytes[index..index + b"victim-a".len()].copy_from_slice(b"victim-b");
|
||||||
|
bytes
|
||||||
|
})
|
||||||
|
.expect("checkpoint should contain the processed object");
|
||||||
|
disk.write_all(RUSTFS_META_BUCKET, &checkpoint_path, tampered.into())
|
||||||
|
.await
|
||||||
|
.expect("write tampered checkpoint fixture");
|
||||||
|
|
||||||
|
assert!(CheckpointManager::load_from_disk(disk.clone(), &task_id).await.is_err());
|
||||||
|
assert!(CheckpointManager::is_blocked(&disk, &task_id).await);
|
||||||
|
temp_dir.close().expect("remove digest test directory");
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn new_checkpoint_manager_rebuilds_an_empty_snapshot() {
|
||||||
|
let (temp_dir, disk) = schema_test_disk().await;
|
||||||
|
let task_id = ResumeUtils::generate_task_id();
|
||||||
|
let checkpoint_path = format!("{BUCKET_META_PREFIX}/{task_id}_{RESUME_CHECKPOINT_FILE}");
|
||||||
|
disk.write_all(RUSTFS_META_BUCKET, &checkpoint_path, EcstoreDiskBytes::new())
|
||||||
|
.await
|
||||||
|
.expect("write empty checkpoint fixture");
|
||||||
|
|
||||||
|
let manager = CheckpointManager::new(disk.clone(), task_id.clone())
|
||||||
|
.await
|
||||||
|
.expect("a new manager must rebuild an empty checkpoint");
|
||||||
|
manager
|
||||||
|
.update_position(3, 11)
|
||||||
|
.await
|
||||||
|
.expect("rebuilt checkpoint must remain writable");
|
||||||
|
assert!(CheckpointManager::has_checkpoint(&disk, &task_id).await);
|
||||||
|
temp_dir.close().expect("remove empty checkpoint test directory");
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn deleted_checkpoint_is_not_recreated_by_an_old_manager() {
|
||||||
|
let (temp_dir, disk) = schema_test_disk().await;
|
||||||
|
let task_id = ResumeUtils::generate_task_id();
|
||||||
|
let manager = CheckpointManager::new(disk.clone(), task_id.clone())
|
||||||
|
.await
|
||||||
|
.expect("create checkpoint manager");
|
||||||
|
manager.cleanup().await.expect("delete checkpoint fixture");
|
||||||
|
|
||||||
|
let error = manager
|
||||||
|
.update_position(1, 2)
|
||||||
|
.await
|
||||||
|
.expect_err("an old manager must not resurrect a deleted checkpoint");
|
||||||
|
assert!(error.to_string().contains("removed after this manager saved it"));
|
||||||
|
assert!(!CheckpointManager::has_checkpoint(&disk, &task_id).await);
|
||||||
|
temp_dir.close().expect("remove deleted checkpoint test directory");
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn an_empty_blocked_marker_still_blocks_resume_selection() {
|
||||||
|
let (temp_dir, disk) = schema_test_disk().await;
|
||||||
|
let task_id = ResumeUtils::generate_task_id();
|
||||||
|
let manager = CheckpointManager::new(disk.clone(), task_id.clone())
|
||||||
|
.await
|
||||||
|
.expect("create checkpoint manager");
|
||||||
|
let blocked_path = format!("{BUCKET_META_PREFIX}/{task_id}_{RESUME_CHECKPOINT_BLOCKED_FILE}");
|
||||||
|
disk.write_all(RUSTFS_META_BUCKET, &blocked_path, EcstoreDiskBytes::new())
|
||||||
|
.await
|
||||||
|
.expect("write empty blocked marker fixture");
|
||||||
|
|
||||||
|
assert!(CheckpointManager::is_blocked(&disk, &task_id).await);
|
||||||
|
assert!(CheckpointManager::is_resumable(&disk, &task_id).await.is_err());
|
||||||
|
// Recovery requires replacing/cleaning the snapshot, then removing the
|
||||||
|
// marker; ordinary selector retries are intentionally not an unlock path.
|
||||||
|
manager.cleanup().await.expect("clean blocked checkpoint");
|
||||||
|
assert!(!CheckpointManager::is_blocked(&disk, &task_id).await);
|
||||||
|
temp_dir.close().expect("remove empty blocked marker test directory");
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn resumable_selector_skips_healthy_tasks_with_blocked_markers() {
|
||||||
|
let (temp_dir, disk) = schema_test_disk().await;
|
||||||
|
let tasks = [
|
||||||
|
(ResumeUtils::generate_task_id(), EcstoreDiskBytes::new()),
|
||||||
|
(ResumeUtils::generate_task_id(), EcstoreDiskBytes::from_static(b"blocked")),
|
||||||
|
];
|
||||||
|
for (task_id, marker) in &tasks {
|
||||||
|
ResumeManager::new(
|
||||||
|
disk.clone(),
|
||||||
|
task_id.clone(),
|
||||||
|
"erasure_set".to_string(),
|
||||||
|
"pool_0_set_0".to_string(),
|
||||||
|
vec!["bucket".to_string()],
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
.expect("create healthy resume state");
|
||||||
|
CheckpointManager::new(disk.clone(), task_id.clone())
|
||||||
|
.await
|
||||||
|
.expect("create healthy checkpoint");
|
||||||
|
let checkpoint_path = format!("{BUCKET_META_PREFIX}/{task_id}_{RESUME_CHECKPOINT_FILE}");
|
||||||
|
let checkpoint_bytes = disk
|
||||||
|
.read_all(RUSTFS_META_BUCKET, &checkpoint_path)
|
||||||
|
.await
|
||||||
|
.expect("read healthy checkpoint before blocking");
|
||||||
|
let marker_path = format!("{BUCKET_META_PREFIX}/{task_id}_{RESUME_CHECKPOINT_BLOCKED_FILE}");
|
||||||
|
disk.write_all(RUSTFS_META_BUCKET, &marker_path, marker.clone())
|
||||||
|
.await
|
||||||
|
.expect("write blocked marker");
|
||||||
|
|
||||||
|
assert!(ResumeUtils::get_resumable_tasks(&disk).await.is_err());
|
||||||
|
assert_eq!(
|
||||||
|
disk.read_all(RUSTFS_META_BUCKET, &checkpoint_path)
|
||||||
|
.await
|
||||||
|
.expect("read healthy checkpoint after blocking"),
|
||||||
|
checkpoint_bytes
|
||||||
|
);
|
||||||
|
}
|
||||||
|
temp_dir.close().expect("remove blocked selector test directory");
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn stale_checkpoint_manager_cannot_overwrite_newer_progress() {
|
||||||
|
let (temp_dir, disk) = schema_test_disk().await;
|
||||||
|
let task_id = ResumeUtils::generate_task_id();
|
||||||
|
let first = CheckpointManager::new(disk.clone(), task_id.clone())
|
||||||
|
.await
|
||||||
|
.expect("create first checkpoint manager");
|
||||||
|
let second = CheckpointManager::load_from_disk(disk.clone(), &task_id)
|
||||||
|
.await
|
||||||
|
.expect("load second checkpoint manager");
|
||||||
|
|
||||||
|
second
|
||||||
|
.update_position(4, 20)
|
||||||
|
.await
|
||||||
|
.expect("persist newer checkpoint progress");
|
||||||
|
let error = first
|
||||||
|
.update_position(1, 3)
|
||||||
|
.await
|
||||||
|
.expect_err("stale checkpoint manager must not overwrite newer progress");
|
||||||
|
assert!(error.to_string().contains("newer progress"));
|
||||||
|
|
||||||
|
let persisted = CheckpointManager::load_from_disk(disk.clone(), &task_id)
|
||||||
|
.await
|
||||||
|
.expect("load newer checkpoint progress")
|
||||||
|
.get_checkpoint()
|
||||||
|
.await;
|
||||||
|
assert_eq!(persisted.current_bucket_index, 4);
|
||||||
|
assert_eq!(persisted.current_object_index, 20);
|
||||||
|
temp_dir.close().expect("remove stale manager test directory");
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn resumable_selector_isolates_future_and_corrupt_checkpoints() {
|
||||||
|
let (temp_dir, disk) = schema_test_disk().await;
|
||||||
|
let future_task = ResumeUtils::generate_task_id();
|
||||||
|
let corrupt_task = ResumeUtils::generate_task_id();
|
||||||
|
for task_id in [&future_task, &corrupt_task] {
|
||||||
|
ResumeManager::new(
|
||||||
|
disk.clone(),
|
||||||
|
task_id.to_string(),
|
||||||
|
"erasure_set".to_string(),
|
||||||
|
"pool_0_set_0".to_string(),
|
||||||
|
vec!["bucket".to_string()],
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
.expect("create resumable state fixture");
|
||||||
|
}
|
||||||
|
|
||||||
|
let future_path = format!("{BUCKET_META_PREFIX}/{future_task}_{RESUME_CHECKPOINT_FILE}");
|
||||||
|
let mut future = ResumeCheckpoint::new(future_task.clone());
|
||||||
|
future.schema_version = CURRENT_CHECKPOINT_SCHEMA + 1;
|
||||||
|
let future_bytes = serde_json::to_vec(&future).expect("serialize future checkpoint fixture");
|
||||||
|
disk.write_all(RUSTFS_META_BUCKET, &future_path, future_bytes.clone().into())
|
||||||
|
.await
|
||||||
|
.expect("write future checkpoint fixture");
|
||||||
|
let corrupt_path = format!("{BUCKET_META_PREFIX}/{corrupt_task}_{RESUME_CHECKPOINT_FILE}");
|
||||||
|
let corrupt_bytes = b"{truncated";
|
||||||
|
disk.write_all(RUSTFS_META_BUCKET, &corrupt_path, corrupt_bytes.as_slice().into())
|
||||||
|
.await
|
||||||
|
.expect("write corrupt checkpoint fixture");
|
||||||
|
|
||||||
|
assert!(CheckpointManager::is_resumable(&disk, &future_task).await.is_err());
|
||||||
|
assert!(CheckpointManager::is_resumable(&disk, &corrupt_task).await.is_err());
|
||||||
|
assert!(ResumeUtils::get_resumable_tasks(&disk).await.is_err());
|
||||||
|
for (task_id, path, bytes) in [
|
||||||
|
(&future_task, future_path, future_bytes),
|
||||||
|
(&corrupt_task, corrupt_path, corrupt_bytes.to_vec()),
|
||||||
|
] {
|
||||||
|
assert_eq!(
|
||||||
|
disk.read_all(RUSTFS_META_BUCKET, &path)
|
||||||
|
.await
|
||||||
|
.expect("read isolated checkpoint bytes"),
|
||||||
|
bytes
|
||||||
|
);
|
||||||
|
let blocked_path = format!("{BUCKET_META_PREFIX}/{task_id}_{RESUME_CHECKPOINT_BLOCKED_FILE}");
|
||||||
|
assert!(
|
||||||
|
!disk
|
||||||
|
.read_all(RUSTFS_META_BUCKET, &blocked_path)
|
||||||
|
.await
|
||||||
|
.expect("read checkpoint blocked marker")
|
||||||
|
.is_empty()
|
||||||
|
);
|
||||||
|
}
|
||||||
|
temp_dir.close().expect("remove selector isolation test directory");
|
||||||
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_persist_throttle_batches_until_threshold() {
|
fn test_persist_throttle_batches_until_threshold() {
|
||||||
let mut throttle = PersistThrottle::new();
|
let mut throttle = PersistThrottle::new();
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ use uuid::Uuid;
|
|||||||
use super::super::{BUCKET_META_PREFIX, DiskError, DiskStore, HealDiskExt as _, RUSTFS_META_BUCKET};
|
use super::super::{BUCKET_META_PREFIX, DiskError, DiskStore, HealDiskExt as _, RUSTFS_META_BUCKET};
|
||||||
use super::replacement::{ReplacementPhase, ReplacementRecoveryRecord};
|
use super::replacement::{ReplacementPhase, ReplacementRecoveryRecord};
|
||||||
use super::{
|
use super::{
|
||||||
EVENT_HEAL_RESUME_STATE, LOG_COMPONENT_HEAL, LOG_SUBSYSTEM_RESUME, REPLACEMENT_COMPLETION_PROOF_FILE,
|
CheckpointManager, EVENT_HEAL_RESUME_STATE, LOG_COMPONENT_HEAL, LOG_SUBSYSTEM_RESUME, REPLACEMENT_COMPLETION_PROOF_FILE,
|
||||||
REPLACEMENT_INTENT_FILE, RESUME_STATE_FILE, ResumeManager, ResumeStateFile, is_replacement_intent, path_to_str,
|
REPLACEMENT_INTENT_FILE, RESUME_STATE_FILE, ResumeManager, ResumeStateFile, is_replacement_intent, path_to_str,
|
||||||
replacement_recovery_corruption_for_state_load, replacement_recovery_dir, validate_resume_task_id,
|
replacement_recovery_corruption_for_state_load, replacement_recovery_dir, validate_resume_task_id,
|
||||||
};
|
};
|
||||||
@@ -67,6 +67,7 @@ impl ResumeUtils {
|
|||||||
// Extract task ID from filename: {task_id}_ahm_resume_state.json
|
// Extract task ID from filename: {task_id}_ahm_resume_state.json
|
||||||
if let Some(task_id) = entry.strip_suffix(&format!("_{RESUME_STATE_FILE}"))
|
if let Some(task_id) = entry.strip_suffix(&format!("_{RESUME_STATE_FILE}"))
|
||||||
&& validate_resume_task_id(task_id).is_ok()
|
&& validate_resume_task_id(task_id).is_ok()
|
||||||
|
&& CheckpointManager::is_resumable(disk, task_id).await?
|
||||||
{
|
{
|
||||||
task_ids.push(task_id.to_string());
|
task_ids.push(task_id.to_string());
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user