-
Notifications
You must be signed in to change notification settings - Fork 32
Closed
Labels
a:dynamic-sidecardynamic-sidecar servicedynamic-sidecar service
Milestone
Description
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 0Mthis one is something that should not be, the default is 16M and is almost never hit. it is a performance hit.use-mmapthis one seems pretty useless and even maybe problematic--transfers 5if 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
a:dynamic-sidecardynamic-sidecar servicedynamic-sidecar service