Skip to main content
Skip table of contents

Configure - Job Queue Manager

This section describes how to configure Job Queue Manager.

Before you start to follow these steps, make sure you have followed the instructions to install Job Queue Manager.

Step 1 - Configure SuperWEB2 to use an RDBMS for the User Data Repository

If you have not already done so, follow the instructions to configure a relational database store for the User Data Repository.

Step 2 - Create the JQM Database

You need to create a database for Job Queue Manager in your chosen RDBMS:

  1. Create a new database.
  2. Create a dedicated database user account and set the account password.
  3. Grant your new user account full privileges over your new database.

To complete this step you may need to install a suitable database server or obtain access to an existing database server.

The JQM database must be accessible to both SuperWEB2 and Job Queue Manager. If these applications are running in separate Tomcat instances on separate servers, then you must ensure that both servers have access to the database server that provides the JQM database.

Step 3 - Install a JDBC Driver

JDBC (Java Database Connectivity) is a programming interface that lets Java applications access a relational database. You need to install a JDBC driver for your RDBMS, so that SuperWEB2 can communicate with the JQM database.

  1. Download the appropriate JDBC driver for your database:

    RDBMSRecommended DriverExample of JAR FileDriver ClassDownload From
    MySQLConnector/Jmysql-connector-java-5.1.7-bin.jarcom.mysql.jdbc.Driverhttp://www.mysql.com/downloads/connector/j/
    Oracleojdbc6.jarojdbc6.jaroracle.jdbc.driver.OracleDriverhttp://www.oracle.com/technetwork/database/enterprise-edition/jdbc-112010-090769.html
    SQL ServerMicrosoft JDBC Driversqljdbc4.jarcom.microsoft.sqlserver.jdbc.SQLServerDriverhttp://www.microsoft.com/en-au/download/details.aspx?id=11774

    To connect to SQL Server you must use the Microsoft JDBC driver. Do not use the open source jTDS driver. The Microsoft driver is a JDBC 4.0 compliant driver, whereas the jTDS driver only supports JDBC 3.0. The large object support that was added in JDBC 4.0 is required to use Job Queue Manager.

  2. Copy the driver .jar file to <tomcat_home>\lib

If you are running Job Queue Manager and SuperWEB2 in separate Tomcat instances, copy the .jar file to the <tomcat_home>\lib directory in both instances.

Step 4 - Configure the Data Source

The next step is to configure the data source by making changes to two configuration files: server.xml and context.xml.

If you are running Job Queue Manager and SuperWEB2 in different Tomcat instances, then you need to complete these steps in both instances.

server.xml

  1. Open the file <tomcat_home>\conf\server.xml in a text editor.
  2. Locate the <GlobalNamingResources> ... </GlobalNamingResources> section of the configuration:

    XML
    <GlobalNamingResources>
        <!-- Editable user database that can also be used by
             UserDatabaseRealm to authenticate users
        -->
        <Resource name="UserDatabase" auth="Container"
                  type="org.apache.catalina.UserDatabase"
                  description="User database that can be updated and saved"
                  factory="org.apache.catalina.users.MemoryUserDatabaseFactory"
                  pathname="conf/tomcat-users.xml" />
    </GlobalNamingResources>
  3. Add the following section before the closing </GlobalNamingResources> tag:

    XML
    <Resource name="ds/superstar-jqm" auth="Container"
              type="javax.sql.DataSource"
              maxActive="100"
              maxIdle="30"  
              maxWait="10000"  
              username="USERNAME"
              password="PASSWORD"
              driverClassName="CLASSNAME"  
              url="URL"/>
    

    You will need to customise this as follows:

    • Replace USERNAME and PASSWORD with the username and password of your new database user.
    • Replace CLASSNAME with the driver class for the database you are using (see the table above to find the correct value for your database driver).
    • Replace URL with the JDBC connection string for your database.

    Following are some examples for the different database systems:

    Click here to see an example for MySQL...

    The following example is for MySQL. In this example:

    • mydatabasehost is the hostname of the machine running the MySQL database.
    • 3306 is the port number.
    • jqm_superweb_2 is the name of the new database we created in Step 2.
    XML
    <Resource name="ds/superstar-jqm" auth="Container"
              type="javax.sql.DataSource"
              maxActive="100"
              maxIdle="30"  
              maxWait="10000"  
              username="jqm_user"
              password="jqm_password"
              driverClassName="com.mysql.jdbc.Driver"  
              url="jdbc:mysql://mydatabasehost:3306/jqm_superweb2"/>
    
    Click here to see an example for Oracle...

    The following example is for Oracle. In this example:

    • mydatabasehost is the hostname of the machine running the Oracle database.
    • 1521 is the port number.
    • JQM_SuperWEB_2 is the name of the new database we created in Step 2.
    XML
    <Resource name="ds/superstar-jqm" auth="Container"
              type="javax.sql.DataSource"
              maxActive="100"
              maxIdle="30"  
              maxWait="10000"  
              username="jqm_user"
              password="jqm_password"
              driverClassName="oracle.jdbc.driver.OracleDriver"  
              url="jdbc:oracle:thin:@mydatabasehost:1521:JQM_SuperWEB2"/>
    
    Click here to see an example for SQL Server...

    The following example is for SQL Server. In this example:

    • mydatabasehost is the hostname of the machine running the SQL Server database.
    • 1433 is the port number.
    • JQM_SuperWEB_2 is the name of the new database we created in Step 2.
    XML
    <Resource name="ds/superstar-jqm" auth="Container"
              type="javax.sql.DataSource"
              maxActive="100"
              maxIdle="30"  
              maxWait="10000"  
              username="jqm_user"
              password="jqm_password"
              driverClassName="com.microsoft.sqlserver.jdbc.SQLServerDriver"  
              url="jdbc:sqlserver://mydatabasehost:1433;databaseName=JQM_SuperWEB2"/>
    
  4. Save your changes to server.xml.

