Enum DurabilityHealth
Health of the durability subsystem (checkpoint cycle + WAL), surfaced for introspection and used by the checkpoint failure classification (CK-06).
public enum DurabilityHealth
Fields
Degraded = 1The last cycle hit a transient stall (timeout / back-pressure) and will retry; no data at risk.
Fatal = 2A fatal, unrecoverable error latched the checkpoint subsystem; surfaced for operator action.
Ok = 0All durability operations are completing within budget.
Remarks
A Degraded state is recoverable: a transient cycle exception (back-pressure / lock / IO timeout — any TyphonException with IsTransient) is logged and retried on the next cycle, never latched. Fatal is terminal for periodic cycles (the subsystem stops advancing the checkpoint), but the shutdown path still attempts one last-chance flush cycle (04 §7).