updating x_trapi maturity values for ITRB compliance#390
Merged
Conversation
gaurav
added a commit
that referenced
this pull request
Jul 15, 2026
The redis-r3-external instances used `--save 300 1000000`, which forks a multi-GB BGSAVE every few minutes throughout a load — pure copy-on-write waste on the 150 GB+ databases. No `save <sec> <changes>` policy can snapshot only after a populate finishes without also forking repeatedly during it, so drive persistence explicitly instead: - redis-r3-external: set `save ""` (no automatic RDB snapshots) on all seven instances; keep `appendonly no`. mode:load disables saves at runtime and BGSAVEs manually at the end; mode:restore BGSAVEs at the end of run_pipe.sh. - run_pipe.sh: the end-of-restore BGSAVE was fire-and-forget, so a pod restart could reload a partial/empty dump.rdb. It now triggers BGSAVE and waits for it to complete (LASTSAVE advances, rdb_last_bgsave_status:ok) before the Job exits, failing loudly on error or timeout. Fixes NodeNorm issue #390. See NodeNorm documentation/Loader.md ("Why persistence is explicit, not periodic"). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
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.
No description provided.