Versions Compared

Key

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

...

  • A continued Master will immediately start any enqueued tasks.
  • Task starts that have been scheduled for a point in time when the Master was paused will be carried out immediately.

Increasing the timeout for JobScheduler Master responses

The JobScheduler CLI uses a default of 15s for exected responses of a Master. In situatons with a high load this value could be increased:

Code Block
languagepowershell
Set-Option -WebRequestTimeout 60000

Explanations

  • The Set-Option cmdlet is used to increase the timeout to 60 seconds.
  • Values are specified in milliseconds.

Killing running tasks

See PowerShell CLI - Use Cases - Kill a number of tasks

...