I am performing a sync from an FTP source location to a s3 target. With these parameters below, but the transfer rate is very low, below 3 Mb / s could you help me?
I am performing a sync from an FTP source location to a s3 target. With these parameters below, but the transfer rate is very low, below 3 Mb / s could you help me?
How are you measuring the transfer?
Rclone measures transfers in Mega Bytes /s normally.
Try transferring from the FTP server to your local disk - what sort of speed do you get there?
--drive-chunk-size=512M --drive-upload-cutoff=1G
Remove these options as you aren't using the google drive backend
--buffer-size=1G
This seems excessive? 1GB of memory per transfer? I'd remove it completely as the default of 16MB works quite well.
rclone is going to attempt to transfer as fast as your source can provide the data and the destination can accept it. Unless you’ve deliberately limited rclone it will be attempting at the highest rate per connection. You may want to check the bandwidth from your client to both the S3 and the ftp source. Your client will download locally while uploading to the S3 bucket so the bottleneck is somewhere there.