context.xml

  1. Open the file <tomcat_home>\conf\context.xml in a text editor.

  2. Add the following section before the closing </Context> tag:

    XML
    <ResourceLink
     global="ds/superstar-jqm"
     name="ds/superstar-jqm"
     type="javax.sql.DataSource"/>
    
  3. Save your changes to context.xml.

If you are running Job Queue Manager and SuperWEB2 in different Tomcat instances, make sure you have configured server.xml and context.xml in both instances before continuing.

 

Step 5 - Configure SuperWEB2 to use Job Queue Manager

  1. Go to the Tomcat instance that is hosting SuperWEB2 and open <tomcat_home>\webapps\webapi\WEB-INF\config\web-application-config.xml in a text editor.
  2. Locate the following section:

    XML
    <!-- 
    <import resource="data-access-config-jqm.xml" />
    -->
  3. Remove the comments:

    XML
    <import resource="data-access-config-jqm.xml" />
  4. Save your changes.
  5. Open <tomcat_home>\webapps\webapi\WEB-INF\faces-config.xml in a text editor.
  6. Locate the following section:

    XML
    <managed-property>
        <property-name>enableQueueManager</property-name>
        <value>false</value>
    </managed-property>
  7. Change false to true:

    XML
    <managed-property>
        <property-name>enableQueueManager</property-name>
        <value>true</value>
    </managed-property>
  8. Save your changes.

Step 6 - Configure the Connection Between Job Queue Manager and SuperADMIN

Job Queue Manager needs to connect to SuperSERVER, so you need to create a user account in SuperADMIN for Job Queue Manager to use.

Once you have created this account, you need to configure Job Queue Manager so that it knows which sever to login to and the username and password to use.

  1. Go to the Tomcat instance that is hosting Job Queue Manager and open <tomcat_home>\webapps\jobQueueServer\WEB-INF\data\.repository\administrationServerCatalog.xml in a text editor.
  2. Locate the following section:

    XML
    <sa:administrationServer id="defaultprofile">
      <sa:host corbaport="9230" registryport="9234" rmiport="9231">localhost</sa:host>
    </sa:administrationServer>
  3. This section specifies the port details and host name of the SuperADMIN server. You may need to update the details for your system. For example:
    • You will need to change the port details if you are using non-standard ports.
    • You will need to change the hostname from localhost if you are running Job Queue Manager on a different server to SuperADMIN.
  4. Save your changes, if any.
  5. Open <tomcat_home>\webapps\jobQueueServer\WEB-INF\config\common\service-config.xml in a text editor.
  6. Locate the following sections:

    CODE
        <bean id="jobResultProvider" class="au.com.str.jobqueue.server.springImpl.producer.XTabResultProviderTableManagerImpl">
            <property name="administrationServerUserName" value="user1"/>
            <property name="administrationServerPassword" value="user1"/>
    CODE
        <bean id="platformHealthMonitor" class="au.com.str.jobqueue.server.springImpl.queue.PlatformHealthMonitorTableManagerImpl">
            <property name="administrationServerUserName" value="user1"/>
            <property name="administrationServerPassword" value="user1"/>
  7. Change the values of administrationServerUserName and administrationServerPassword in both places to the username and password of the user account you want to use to connect Job Queue Manager to SuperADMIN/SuperSERVER.

    The first username and password set is used to provide the results back to SuperWEB2. The second set is used to periodically check that SuperSERVER is still running. You can use the same account for both cases or a different account.

  8. Save your changes.

