Synchronize gpbackup history with the standby coordinator. - #111
Draft
woblerr wants to merge 15 commits into
Draft
Synchronize gpbackup history with the standby coordinator.#111woblerr wants to merge 15 commits into
woblerr wants to merge 15 commits into
Conversation
Keep the primary operation result while making database and row close failures visible.
Return connection, SQLite, and local cleanup failures to the policy boundary without changing best-effort exit status.
Disable automatic sync in shared helpers and restore the original standby history after the dedicated scenario.
Pass remote paths directly to rsync while retaining shell quoting for SSH install and cleanup commands.
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.
closes: #90
gpbackup_history.dbis stored on the active primary coordinator and is not automatically available on the standby. After a failover, the promoted coordinator may have missing or outdated backup history, which affects backup discovery and management.This change keeps the cluster history database synchronized with an available standby coordinator:
gpbackupautomatically synchronizes history after a successful backup.gpbackman history-synccommand allows synchronization to be started manually.--no-history-sync-standby.Only
gpbackup_history.dbis synchronized. Backup data, reports, and other backup artifacts are not included.Unit and end-to-end coverage were added, and the related user documentation was updated.