I want to use rsync to perform daily backups from one USB 3 SSD drive to another. However, my Raspberry Pi 4 is overwhelmed by the task, and the file transfer speed is very low (I assume it's due to the power consumption or otherwise limited USB capabilities). Is there a simple way to use rsync such that files are read from the source drive into RAM and copied from there to the target disk, but without parallelism, i.e. without that the data is read while being written at the same time?
Many thanks!!!