Versions Compared

Key

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

Introduction

The JS7 - Try / -Catch Instruction can be used for error handling in a workflow. If any job within a Try Instruction block fails then the jobs available from the Catch Instruction block will be executed. If no an error occurs does not occur in the Try Instruction block then the jobs in the Catch Instruction block are skipped. If a job in a Catch Instruction block also fails then the order will be considered being to have failed. Nested try/catch blocks can be used for more complex error handling.

...

The jsTryCatch workflow demonstrates the use of Try/Catch Instruction blocks for error handling. In this example, the job job2_b in the Try Instruction block generates a random number. If an even value is generated then no an error occurs does not occur and no error handling with the Catch Instruction block is not applied. If an odd value is generated then the jobs in the Catch Instruction block will be executed. You might have to run this workflow a number of times to find demonstrate the different error handling behavior with errors being caused by the random numbers.

To execute the workflow in the 04_ErrorHandling folder please follow the steps described below steps:

  1. Click the 04_ErrorHandling folder and expand the jsTryCatch workflow.



  2. To add an order to the workflow click the action menu of the workflow and use Add Order from the drop-down menu.



  3. When clicking Add Order a popup window will appear.
  4. You can add an Order ID or leave the Order ID value empty, it will then use a default Order ID. Click the Submit button.



  5. To check the status of the order click the name of the workflow. This will make the Order History panel appear.



  6. From the Order History panel you can verify that the order is successful or  or has failed - depending on random numbers generating number generation errors. Click the Order ID to see log output created by jobs executed for this order.



  7. A log view window will open and the order log will be displayed. This log contains output to stdout/stderr from all jobs executed by the order.
  8. You can download the log file by clicking the Download button from in the upper right-hand corner of the log view window. Also, you can expand and collapse the individual job output using the chevron icons from in the upper left upper -hand corner of the log view window.

...