mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-21 16:16:04 +00:00
Improve reliability of file transfers
This commit is contained in:
parent
c9c4d02f0d
commit
8bb9361359
2 changed files with 4 additions and 0 deletions
|
@ -29,9 +29,12 @@ aws {
|
||||||
region = "us-east-1"
|
region = "us-east-1"
|
||||||
client {
|
client {
|
||||||
uploadChunkSize = 209715200
|
uploadChunkSize = 209715200
|
||||||
|
uploadMaxThreads = 4
|
||||||
}
|
}
|
||||||
batch {
|
batch {
|
||||||
maxParallelTransfers = 1
|
maxParallelTransfers = 1
|
||||||
|
maxTransferAttempts = 5
|
||||||
|
delayBetweenAttempts = '120 sec'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
executor {
|
executor {
|
||||||
|
|
|
@ -8,6 +8,7 @@ This global configuration includes the following tweaks:
|
||||||
- Enable retries by default when exit codes relate to insufficient memory
|
- Enable retries by default when exit codes relate to insufficient memory
|
||||||
- Allow pending jobs to finish if the number of retries are exhausted
|
- Allow pending jobs to finish if the number of retries are exhausted
|
||||||
- Increase the amount of time allowed for file transfers
|
- Increase the amount of time allowed for file transfers
|
||||||
|
- Improve reliability of file transfers with retries and reduced concurrency
|
||||||
- Increase the default chunk size for multipart uploads to S3
|
- Increase the default chunk size for multipart uploads to S3
|
||||||
- Slow down job submission rate to avoid overwhelming any APIs
|
- Slow down job submission rate to avoid overwhelming any APIs
|
||||||
- Define the `check_max()` function, which is missing in Sarek v2
|
- Define the `check_max()` function, which is missing in Sarek v2
|
||||||
|
|
Loading…
Reference in a new issue