Scope
- The following question has been asked:
I need to know if there is a way to kill a task that is running, in a chosen moment. Example: at 12:30pm if any task that is running in a specific job chain, it will be immediately killed. Is there a way to do this? Can I make a scheduled job that can do this?
- Reference: https://sourceforge.net/p/jobscheduler/discussion/486122/thread/8de60ec3/
- The solution outline includes a job chain that can be parameterized with orders for invididual points in time and a list of other job chains that should be terminated.
Solution
- Download: kill_tasks.zip
- The files included with the archive should be usable with Windows and Unix systems.
- Extract the archive to the
./config/live
folder of your JobScheduler installation. - The archive will extract the files included to a folder
kill_tasks
, therefore all objects will be located in the./config/live/kill_tasks
folder. - You can store the sample files to a different folder, however, you would have to adjust the
job_chains
parameter from thekill_tasks
order, see below.
Components
- The test chain
run_infinitely
: this chain implements a test job that runs infinitely and can be started in multiple instances.- One job
run_infinitely
is included that executes a number ofping
commands to simulate a long running job. The job is configured to run in multiple instances if more than one order is active for the job chain. - One order
run_infinitely
is included that starts therun_infinitely
job chain. This order can be started manually by using JOC. Additional orders can be added by use of theAdd Order
context menu item with JOC.
- One job
- The kill chain
kill_tasks_in_job_chain
: this chain implements the killing of tasks for any job chains.- One job
kill_tasks_in_job_chain
is included that implements the JobScheduler <kill_task> XML command. - One order
kill_tasks_in_job_chain
is included that starts thekill_tasks_in_job_chain
job chain. This order can be started manually by using JOC.- This order makes use of two possible parameters:
job_chains
: This parameters accepts one or multiple job chain paths.- Specify the full path including all folder names of the job chain that runs tasks that should be terminated.
- Separate multiple job chain paths by use of a semicolon ";".
timeout
: This parameter is available for Unix systems only and specifies a timeout in seconds.- The job
kill_tasks_in_job_chain
will first send a SIGTERM signal to any tasks of therun_infinitely
job. - Should the
run_infinitely
job not be terminated after the timeout expires then a SIGKILL signal is sent to the tasks. - For Windows a SIGTERM signal is not available and therefore this parameter cannot be used or is used with a value 0.
- The job
- This order makes use of two possible parameters:
- One job
Usage
- Sample Usage
- Start the order
run_infinitely
for the job chain with the same name. Add an a additional order for the test chain, e.g. by using JOC with theAdd Order
context menu item.- The job
run_infinitely
from the job chain with the same name should be executed in two tasks (visible from JOC by clicking the job).
- The job
- Start the order
kill_tasks
from thekill_tasks_in_job_chain
job chain.- The order will cause all tasks from the
run_infinitely
job chain to be terminated. - The order included with the above download archive specifies the path
/issues/kill_tasks/run_infinitely
for the job chain to be terminated. Modify this parameter to a different job chain path if your test job chain is located elsewhere.
- The order will cause all tasks from the
- Start the order
- Individual Usage
- Use any job chain path with the
job_chains
parameter of thekill_tasks_from_job_chain
order. - Specify a value for the
timeout
parameter to cause the tasks to be terminated to receive a SIGTERM signal first and a SIGKILL signal after timeout expiration. This functionality is available for Unix systems only.
- Use any job chain path with the
Implementation
Job Chain: kill_tasks_in_job_chain
The job chain is straightforward, only one job is included:
Job: kill_tasks_in_job_chain
The job implements use of the JobScheduler API to retrieve information about running tasks and to kill tasks accordingly: