7.7.x to 7.8.0. It covers these use cases:
- For administrators and developers: Database Updates
- For administrators and developers: Full Distribution Update
- For administrators: Standalone Web Application
- For administrators and developers: REST API Date Format
- For administrators and developers: Failed Jobs Retry Configuration
- For developers: Incident Handler
- For administrators: Batch processing for database operations
- Perform a batch modification in Cockpit
- Instance Restart in Cockpit
- History Cleanup View in Cockpit
- Extending of Locks on External Tasks
- Full Timezone Support for Webapps
- Default Retry Time Cycle Configuration and Retry Intervals
- Improved performance for database operations
Database Updates
Every ASEE Flow installation requires a database schema update.Procedure
-
Check for available database patch scripts for your database that are within the bounds of your update path.
Locate the scripts at
$DISTRIBUTION_PATH/sql/upgradein the pre-packaged distribution (where$DISTRIBUTION_PATHis the path of an unpacked distribution) or in the ASEE Flow Artifact Repository. We highly recommend to execute these patches before updating. Execute them in ascending order by version number. The naming pattern is$DATABASENAME_engine_7.7_patch_?.sql. -
Execute the corresponding update scripts named
$DATABASENAME_engine_7.7_to_7.8.sql
-
We highly recommend to also check for any existing patch scripts for your database that are within the bounds of the new minor version you are updating to. Execute them in ascending order by version number. Attention: This step is only relevant when you are using an enterprise version of ASEE Flow, e.g.,
7.8.XwhereX > 0. The procedure is the same as in step 1, only for the new minor version.
Full Distribution
This section is applicable if you installed the Full Distribution with a shared process engine. The following steps are required:- Update the ASEE Flow libraries and applications inside the application server
- Migrate custom process applications
$DISTRIBUTION_PATH.
ASEE Flow Libraries and Applications
Please choose the application server you are working with from the following list:Custom Process Applications
For every process application, the ASEE Flow dependencies should be updated to the new version. Which dependencies you have is application- and server-specific. Typically, the dependencies consist of any of the following:camunda-engine-springcamunda-engine-cdicamunda-ejb-client- …
Standalone Web Application
If the standalone web application is in use, the currentwar artifact must be replaced by its new version.
If a database other than the default H2 database is used, the following steps must be taken:
- Undeploy the current version of the standalone web application
- Update the database to the new schema as described in the database update section
- Reconfigure the database as described in the installation section
- Deploy the new and configured standalone web application to the server
REST API Date Format
This section is applicable if you use the ASEE Flow engine REST API. The default date format used in the REST API requests and responses has changed fromyyyy-MM-dd'T'HH:mm:ss to yyyy-MM-dd'T'HH:mm:ss.SSSZ (now includes second fractions and timezone).
The ASEE Flow webapps support the new format by default.
In case some custom REST clients rely on the old date format, choose one of the two following options:
- Update REST clients to use the new format.
- Configure custom date format for ASEE Flow REST API (explained in detail in the Custom Date Format) section.
Failed Jobs Retry Configuration
It’s no longer necessary to enable the retry time cycle configuration for failed jobs. This is the default behaviour from now on. You should clean up the following lines from the process engine configuration file to be consistent with this behaviour:Incident Handler
This section concerns the Java API and the interfaceorg.camunda.bpm.engine.impl.incident.IncidentHandler, that is a part of the internal API.
The return type of IncidentHandler#handleIncident has been changed from void to Incident. The API expects that, in case an incident was created, it is returned by the method,
otherwise the method can return a null value.
In case there are custom incident handlers implementing that interface, the method handleIncident(...) should be adjusted.
Batch processing for database operations
Starting with version 7.8, ASEE Flow uses batch processing to execute SQL statements over the database. The old (not batch) processing mode can be configured like this:- Batch processing is not working for Oracle versions earlier than 12. If you’re using one of these versions you would need to disable batch processing in ASEE Flow configuration to switch back to the old simple mode.
-
Statement timeout (configured by
jdbcStatementTimeoutparameter) is not working in combination with batch mode on MariaDB and DB2 databases. So if you’re usingjdbcStatementTimeoutconfiguration on the listed databases, consider disabling the batch mode.