drmike
100% Tier-1 Gogent
If you are like most of us, rsync is a tool you use far too much.
One issue I run into from time to time is rsync saturating a connection and reducing performance of a network for users (high CPU load).
Rsync has a built in CLI switch for regulating bandwidth usage:
--bwlimit=5000
Appending that to your current rsync command should limit you to 5MB of throughput on the file transfer.
Typically something like this:
rsync --bwlimit=5000 [rest of CLI command]
One issue I run into from time to time is rsync saturating a connection and reducing performance of a network for users (high CPU load).
Rsync has a built in CLI switch for regulating bandwidth usage:
--bwlimit=5000
Appending that to your current rsync command should limit you to 5MB of throughput on the file transfer.
Typically something like this:
rsync --bwlimit=5000 [rest of CLI command]