feat: remote health circuit breaker and S3 error diagnostics#22
Merged
Conversation
ebc6cf0 to
f4f342f
Compare
…iagnostics - Replace Makefile with Justfile for build task management - Add RemoteHealth circuit breaker to suppress repetitive HEAD probe warnings after 3 consecutive failures (45s degradation window) - Capture HTTP status from S3 SdkError before into_service_error() so Ceph/MinIO errors show "HTTP 403" instead of "unhandled error" - Add warming grace period for remote checks during daemon startup - Migrate CI workflows to use Justfile targets - Update kache-service planner integration
f4f342f to
22972b8
Compare
Cargo captures RUSTC_WRAPPER stderr and stores it as compiler diagnostics, replaying stale warnings on every subsequent up-to-date build. Default the wrapper's stderr tracing to "off"; users can still opt in via KACHE_LOG.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
into_service_error()strips it, so Ceph/MinIO errors now showHTTP 403instead ofunhandled error.Test plan
cargo test head_objectpasses (unit tests for HEAD error classification)cargo test remote_healthpasses (circuit breaker unit tests)cargo test warmingpasses (warming barrier tests)HTTP 403)