Sync directly to the App PVC and save crash-consistent snapshot at de…#26
Open
BenamarMk wants to merge 2 commits into
Open
Sync directly to the App PVC and save crash-consistent snapshot at de…#26BenamarMk wants to merge 2 commits into
BenamarMk wants to merge 2 commits into
Conversation
e707968 to
6d21c62
Compare
…stination Set up VolSync to save the last known good snapshot at the destination. This snapshot is replaced with a newer one every time a successful sync is complete. When the Application is failed over or relocated, this last snapshot will be retained for as long as the workload is deployed. Here is an example of what happens on initial deployment, failover, relocation, failover again, and then the workload is undeployed. Let's assume we have 2 clusters [Cp, Cf]. Cp is the preferred cluster, and Cf is the failover cluster. Sx represents the snapshot retained: Initial Deployment ================== Cp= Cf=S1 after every successful sync a new snapshot is taken and the old one is deleted. Failover to Cf ============== Cp=S2 after every successful sync a new snapshot is taken and the old one is deleted. Cf=S1 Relocate ======== Cp=S2 Cf=S1,S3 in this scenario S1 is saved forever, but S3 is refreshed as above Failover ======== Cp=S2,S4 in this scenario S2 is saved forever, but S4 is refreshed as above Cf=S1,S3 Updeploy the workload ===================== Cp= Cf= Fixes RamenDR#665 Signed-off-by: Benamar Mekhissi <bmekhiss@redhat.com>
6d21c62 to
2398fc6
Compare
Signed-off-by: Benamar Mekhissi <bmekhiss@redhat.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.
…stination
Signed-off-by: Benamar Mekhissi bmekhiss@redhat.com