Unknown macro: {next_previous_links}
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Current »

A datasource is a connection set up to a storage of data, such as a database or a data file, from a server. A datasource provides information that a server can use to connect to a a storage of data. 


Enabling datasource management 

Datasource management is provided by the following feature in the WSO2 feature repository. 

Name : WSO2 Carbon - datasource management feature 
Identifier: org.wso2.carbon.datasource.feature.group

If datasource management capability is not included in your product by default, add it by installing the above feature. For instructions on the datasource management feature, see Feature Management.

Adding datasources  

If the datasource management feature is installed in your WSO2 product instance, you can add datasources that allow the server to connect to databases and other external data stores.

Follow the steps below to add a datasource:

  1. Log into the DAS Management Console. In the Configure tab, click Datasources
  2. Click Add Data Source
  3. Select the required options for connecting to the database. The available options are based on the type of datasource you are creating:
    • Configuring a RDBMS Datasource
    • Configuring a Custom Datasource 
  4. After adding datasources, they will appear on the Data Sources page. You can edit and delete them as needed by clicking Edit or Delete links. 

 You can view, edit, and delete the datasources in your product instance by clicking Data Sources in the Configure menu of the product management console. However, you cannot edit or delete the default <WSO2_CARBON_DB> datasource.

WSO2 DAS default datasources

The default RDBMS type datasources that are shipped with WSO2 DAS in the <DAS_HOME>/repository/conf/datasources/ directory can be viewed in the Datasources page as follows.

Master datasources

The WSO2_CARBON_DB master datasource, which is defined in the <DAS_HOME>/repository/conf/master-datasources.xml file is used to store data of registry and user manager of WSO2 DAS in a RDBMS.

By default, this points to the in-built H2 database of the DAS. Replace the  url username password  and  driverClassName settings with your custom values and also the other values accordingly in the master-datasources.xml file as shown in the below example, to change the underlying RDBMS to which this datasource connects. For information on changing the underlying database type, see Working with Databases.

<datasource>
            <name>WSO2_CARBON_DB</name>
            <description>The datasource used for registry and user manager</description>
            <jndiConfig>
                <name>jdbc/WSO2CarbonDB</name>
            </jndiConfig>
            <definition type="RDBMS">
                <configuration>
                    <url>jdbc:h2:repository/database/WSO2CARBON_DB;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000</url>
                    <username>wso2carbon</username>
                    <password>wso2carbon</password>
                    <driverClassName>org.h2.Driver</driverClassName>
                    <maxActive>50</maxActive>
                    <maxWait>60000</maxWait>
                    <testOnBorrow>true</testOnBorrow>
                    <validationQuery>SELECT 1</validationQuery>
                    <validationInterval>30000</validationInterval>
                    <defaultAutoCommit>false</defaultAutoCommit>
                </configuration>
            </definition>
        </datasource>

The datasource configuration options are as follows. For more information on these configuration properties, see Apache TomEE Documentation.

Parameter
Description
<url>The URL of the database.
<username>The name of the database user.
<password>The password of the database user.
<driverClassName>The class name of the database driver.
<maxActive>The maximum number of active connections that can be allocated from this pool at the same time, or enter a negative value for no limit.
<maxWait>The 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.
<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. 
<validationQuery>The 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>
The default auto-commit state of new connections.

Analytics datasources

Following analytics datasources are defined in the <DAS_HOME>/repository/conf/datsources/analytics-datasources.xml file. For more information on the usage and configuration of these datasources, see DAS Data Access Layer.

Datasource NameDescription
WSO2_ANALYTICS_EVENT_STORE_DBThis datasource is used by default to connect to the data store of the Analytics Record Store which stores event definitions.
WSO2_ANALYTICS_PROCESSED_DATA_STORE_DBThis datasource is used by default to connect to the data store of the Analytics Record Store which stores processed data.

Other datasources

The following table describes the other datasources that are shipped with WSO2 DAS by default.

Datasource NameDescription
WSO2_METRICS_DBThis datasource is used to store metrics related data of WSO2 DAS.

Datasource types

The following sections explain the datasource types that are used in DAS.

  • No labels