Send/Receive old snapshots #13713
-
Hello, TL;DR Details: Even if the backup would be fast enought, to not take that long, The issue is to send the missing previous snapshot, if there is a way to do it, Best, |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 6 replies
-
You don't have to just You can also use bookmarks to keep a consistent "from" to send from, and/or holds to prevent the older snapshots from being purged accidentally while synchronizing. I think your question needs a lot more detail before we can understand the problem you're encountering, tbh. |
Beta Was this translation helpful? Give feedback.
-
Thank you @rincebrain , I added a more complete description of my case. |
Beta Was this translation helpful? Give feedback.
-
do you mean, to remove old snapshots and still be able to use them as incremental source? you can create bookmarks before you remove the snapshots on the source and then this is possible to reduce the total burden of |
Beta Was this translation helpful? Give feedback.
You don't have to just
zfs send -R foo/bar@snap30
and wait for it to send all of snap1 through snap30, you can justzfs send foo/bar@snap1
and then once that finishes,zfs send -i foo/bar@snap1 foo/bar@snap2
and so on.You can also use bookmarks to keep a consistent "from" to send from, and/or holds to prevent the older snapshots from being purged accidentally while synchronizing.
I think your question needs a lot more detail before we can understand the problem you're encountering, tbh.