Even on cloning it can be faster on drives with lots of tiny files that makes rsync sad
ngl i had a similar problem with a massive 1tb file.
i noticed that rsync was taking up a lot of cpu usage and took longer then it was susposed to (its about 3000 files totaling about 2.5gb).
thinking rsync was not behaving i used nice to try and limit its cpu usage but no dice.
so i ran the command in a terminal with --status to see what it was getting hung up on.
a loaned behold it was the 1tb that rsync was told to exclude.
thinking i typed the command wrong i checked it and didn't see anything weird.
as it turns out the file name in the rsync command was spelt correctly but the file itself wasn't.
now it behaves as its supposed to. only downside now is that the ntfs driver for the backup drive is misbehaving and is taking up a lot of cpu usage.
i know people will sugest thst i swap it over to ext4 or something but i need the backup drive to be accessible on any device in the event my house burns down or something.
and since it also stores the backup of my media library with files in excess of 4gb, fat32 isn't an option so ntfs was my only choice.
if any of you boys have any suggestions with fstab mount options that could help with it then by all means suggest away, i have also tried big_writes to no avail.