Step 7 - Configure Large Object Support

Job Queue Manager uses Spring to communicate with the database. The default Spring configuration is specific to a particular version of Oracle.

You need to check the settings and set the appropriate configuration for your database:

  1. Go to the Tomcat instance that is hosting Job Queue Manager and open <tomcat_home>\webapps\jobQueueServer\WEB-INF\config\data-access-config.xml in a text editor.
  2. Locate the following section:

    XML
        <!-- The database specific blob handler for reading and writing (streaming) XTabJob results. This LobHandler should 
             work for any JDBC driver that is JDBC compliant in terms of the spec's suggestions regarding simple BLOB and CLOB 
             handling. This does not apply to Oracle 9i, and only to a limited degree to Oracle 10g! As a consequence, use 
             OracleLobHandler for accessing Oracle BLOBs/CLOBs. 
             See {@link LobHandler} and {@link DefaultLobHandler} for configuration requirements for your specific database in use. 
             
             Summarizing the recommended options (for actual LOB fields):
                JDBC 4.0 driver: DefaultLobHandler with streamAsLob=true.
                PostgreSQL: DefaultLobHandler with wrapAsLob=true.
                Oracle 9i/10g: OracleLobHandler with a connection-pool-specific NativeJdbcExtractor.
                For all other database drivers (and for non-LOB fields that might potentially turn into LOBs on some databases): a plain DefaultLobHandler. 
             -->
        <!-- Oracle database lob handler configuration -->
        <bean id="databaseLobHandler" class="org.springframework.jdbc.support.lob.OracleLobHandler">
            <property name="nativeJdbcExtractor" ref="nativeJdbcExtractor" />
        </bean>    
        <!-- MySQL database lob handler configuration -->
        <!-- 
        <bean id="databaseLobHandler" class="org.springframework.jdbc.support.lob.DefaultLobHandler">
            <property name="streamAsLob" value="true"/>
            <property name="wrapAsLob" value="false"/>
        </bean>
         -->
  3. Follow the instructions and comment out/uncomment the appropriate <bean> ... </bean> section.

    For most database systems you will need to comment out the Oracle lob handler and uncomment the default lob handler:

    XML
        <!-- Oracle database lob handler configuration -->
        <!-- 
        <bean id="databaseLobHandler" class="org.springframework.jdbc.support.lob.OracleLobHandler">
            <property name="nativeJdbcExtractor" ref="nativeJdbcExtractor" />
        </bean>
        --->
        <!-- MySQL database lob handler configuration -->
        <bean id="databaseLobHandler" class="org.springframework.jdbc.support.lob.DefaultLobHandler">
            <property name="streamAsLob" value="true"/>
            <property name="wrapAsLob" value="false"/>
        </bean>
    
  4. Save your changes.

Step 8 - Restart Tomcat and Validate the Configuration

Once you have completed the configuration, restart the Tomcat instance(s).

You can now validate the configuration by logging in to SuperWEB2 and creating a table that will trigger Large Table Mode and invoke Job Queue Manager.

Using the sample Retail Banking database, you can trigger Large Table Mode by creating a table with the lowest level of the Area field (postcode) in the rows and all values of Age in the columns. You will see a message similar to the following:

SuperWEB2 also displays a message on the table to indicate that you are currently in Large Table Mode:

When you are ready to submit the query, select the download format from the drop-down list and click Queue Job to submit the query to Job Queue Manager:

You will be prompted to enter a table name:

Once you have supplied a table name and clicked Queue Job, you will be returned to the Table View. You can check the status of your query in the My Tables page:

You can also log out of SuperWEB2 and come back later. Your query will continue running in the background and you can retrieve the results from the My Tables page.

The times shown in the Submission Date column are in UTC/GMT by default. You may wish to configure this to display in your local timezone instead.

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.