lifecycle worker: add logging
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing

This commit is contained in:
Alex 2023-08-30 14:54:52 +02:00
parent 0f1849e1ac
commit 7200954318

View file

@ -282,6 +282,10 @@ async fn process_object(
state: ObjectVersionState::Complete(ObjectVersionData::DeleteMarker), state: ObjectVersionState::Complete(ObjectVersionData::DeleteMarker),
}], }],
); );
info!(
"Lifecycle: expiring 1 object in bucket {:?}",
object.bucket_id
);
garage.object_table.insert(&deleted_object).await?; garage.object_table.insert(&deleted_object).await?;
*objects_expired += 1; *objects_expired += 1;
} }
@ -311,6 +315,10 @@ async fn process_object(
if !aborted_versions.is_empty() { if !aborted_versions.is_empty() {
// Insert aborted mpu info // Insert aborted mpu info
let n_aborted = aborted_versions.len(); let n_aborted = aborted_versions.len();
info!(
"Lifecycle: aborting {} incomplete upload(s) in bucket {:?}",
n_aborted, object.bucket_id
);
let aborted_object = let aborted_object =
Object::new(object.bucket_id, object.key.clone(), aborted_versions); Object::new(object.bucket_id, object.key.clone(), aborted_versions);
garage.object_table.insert(&aborted_object).await?; garage.object_table.insert(&aborted_object).await?;