1
0
mirror of https://github.com/rclone/rclone.git synced 2025-12-10 21:33:27 +00:00

docs: s3: clarify multipart uploads memory usage

Clarified phrasing to avoid confusion. Fixed a typo.

Fixes #8525
This commit is contained in:
SublimePeace
2025-11-03 17:35:33 +01:00
committed by GitHub
parent d34ba258b0
commit c41d0f7d3a

View File

@@ -685,9 +685,9 @@ The chunk sizes used in the multipart upload are specified by
`--s3-chunk-size` and the number of chunks uploaded concurrently is `--s3-chunk-size` and the number of chunks uploaded concurrently is
specified by `--s3-upload-concurrency`. specified by `--s3-upload-concurrency`.
Multipart uploads will use `--transfers` * `--s3-upload-concurrency` * Multipart uploads will use extra memory equal to: `--transfers` ×
`--s3-chunk-size` extra memory. Single part uploads to not use extra `--s3-upload-concurrency` × `--s3-chunk-size`. Single part uploads do not
memory. use extra memory.
Single part transfers can be faster than multipart transfers or slower Single part transfers can be faster than multipart transfers or slower
depending on your latency from S3 - the more latency, the more likely depending on your latency from S3 - the more latency, the more likely