Linux – Does rsync support multiple sources to a given destination in parallel

linuxrsync

If I have multiple sources, each with the same directory tree, but different files in the tree, is it safe to run multiple rsync commands in parallel with the same destination?

Specifically, will there be any race conditions for directory/file creation?

Best Answer

There shouldn't be any issues with locking or races, but I still wouldn't suggest it.

Having parts of the tree come from different hosts should work nearly as well and be faster.