com.atlassian.confluence.content.render.xhtml.migration.exceptions.UnknownMacroMigrationException: The macro 'next_previous_links2' is unknown.

Changing the Default Databases for BPMN and BPEL

When you use the Business Process profile in WSO2 EI, two separate databases are required for storing data specific to BPMN and BPEL. This is in addition to the default Carbon database. By default, the Business Process profile is shipped with embedded H2 databases for this purpose:

  • activiti.h2.db: For BPMN-specific data.
  • jpadb.h2.db: For BPEL-specific data.

These databases are stored inĀ theĀ <EI_HOME>/wso2/business-process/repository/databaseĀ directory.

For instructions on changing the default Carbon database, see Changing the Carbon Database in the WSO2 Product Administration Guide.

Given below are the steps you need to follow in order to change the default BPMN and BPEL databases.


Setting up the database

You can set up two databases of the following types:

Creating the datasource connection

AĀ datasourceĀ is used to establish the connection to a database. By default,Ā datasource connections for the BPEL and BPMN databases are configured in the activiti-datasources.xml and bps-datasources.xml files respectively. These datasource configurations point to theĀ default Ā H2 databases, which are shipped with the product. After setting up new databases to replace the default H2 databases, you can eitherĀ change the default configurations in the above-mentioned files orĀ configure newĀ datasources.

Creating theĀ datasourceĀ connection for the BPEL database

Follow the steps below.

  1. Open the <EI_HOME>/wso2/business-process/conf/datasources/bps-datasources.xmlĀ fileĀ and locateĀ theĀ <datasource>Ā configurationĀ element.

  2. You simply have to update theĀ urlĀ pointing to your database, theĀ usernameĀ and password required to access the database. See the following examples:

  3. Optionally,Ā you can update the configuration elements given below for your database connection.

    ElementDescription
    maxActiveThe maximum number of active connections that can be allocated at the same timeĀ from this pool. Enter any negative value to denote an unlimited number of active connections.
    maxWaitThe maximum number of milliseconds that the pool will wait (when there are no available connections) for a connection to be returned before throwing an exception. You can enter zero or a negative value to wait indefinitely.
    minIdleThe minimum number of active connections that can remain idle in the pool without extra ones being created, or enter zero to create none.

    testOnBorrow Ā 

    The indication of whether objects will be validated before being borrowed from the pool. If the object fails to validate, it will be dropped from the pool, and another attempt will be made to borrow another.
    validationQueryThe SQL query that will be used to validate connections from this pool before returning them to the caller.
    validationIntervalThe indication to avoid excess validation, and only run validation at the most, at this frequency (time in milliseconds). If a connection is due for validation but has been validated previously within this interval, it will not be validated again.
    defaultAutoCommit

    Specifies whether each SQL statement should be automatically committed when it is completed. It is recommended to disable auto committing by setting this property to true.

    For more information on other parameters that can be defined in the <EI_HOME>/wso2/business-process/conf/datasources/master-datasources.xml file, seeĀ Tomcat JDBC Connection Pool.

Creating the datasource connection for the BPMN database

Follow the steps below.

  1. Open the <EI_HOME>/wso2/business-process/conf/datasources/activiti-datasources.xmlĀ fileĀ and locate theĀ <datasource>Ā configuration element.

  2. You simply have to update the url pointing to your database, the user name and password required to access the database. See the following examples:

  3. Optionally,Ā you can update the configuration elements given below for your database connection.

    ElementDescription
    maxActiveThe maximum number of active connections that can be allocated at the same timeĀ from this pool. Enter any negative value to denote an unlimited number of active connections.
    maxWaitThe maximum number of milliseconds that the pool will wait (when there are no available connections) for a connection to be returned before throwing an exception. You can enter zero or a negative value to wait indefinitely.
    minIdleThe minimum number of active connections that can remain idle in the pool without extra ones being created, or enter zero to create none.

    testOnBorrow Ā 

    The indication of whether objects will be validated before being borrowed from the pool. If the object fails to validate, it will be dropped from the pool, and another attempt will be made to borrow another.
    validationQueryThe SQL query that will be used to validate connections from this pool before returning them to the caller.
    validationIntervalThe indication to avoid excess validation, and only run validation at the most, at this frequency (time in milliseconds). If a connection is due for validation but has been validated previously within this interval, it will not be validated again.
    defaultAutoCommit

    Specifies whether each SQL statement should be automatically committed when it is completed. It is recommended to disable auto committing by setting this property to true.

    For more information on other parameters that can be defined in the <EI_HOME>/wso2/business-process/conf/datasources/master-datasources.xml file, seeĀ Tomcat JDBC Connection Pool.

Creating database tables

To create the database tables, connect to the databases that you created earlier and run the scripts provided in the product pack.

Creating database tables in the BPEL databaseĀ 

SeveralĀ db scripts are provided to create the necessary tables in the BPEL database:

  • Create: These scripts are stored in the <EI_HOME>/wso2/business-process/dbscripts/bps/bpel/create directory.
  • Drop:Ā These scripts are stored inĀ theĀ <EI_HOME>/wso2/business-process/dbscripts/bps/bpel/dropĀ directory.
  • Truncate:Ā These scripts are stored inĀ theĀ <EI_HOME>/wso2/business-process/dbscripts/bps/bpel/truncateĀ directory.
  • Upgrade:Ā These scripts are stored inĀ theĀ <EI_HOME>/wso2/business-process/dbscripts/bps/bpel/upgradeĀ directory.

To create the necessary database tables:

  1. Connect to the database and run the above scripts. For example, shown below is how to create data in a MySQL database.

    mysql -u root -p -DBPS_DS < '<EI_HOME>/wso2/business-process/dbscripts/bps/bpel/create/mysql.sql';
  2. Restart the server.

Creating database tables in the BPMN databaseĀ 

SeveralĀ dbĀ scripts are provided to create the necessary tables in the BPMN database:

  • Create: These scripts are stored inĀ theĀ <EI_HOME>/wso2/business-process/dbscripts/bps/bpmn/createĀ directory.
  • Drop:Ā These scripts are stored inĀ theĀ <EI_HOME>/wso2/business-process/dbscripts/bps/bpmn/dropĀ directory.
  • Metadata:Ā These scripts are stored inĀ theĀ <EI_HOME>/wso2/business-process/dbscripts/bps/bpmn/metadataĀ directory.
  • Upgrade:Ā These scripts are stored inĀ theĀ <EI_HOME>/wso2/business-process/dbscripts/bps/bpmn/upgradeĀ directory.

To create the necessary database tables:

  1. Connect to the database and run the above scripts. For example, execute the following scripts toĀ createĀ data in aĀ MySQLĀ database.

    • activiti.mysql.create.engine.sql

    • activiti.mysql.create.history.sql

    • activiti.mysql.create.identity.sql
    • activiti.mysql.create.substitute.sql

    Shown below is how the script for creating identity data is executed:

    mysql -u root -p -DBPS_DS < '<EI_HOME>/wso2/business-process/dbscripts/bps/bpmn/create/activiti.mysql.create.identity.sql';
  2. Restart the server.

Create database tables when the server starts

You can create database tables automatically when starting the product for the first time by using theĀ -DsetupĀ parameter as follows:

  • For Windows: <EI_HOME>/wso2/business-process/bin/wso2server.bat -Dsetup

  • For Linux: <EI_HOME>/wso2/business-process/bin/wso2server.sh -Dsetup

com.atlassian.confluence.content.render.xhtml.migration.exceptions.UnknownMacroMigrationException: The macro 'next_previous_links' is unknown.