...
Info |
---|
The CLI references “skysync.” This is expected. |
Concurrent jobs is the number of transfers that will operate in parallel. The default number of concurrent jobs is 6; the maximum number of concurrent jobs is 20. It is very important to note that increasing the number of concurrent jobs does not always equal faster/better transfer performance. There is a long list of concepts that have to be taken into account.
...
Parameter | Description |
---|---|
current | Current number of transfers that will operate in parallel |
max | Maximum number of transfers that will operate in parallel |
List Concurrent Jobs
Command
Code Block |
---|
skysync-cli performance concurrent_transfers show --output-json |
Example
...
result
Code Block |
---|
[
{
"concurrent_jobs": {
"current": 6,
"max": 8
}
}
]
|
Updating the Current Value
Command
...
Code Block |
---|
skysync-cli performance concurrent_transfers update --current={#} |
or
Code Block |
---|
skysync-cli performance concurrent_transfers update -c {#} |
Command with examples
...
Code Block |
---|
skysync-cli performance concurrent_transfers update --current=6 |
Code Block |
---|
skysync-cli performance concurrent_transfers update -c 6 |
Updating the Max Value
Command
...
Code Block |
---|
skysync-cli performance concurrent_transfers update --max={#} |
or
Code Block |
---|
skysync-cli performance concurrent_transfers update -m {#} |
...
Command with examples
Code Block |
---|
skysync-cli performance concurrent_transfers update --max=8 |
Code Block |
---|
skysync-cli performance concurrent_transfers update -m 8 |
Updating Both Parameters
There are two commands that can be used to update both parameters. Note that neither option is required, but at least one option must be included. The current value cannot be larger than the max value.
...
Command
...
Code Block |
---|
skysync-cli performance concurrent_transfers update --current={#} --max={#} |
or
...
Code Block |
---|
skysync-cli performance concurrent_transfers update -c {#} -m {#} |
Command with examples
...
Code Block |
---|
skysync-cli performance concurrent_transfers update --current=6 --max=8 |
Code Block |
---|
skysync-cli performance concurrent_transfers update -c 6 -m 8 |
Info |
---|
When concurrent jobs are set through the CLI, the changes will be reflected on the Performance page in the Settings once the page is refreshed. |
...