Integrator Execution status codes
Execution states
The following states are possible after an Integrator execution.
Numeric Code | String Code | Description |
0 | Queued | The Execution is present in the {@link IExecutor Executor} but not yet running. |
5 | Running | The Execution is currently being executed and still running. |
6 | Paused | The Execution is currently being executed and still running. |
10 | Completed successfully | The Execution finished without encountering any errors or warnings. Everything is perfect. This is how things should be! |
20 | Completed with Warnings | The Execution is finished and has encountered one or more warnings indicating that there are some problem within the data causing some data not to be processed successfully. No structural problems (errors) occurred. |
30 | Completed with Errors | The Execution is finished and has encountered one or more errors causing parts of it to fail. Nevertheless the execution finished trying to execute all of its parts. Note: This status can only occur if failOnError is false (set by default in the configuration file config.xml). |
40 | Failed | The Execution has encountered an unrecoverable error and thus was terminated premature for internal fault reasons. Some parts of it may not have been executed. Note: If failOnError is true (set by default in the configuration file config.xml), this is the status returned, when any error occurs within the execution. |
49 | Stopping | The Execution continues while cleanups are being processed by clicking the "Stop" button once. |
50 | Stopped | The Execution was terminated prematurely, e.g. after clicking the "Stop" button a second time while in the stopping state. Some parts were executed, others were not. |
54 | Interrupting | The Execution was interrupted by user intervention |
55 | Interrupted | The Execution was interrupted by user intervention |
60 | Aborted | The Execution was canceled by {@link IExecutor#stop(Long) user intervention} before it reached status running. No action was done by it. An aborted execution can NOT be reactivated and started again. |
70 | Invalid | The Execution is not valid and thus will not be executed. This indicates that the configuration of at least one of the involved components is faulty, so that this component cannot be created and initialized. |
Updated April 8, 2025