Replies: 2 comments 2 replies
-
I haven't really wanted to add a --make-rsync-go-really-really-super-extra-slow option, but since it's such a simple change, I'll give it another look soon. |
Beta Was this translation helpful? Give feedback.
1 reply
-
I added the |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
rsync
currently does not flush any written data to disk before exiting. This leaves a time window where data can be lost on the destination in case of storage problems or host crashes.Would you be open to PRs adding a
--flush
and/or--flush-after
option that instructs rsync to flush the written data after each file and after the transfer of all files respectively? The latter option would have the upside of adding little IO overhead for data heavyrsync
runs while still ensuring that the copied data is durable on the receiving side.I saw that you wrote up a patch that implements the first approach a few years ago but unfortunately it never ended up being merged.
Beta Was this translation helpful? Give feedback.
All reactions