...
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. |
...