Configure connection validation timeout
We can configure a timeout for connection validation by the JDBC driver through a data source custom property in the data source configuration panels.
We can choose between validating connections with the JDBC driver or by having the application server run a SQL query. Select one or both of the following connection pretest attributes:
- Validate new connections
- Validate existing pooled connections
By default, connection validation is disabled. When we save the configuration for the data source, the administrative console supplies only the option that is selected. The administrative console will select validation by timeout or validation by a query, but if validation is not enabled then the application server will select neither option.
Tasks
- Open the administrative console.
- Go to the WAS Data Source properties panel for the data source.
- Select Resources > JDBC > Data Sources > data_source
- Select WAS Data Source properties.
- Go to the Connection Validation Properties section.
- Select the type of connections that the application server will validate.
- Select Validate new connections. This option specifies that the connection manager tests newly created connections to the database.
- Select Validate existing pooled connections. This options specifies that the connection manager tests the validity of pooled connections before returning them to applications.
- We can also select both options.
- Click Validation by JDBC Driver. The application server issues a warning if Validation by JDBC driver is configured and the JDBC driver does not implement JDBC 4.0, or if the Connection.isValid method raises an error.
Deprecated feature: Connection validation by SQL query is deprecated. Use validation by JDBC Driver instead.depfeat
- Enter the timeout value in the input box. The timeout value is in seconds.
If retries are configured, meaning the retry interval is not set to 0, for Validate new connections or Validate existing pooled connections, then the full value of the timeout applies to each retry. For each retry, the application server waits for the retry interval. Then the JDBC driver uses the full value of the timeout to validate the connectio.
- Save the data source configuration.
What to do next
If we are modifying an existing data source, restart the server for this change to go into effect. If this is a new data source, restarting the server is not necessary.
Configure resource adapters