fix(ops): harden soak restart and recovery checks#62
Merged
Conversation
added 8 commits
March 21, 2026 22:13
…ning # Conflicts: # Makefile.toml
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.
Description
This PR replaces the old shell-based public-host soak scripts with a local-only Rust harness that runs directly on the target host from a normal cloned repo checkout. It matters because the restart, shutdown, and derived-state recovery checks are now part of the normal runtime hardening path, and the previous shell orchestration was too brittle around bootstrap retries, stale process cleanup, and shared port usage.
Changes
Detailed list of what changed:
observer-restart-loopderived-state-restart-checkderived-state-crash-recovery-checkbusy-poll-comparecargo run -p sof --bin public_host_soak -- <scenario>.scripts/soak/vps-common.shscripts/soak/vps-observer-restart-loop.shscripts/soak/vps-derived-state-restart-check.shscripts/soak/vps-derived-state-crash-recovery-check.shscripts/soak/vps-busy-poll-compare.shFor slice-related changes, include:
sofinstead of shell parsing, but it does not change production runtime behavior.Motivation
Business motivation:
Technical motivation:
Alternative approaches considered:
Scope and impact
public_host_soak; no production API changesTesting
Commands/results:
Related issues and documentation
docs/architecture/README.mddocs/architecture/ard/0006-performance-and-hot-path-playbook.mdCONTRIBUTING.mdReviewer checklist
docs/architecture/ard/0003-slice-dependency-contracts.md)Additional notes
.soak-lockdirectory serializes scenarios so restart/recovery checks cannot overlap on the same port range.derived_state_slot_mirrorcleanup on the VPS.