You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Starting Situation

  • JobScheduler executes jobs asynchroneously, i.e. the completion of a job or job chain takes place independently from the caller that launched a job or order.
  • There are use cases when the calling PowerShell script wants to receive execution results synchroneously:
    • A job is launched and the calling script should wait for completion of the job.
    • An order is launched and the calling script should wait for completion of the job chain.

Use Cases

Wait for execution of a temporary order

Adding ad hoc orders is a frequent use case, e.g. for testing purposes:

Import-Module JobScheduler
Use-JobSchedulerMaster http://localhost:4444

echo "begin of test script"

$order = Add-JobSchedulerOrder -JobChain /some_path/some_job_chain
While ( ( $order | Get-JobSchedulerOrder -NoCache ).StartTime )
{
	Start-Sleep -Seconds 10
}

$orderHistory = $order | Get-JobSchedulerOrderHistory
echo "order completed with state '$($orderHistory.State)' at '$($orderHistory.EndTime)'"


echo "end of test script"

Explanations

  • Line 1: The Import-Module statement is used if the JobScheduler CLI module is not loaded from a profile
  • Line 2: The Use-JobSchedulerMaster cmdlet is used for standalone scripts only. This is not reqired for use with PowerShell Jobs.
  • Line 6: Adds a temporary ad hoc orders to the specified job chain, see Add-JobSchedulerOrder.
    • The order identification is not specified but is generated by the JobScheduler Master.
    • The resulting $order object contains the order identification.
  • Line 7: a loop repeatedly checks if the order is completed
    • The newly added order is piped to the Get-JobSchedulerOrder cmdlet that returns and object with a StartTime property should the order be running.
    • A sleep interval reduces the frequency of checks for completion of the current order
  • Line 12: Permanent orders are permanently available from the JobScheduler memory. Temporary ad hoc orders are removed from the JobScheduler memory after completion. Therefore the temporary ad hoc orders is retrieved from the order history.
  • Line 13: The order history provides information about the order's end time and end state that can be used to identify successful or failed execution.

 

For better control of newly added orders it is recommended to create order objects like this:

$orders = ( 1..10 | Add-JobSchedulerOrder -JobChain /some_folder/some_job_chain -Immediate )
$orders | Remove-JobSchedulerOrder

Explanations

  • Line 1 adds 10 temporary ad hoc orders.
    • Consider use of the switch -Immediate to submit each order individually to the JobScheduler Master and to receive the newly created order identification immediately.
    • The result of the Add-JobSchedulerOrder cmdlet is assigned to a variable for later use.
  • Line 2 pipes the recently created orders to the Remove-JobSchedulerOrder cmdlet.

Identify temporary orders

Before acting on temporary orders it is recommended to identify the order objects like this:

$orders = Get-JobSchedulerOrder -NoPermanent
$orders.count

Explanations

  • Line 1 retrieves exclusively temporary ad hoc orders by use of the -NoPermanent switch.
    • Consider use of additional parameters such as -Directory and -JobChain to further restrict the number of orders.
    • The result of the Get-JobSchedulerOrder cmdlet is assigned to a variable for later use.
  • Line 2 displays the number of orders that meet the conditions.

Suspend temporary orders

Suspending temporary orders allows to keep such orders for further investigation. Suspended orders are not carried out by the JobScheduler Master:

Get-JobSchedulerOrder -NoPermanent | Suspend-JobSchedulerOrder

Explanations

  • In a pipelined operation temporary orders are retrieved and suspended, see Suspend-JobSchedulerOrder.
  • Consider use of additional parameters such as -Directory and -JobChain to further restrict the number of orders.

 

$orders = Get-JobSchedulerOrder -NoPermanent
$orders.count
$orders
$orders | Suspend-JobSchedulerOrder

Explanations

  • Line 1 retrieves exclusively temporary ad hoc orders by use of the -NoPermanent switch.
    • Consider use of additional parameters such as -Directory and -JobChain to further restrict the number of orders.
    • The result of the Get-JobSchedulerOrder cmdlet is assigned to a variable for later use.
  • Line 2 displays the number of orders that meet the conditions.
  • Line 3 displays the $order variable, i.e. the list of orders.
  • Line 4 pipes the list of orders to the Suspend-JobSchedulerOrder cmdlet,

Remove temporary orders

Removing temporary orders prevents JobScheduler Master from executing further job nodes of a job chain for that order.:

Get-JobSchedulerOrder -NoPermanent | Remove-JobSchedulerOrder

Explanations

  • In a pipelined operation temporary orders are retrieved and removed, see Remove-JobSchedulerOrder.
  • Consider use of additional parameters such as -Directory and -JobChain to further restrict the number of orders.
  • Tasks that are currently running for an order are not affected by this operation. Such tasks will continue until completion. Consider use of the Stop-JobSchedulerTask cmdlet to kill running tasks.

 

  • No labels