Skip to content

RClone options tuning #6858

@sanderegg

Description

@sanderegg

Rclone currently uses the following parameters:

rclone  --transfers 5 --use-mmap --buffer-size 0M --use-json-log --stats 200ms --verbose sync mys3:project/node/workspace/ test/ --links

A few things here are questionable:

  • --buffer-size 0M this one is something that should not be, the default is 16M and is almost never hit. it is a performance hit.
  • use-mmap this one seems pretty useless and even maybe problematic
  • --transfers 5 if we have many small files, this is very limiting. Nevertheless this is probably also directly linked to the amount of models

We have some examples from TN where the dataset has >300k files and total size >170GiB.

tested

rclone --transfers 32 with TN dataset brought the download time from 1 hour 30 to 15 minutes!

  • need to check if this could be set for normal operation

Metadata

Metadata

Labels

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions