You are viewing the documentation for Blueriq 13. Documentation for other versions is available in our documentation directory.
Scheduler maintenance REST API is designed to provide the possibility to interfere when running blueriq on single or multi-nodes environments.
This REST API must be used when:
- Servers shutdowns occur unexpectedly on multi-nodes environments. In this situation the abandoned tasks have to be recovered by calling Cancel All Started Tasks Endpoint.
- Application name and/or version is changed in Blueriq Studio. In this situation the changes are propagated to the database by calling the Update Application Name and Version Endpoint.
These two endpoint are described below:
Cancel All Started Tasks
Situation
Cancel started tasks is the mechanism of recovering the abandoned tasks that were not completed due to unexpected runtime nodes shutdowns.
Blueriq provides two ways for enabling this mechanism:
- Setting the property blueriq.processengine.cancel-started-tasks to true on the process module. This is supported also in previous Blueriq versions and it is designed for single node environments. For more information about process module properties please consult Process Module Properties.
- Using the cancel started tasks endpoint described below. It is designed for multi-nodes environments and overrules the blueriq.processengine.cancel-started-tasks property.
Setting the property blueriq.processengine.cancel-started-tasks to true when running in a multi-node environment might cause unexpected behavior. For example while the cancellation of started tasks triggered on one runtime node is running, a specific task could be still in progress on another runtime node and it might be reopen.
When unexpected runtime nodes shutdowns occur:
- It is recommended to use the endpoint in multi-node environments.
- In single node environments either the endpoint or the property can be used.
Description
By calling this endpoint, all started manual tasks across all nodes will be reset to open and all started automatic tasks will executed.
Update Application Name And Version
Situation
This endpoint is needed in case you already ran a process enabled project and find out that you have to rename the model name and/or version. Renaming the model in studio doesn't change the cases and jobs references to the model in the database; they still use the old, previous model. The result is that the previously created timers cannot be used anymore, priority algorithm won't be called anymore and tasks with expiration will not expire anymore. To get it back working normally the application name and/or version have to be changed to the new name and/or version (as provided in the studio model) in the database. This can be done by using this endpoint.
Description
By calling one of these endpoint, the application ids for cases matching the application name from the url will be updated with new values. Every job registered to these cases will be updated as well.
Validations
- Current application id consists of application name and application version. Format of the application id is: applicationName:applicationVersion.
- Current application id is mandatory, case id is optional.
If case id is specified, only one case will be updated. If case id is not specified all cases matching the application id will be updated. - At least new name or new version must be specified in the request body.
Steps:
- Find all cases matching the application id (from the url). If case id is specified, find the case by it's id.
- Update application id for the cases from step 1, with the new data sent in the request body. Name or version or both can be updated, depending on what is specified in the request body.
- Get the jobs for the cases and update them accordingly.
Request examples:
Update application name
The application ids, for the cases with the current application id "export-TestOldProject:0.0-Trunk", are updated to "export-TestNewProject:0.0-Trunk".
Update application version
The application ids, for the cases with the current application id "export-TestOldProject:0.0-Trunk", are updated to "export-TestOldProject:0.1-Trunk".Update application id (both name and version)
The application ids, for the cases with the current application id "export-TestOldProject:0.0-Trunk", are updated to "export-TestNewProject:0.1-Trunk".- Update application id for a specific case
- Update application name
The application id, for the case with the current application id "export-TestOldProject:0.0-Trunk" and case id 1, is updated to "export-TestNewProject:0.0-Trunk".
- Update application version
The application id, for the case with the current application id "export-TestOldProject:0.0-Trunk" and case id 1, is updated to "export-TestOldProject:0.1-Trunk".
- Update application id
The application id, for the case with the current application id "export-TestOldProject:0.0-Trunk" and case id 1, is updated to "export-TestNewProject:0.1-Trunk".
- Update application name
Usage
The following steps should be followed for using this endpoint:
- Make sure that there exists a runtime user with a role that has the permission SCHEDULER_MANAGER.
- Check that blueriq.oauth2.client-id and blueriq.oauth2.secret are defined in application.properties file. If they are missing, please define them.
Access Runtime Swagger Interface:
- Fill the username and the password and press Generate Token in order to obtain a new token.
- Expand scheduler.
- Expand the endpoint you want to use. Available options are:
- PUT /scheduler/maintenance/tasks/cancelStarted
- PUT /scheduler/maintenance/applications/{currentApplicationId}
- Specify the request parameters.
- Press Try it out!