I just want faster upload speeds. I usually get up to 15mb/s up with my ISP and with rclone and uploading i only get 1mb/s up. I would expect maybe up to 5 with my speeds
What is your rclone version (output from rclone version)
rclone v1.55.1
Which OS you are using and how many bits (eg Windows 7, 64 bit)
os/type: linux
os/arch: arm
go/version: go1.16.3
go/linking: static
go/tags: none
Which cloud storage system are you using? (eg Google Drive)
OneDrive
The command you were trying to run (eg rclone copy /tmp remote:tmp)
So idk the speeds with the official client. It doesnt give me a speed indicator but it uploads to what it seems a bit faster though the client than rclone.
Using the --onedrive-chunk-size flag ends up killing the process after so long. Unsure why. Using -vv doesnt say anything, just midway though the upload just abruptly says 'Killed'
Oh sorry I was using --onedrive-chunk-size 200
Yeah i was trying to figure it out and realized it said its written in memory and my device doesnt have that much hence the crash
Windows tells me Im getting 18mb/s up through the client. It isnt good im testing on windows and linux but I would think id get better speeds with rclone on linux. The other device is a raspberrypi but I know it uploads faster for my media server for sure with at least 5 up there
Yeah that might be a problem. Maybe tri with '--onedrive-chunk-size 40M' it's a multiple and not that big of a number. If you still run out of RAM try 20M which would be double the size of the default 10M.
If Windows task manager shows 18mbps equals 2.25MBps, so it might also be a unit interpretation error as I believe rclone shows bytes and not bits in speeds (might be wrong) Have you run a speedtest on your raspberry device to see what real internet speeds you can get?
I have found that you generally get best speeds to OneDrive with the default parameters. You may sometimes get better performance if you have checkers=16 (for a short while). You can see more details in this post:
You really need to have a special situation to start tweaking the parameters (like the number of transfers).
What are the characteristics of your data? How many folders? How many files in each? Typical file size? Total size? How many of the folders and files are already present in the target (to be checked and then skipped)?
Interesting. I like to rather have 1 transfer at a time that way it just focuses on 1 upload. I know rclone does its checks before copying or any other command in case for errors but i rather have an error with 1 file than say 4.
Idk how much but for now, Id say 2tb of data. I wouldnt say a lot of sub folders but most are my movie backups i ripped from my library. So id say something like:
Movies>2006> (multiple movies within the year) > movie.mp4 w/ maybe a poster
Files range between 800mb-3gb.
Im initially starting from a fresh account and uploading it to the cloud.
Great, it seems like you already have found the optimal settings for the job. These are my thoughts for inspiration:
2 TByte data with app. 1GByte per file, that is app. 2000 files, so the default of 8 checkers is fine. If you primarily had many folders with small files, then more checkers might be better.
Your 15 Mbit/s connection has a theoretical max. upload around 1.5 MByte/s (using 8 bit/byte + 25% overhead). My rule of thumb is to divide by 10.
You are seeing 1.6 Mbyte/s, so 1 transfer is enough to saturate your connection. This is sufficient because you primarily have large files (e.g. videos), you would need more transfers if you had many small files (e.g. photos or office documents) or a faster connection. Repeating myself for new readers: Using more than 4 transfers may trigger OneDrive throttling that will be slower than 4 transfers.
I fully agree, in your situation it is a good idea to reduce transfers to 1 (or maybe 2).
One thing I do not understand is your --max-transfer=1G when your files are between 0.8 and 3 GByte - I guess it is just for your initial testing.
Thanks for the suggestions. Still learning a lot with this app and its the best for remote setups.
So i have it set to this right now but will change to 5G or higher because I have an ongoing script that runs that I want to check the time of day and if its lets say midnight, I want it to start running backups til 12 in the afternoon. I have it as a soft cutoff flag as well . Once it uploads the 1G, itll recheck the time, and if its within the time still, keep uploading!