Is --drive-chunk-size same as chunk_size

I saw this link on how to make google drive uploads quicker

Blockquote
Your chunk size is too low. Should be at least 256m

does changing chunk_size in rclone config advance setting to 256m the same thing?

yes, same thing

this is a bit confusing.
you can set that parameter and value three different ways.

  1. command line rclone sync source dest --drive-chunk-size 256m
  2. in the config file as chunk_size = 256m
  3. environment variable for a script RCLONE_DRIVE_CHUNK_SIZE = 256m

if I use the second option do I need need to add the "--drive-chunk-size 256m" in the command script when mounting?

no, as only one of the three is needed.

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.