Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Image RemovedImage Added

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.

Parameters

Updating the concurrent jobs setting is done using the following two parameters. At least one of the parameters must be used in update command, and the values must be greater than 0.

Parameter

Description

current
c

Current number of transfers that will operate in parallel

max
m

Maximum number of transfers that will operate in parallel

List Concurrent Jobs

Command

skysync-cli performance concurrent_transfers show --output-json

 

Example Result

Code Block
[
  {
    "concurrent_jobs": {
      "current": 6,
      "max": 8
    }
  }
]

Updating the Current Value

Commands

skysync-cli performance concurrent_transfers update --current={#}

skysync-cli performance concurrent_transfers update -c {#}

Examples

skysync-cli performance concurrent_transfers update --current=6

skysync-cli performance concurrent_transfers update -c 6

Updating the Max Value

Commands

skysync-cli performance concurrent_transfers update --max={#}

skysync-cli performance concurrent_transfers update -m {#}

Examples

skysync-cli performance concurrent_transfers update --max=8

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.

Commands

1

skysync-cli performance concurrent_transfers update --current={#} --max={#}

2

skysync-cli performance concurrent_transfers update -c {#} -m {#}

Examples

skysync-cli performance concurrent_transfers update --current=6 --max=8

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.