This site contains the documentation that is relevant to older WSO2 product versions and offerings.
For the latest WSO2 documentation, visit https://wso2.com/documentation/.

Changing the Default Broker Database

When you use the Message Broker profile in WSO2 EI, a separate database is required for storing data specific to the broker. This is in addition to the default /wiki/spaces/ADMIN5xx/pages/22151545. By default, the EI Message Broker is shipped with an embedded H2 database (WSO2MB_DB.ht.db) for this purpose. These databases are stored in the  <EI_HOME>/wso2/broker/repository/database  directory.

For instructions on changing the default Carbon database, see /wiki/spaces/ADMIN5xx/pages/22151545 in the WSO2 Product Administration Guide.

Given below are the steps you need to follow in order to change the default broker-specific database.


Setting up the database

You can set up one of the following databases for storing broker-specific data:

Creating the datasource connection

A datasource is used to establish the connection to a database. By default, WSO2_CARBON_DB datasource is configured in the master-datasources.xml file for the purpose of connecting to the default  H2 database, which stores registry and user management data. 

After setting up the MySQL database to replace the default H2 database, either change the default configurations of the WSO2_CARBON_DB datasource, or configure a new datasource to point it to the new database as explained below.

Follow the steps below to change the type of the default WSO2_CARBON_DB datasource.

  1. Open the <EI_HOME>/wso2/broker/conf/datasources/master-datasources.xml file and locate the <datasource> configuration element.

  2. You simply have to update the url pointing to your MySQL database, the username and password required to access the database and the MySQL driver details as shown below.

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

    ElementDescription
    urlThe URL of the database. The default port for MySQL is 3306
    username and passwordThe name and password of the database user
    driverClassNameThe class name of the database driver
    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 false.

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

Updating other configuration files

  1. Open the <EI_HOME>/wso2/broker/conf/broker.xml file. This is the root configuration file of the EI Message Broker profile. The changes made to this file must be done in all the broker nodes.
  2. In the broker.xml file we need to use the Oracle message store and Andes context store. To do this, uncomment or add the following configuration.

    ...
    <messageStore class="org.wso2.andes.store.rdbms.RDBMSMessageStoreImpl">
               <property name="dataSource">WSO2MBStoreDB</property>
    </messageStore>
    
    <andescontextStore class="org.wso2.andes.store.rdbms.RDBMSAndesContextStoreImpl">
               <property name="dataSource">WSO2MBStoreDB</property>
    </andescontextStore>

    The elements in the above configuration are described below.

    • The fully qualified name of the respective implementation class should be defined under the class attributes of messageStore and andesContextStore elements. This implementation class will be used by the broker to persist relevant information.

    • The <property> elements are used to define different properties for each store. The minimal property for starting each store is the dataSource property. Depending on the implementation, the required properties may differ.

Creating database tables

To create the database tables, connect to the database that you created earlier and run the following scripts:Â