1
0
mirror of https://github.com/rclone/rclone.git synced 2025-12-15 15:53:41 +00:00

Version v1.70.0

This commit is contained in:
Nick Craig-Wood
2025-06-17 17:52:35 +01:00
parent 92fea7eb1b
commit 9d464e8e9a
65 changed files with 14873 additions and 1444 deletions

View File

@@ -719,6 +719,65 @@ Properties:
- Type: int
- Default: 16
#### --azureblob-copy-cutoff
Cutoff for switching to multipart copy.
Any files larger than this that need to be server-side copied will be
copied in chunks of chunk_size using the put block list API.
Files smaller than this limit will be copied with the Copy Blob API.
Properties:
- Config: copy_cutoff
- Env Var: RCLONE_AZUREBLOB_COPY_CUTOFF
- Type: SizeSuffix
- Default: 8Mi
#### --azureblob-copy-concurrency
Concurrency for multipart copy.
This is the number of chunks of the same file that are copied
concurrently.
These chunks are not buffered in memory and Microsoft recommends
setting this value to greater than 1000 in the azcopy documentation.
https://learn.microsoft.com/en-us/azure/storage/common/storage-use-azcopy-optimize#increase-concurrency
In tests, copy speed increases almost linearly with copy
concurrency.
Properties:
- Config: copy_concurrency
- Env Var: RCLONE_AZUREBLOB_COPY_CONCURRENCY
- Type: int
- Default: 512
#### --azureblob-use-copy-blob
Whether to use the Copy Blob API when copying to the same storage account.
If true (the default) then rclone will use the Copy Blob API for
copies to the same storage account even when the size is above the
copy_cutoff.
Rclone assumes that the same storage account means the same config
and does not check for the same storage account in different configs.
There should be no need to change this value.
Properties:
- Config: use_copy_blob
- Env Var: RCLONE_AZUREBLOB_USE_COPY_BLOB
- Type: bool
- Default: true
#### --azureblob-list-chunk
Size of blob list.