fix(lock): fence write commit on lock loss (#4406)

fix(lock): fence write commit on lock loss (backlog#899 Phase 2)

Phase 0+1 (#4388) made object write locks refreshable and marks the guard
lost when the heartbeat can no longer refresh a quorum, but does not act on
it. Under a partition a long write's lock can expire on an unreachable node
and be reclaimed, letting a third party re-acquire it; the original writer
keeps going and both commit -- a double write.

Expose the loss signal through NamespaceLockGuard::is_lock_lost() and
ObjectLockDiagGuard::is_lock_lost(), and fence the commit in put_object and
complete_multipart_upload: immediately before rename_data (the atomic commit
point), abort with a retryable NamespaceLockQuorumUnavailable (503) if the
lock was lost. In multipart the check precedes cleanup_multipart_path so a
lost lock leaves the upload intact and retryable. A write that already
reached rename_data Ok is durable and never aborted.

The loss criterion is unchanged (reacts to Phase 1's signal). Heal and the
long-GET read side are deferred follow-ups.
This commit is contained in:
Zhengchao An
2026-07-08 15:01:24 +08:00
committed by GitHub
parent f327707321
commit 1e6207c08e
5 changed files with 74 additions and 0 deletions
+10
View File
@@ -118,6 +118,16 @@ impl NamespaceLockGuard {
Self::Fast(guard) => guard.is_released(),
}
}
/// Whether the distributed guard's refresh heartbeat has observed a
/// refresh-quorum loss (backlog#899 Phase 2). Local (fast) locks are
/// single-node and never lose quorum, so they always report `false`.
pub fn is_lock_lost(&self) -> bool {
match self {
Self::Standard(guard) => guard.is_lock_lost(),
Self::Fast(_) => false,
}
}
}
/// Namespace lock for managing locks by resource namespaces