ARTEMIS-2823 Use datasource with JDBC store db connections fixes
It add additional required fixes: - Fixed uncommitted deleted tx records - Fixed JDBC authorization on test - Using property-based version for commons-dbcp2 - stopping thread pool after activation to allow JDBC lease locks to release the lock - centralize JDBC network timeout configuration and save repeating it - adding dbcp2 as the default pooled DataSource to be used
This commit is contained in:
parent
4979262f2d
commit
b4532d944d
|
@ -83,6 +83,8 @@
|
|||
<include>org.jboss.logging:jboss-logging</include>
|
||||
<include>org.jboss.slf4j:slf4j-jboss-logmanager</include>
|
||||
<include>org.jctools:jctools-core</include>
|
||||
<include>org.apache.commons:commons-dbcp2</include>
|
||||
<include>org.apache.commons:commons-pool2</include>
|
||||
<include>io.netty:netty-all</include>
|
||||
<include>org.apache.qpid:proton-j</include>
|
||||
<include>org.apache.activemq:activemq-client</include>
|
||||
|
|
|
@ -72,6 +72,8 @@
|
|||
<bundle dependency="true">mvn:org.apache.commons/commons-lang3/${commons.lang.version}</bundle>
|
||||
<bundle dependency="true">mvn:org.jctools/jctools-core/${jctools.version}</bundle>
|
||||
<bundle dependency="true">mvn:com.google.guava/guava/${guava.version}</bundle>
|
||||
<bundle dependency="true">mvn:org.apache.commons/commons-dbcp2/${commons.dbcp2.version}</bundle>
|
||||
<bundle dependency="true">mvn:org.apache.commons/commons-pool2/${commons.dbcp2.version}</bundle>
|
||||
<!-- Micrometer can't be included until it supports OSGi. It is currently an "optional" Maven dependency. -->
|
||||
<!--bundle dependency="true">mvn:io.micrometer/micrometer-core/${version.micrometer}</bundle-->
|
||||
|
||||
|
|
|
@ -85,7 +85,6 @@
|
|||
<dependency>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<artifactId>commons-dbcp2</artifactId>
|
||||
<version>2.1.1</version>
|
||||
</dependency>
|
||||
|
||||
<!-- Database driver support -->
|
||||
|
|
|
@ -16,10 +16,6 @@
|
|||
*/
|
||||
package org.apache.activemq.artemis.jdbc.store.drivers;
|
||||
|
||||
import org.apache.activemq.artemis.jdbc.store.logging.LoggingConnection;
|
||||
import org.apache.activemq.artemis.journal.ActiveMQJournalLogger;
|
||||
import org.jboss.logging.Logger;
|
||||
|
||||
import javax.sql.DataSource;
|
||||
import java.sql.Connection;
|
||||
import java.sql.DriverManager;
|
||||
|
@ -27,17 +23,23 @@ import java.sql.SQLException;
|
|||
import java.util.concurrent.Executor;
|
||||
import java.util.concurrent.atomic.AtomicBoolean;
|
||||
|
||||
import org.apache.activemq.artemis.jdbc.store.logging.LoggingConnection;
|
||||
import org.apache.activemq.artemis.journal.ActiveMQJournalLogger;
|
||||
import org.jboss.logging.Logger;
|
||||
|
||||
public class JDBCConnectionProvider {
|
||||
|
||||
private static final Logger logger = Logger.getLogger(JDBCConnectionProvider.class);
|
||||
private DataSource dataSource;
|
||||
private Executor networkTimeoutExecutor;
|
||||
private int networkTimeoutMillis;
|
||||
private boolean supportNetworkTimeout;
|
||||
|
||||
public JDBCConnectionProvider(DataSource dataSource) {
|
||||
this.dataSource = dataSource;
|
||||
this.networkTimeoutExecutor = null;
|
||||
this.networkTimeoutMillis = -1;
|
||||
this.supportNetworkTimeout = true;
|
||||
addDerbyShutdownHook();
|
||||
}
|
||||
|
||||
|
@ -58,14 +60,18 @@ public class JDBCConnectionProvider {
|
|||
}
|
||||
|
||||
if (this.networkTimeoutMillis >= 0 && this.networkTimeoutExecutor != null) {
|
||||
if (supportNetworkTimeout) {
|
||||
try {
|
||||
connection.setNetworkTimeout(this.networkTimeoutExecutor, this.networkTimeoutMillis);
|
||||
} catch (SQLException e) {
|
||||
supportNetworkTimeout = false;
|
||||
logger.warn(JDBCUtils.appendSQLExceptionDetails(new StringBuilder(), e));
|
||||
ActiveMQJournalLogger.LOGGER.warn("Unable to set a network timeout on the JDBC connection");
|
||||
ActiveMQJournalLogger.LOGGER.warn("Unable to set a network timeout on the JDBC connection: won't retry again in the future");
|
||||
} catch (Throwable throwable) {
|
||||
supportNetworkTimeout = false;
|
||||
//it included SecurityExceptions and UnsupportedOperationException
|
||||
logger.warn("Unable to set a network timeout on the JDBC connection", throwable);
|
||||
logger.warn("Unable to set a network timeout on the JDBC connection: won't retry again in the future", throwable);
|
||||
}
|
||||
}
|
||||
}
|
||||
return connection;
|
||||
|
|
|
@ -189,9 +189,8 @@ public class JDBCJournalImpl extends AbstractJDBCDriver implements Journal {
|
|||
|
||||
TransactionHolder holder;
|
||||
|
||||
try (Connection connection = connectionProvider.getConnection()) {
|
||||
|
||||
try (PreparedStatement deleteJournalRecords = connection.prepareStatement(this.deleteJournalRecords);
|
||||
try (Connection connection = connectionProvider.getConnection();
|
||||
PreparedStatement deleteJournalRecords = connection.prepareStatement(this.deleteJournalRecords);
|
||||
PreparedStatement deleteJournalTxRecords = connection.prepareStatement(this.deleteJournalTxRecords);
|
||||
PreparedStatement insertJournalRecords = connection.prepareStatement(this.insertJournalRecords)) {
|
||||
|
||||
|
@ -243,7 +242,7 @@ public class JDBCJournalImpl extends AbstractJDBCDriver implements Journal {
|
|||
logger.trace("JDBC commit worked");
|
||||
}
|
||||
|
||||
if (cleanupTxRecords(deletedRecords, committedTransactions)) {
|
||||
if (cleanupTxRecords(deletedRecords, committedTransactions, deleteJournalTxRecords)) {
|
||||
deleteJournalTxRecords.executeBatch();
|
||||
connection.commit();
|
||||
logger.trace("JDBC commit worked on cleanupTxRecords");
|
||||
|
@ -251,8 +250,6 @@ public class JDBCJournalImpl extends AbstractJDBCDriver implements Journal {
|
|||
executeCallbacks(recordRef, true);
|
||||
|
||||
return recordRef.size();
|
||||
|
||||
}
|
||||
} catch (Exception e) {
|
||||
handleException(recordRef, e);
|
||||
return 0;
|
||||
|
@ -276,7 +273,8 @@ public class JDBCJournalImpl extends AbstractJDBCDriver implements Journal {
|
|||
|
||||
/* We store Transaction reference in memory (once all records associated with a Tranascation are Deleted,
|
||||
we remove the Tx Records (i.e. PREPARE, COMMIT). */
|
||||
private synchronized boolean cleanupTxRecords(List<Long> deletedRecords, List<Long> committedTx) throws SQLException {
|
||||
private synchronized boolean cleanupTxRecords(List<Long> deletedRecords, List<Long> committedTx,
|
||||
PreparedStatement deleteJournalTxRecords) throws SQLException {
|
||||
List<RecordInfo> iterableCopy;
|
||||
List<TransactionHolder> iterableCopyTx = new ArrayList<>();
|
||||
iterableCopyTx.addAll(transactions.values());
|
||||
|
@ -285,9 +283,6 @@ public class JDBCJournalImpl extends AbstractJDBCDriver implements Journal {
|
|||
transactions.get(txId).committed = true;
|
||||
}
|
||||
boolean hasDeletedJournalTxRecords = false;
|
||||
|
||||
try (Connection connection = connectionProvider.getConnection();
|
||||
PreparedStatement deleteJournalTxRecords = connection.prepareStatement(this.deleteJournalTxRecords)) {
|
||||
// TODO (mtaylor) perhaps we could store a reverse mapping of IDs to prevent this O(n) loop
|
||||
for (TransactionHolder h : iterableCopyTx) {
|
||||
|
||||
|
@ -307,7 +302,6 @@ public class JDBCJournalImpl extends AbstractJDBCDriver implements Journal {
|
|||
transactions.remove(h.transactionID);
|
||||
}
|
||||
}
|
||||
}
|
||||
return hasDeletedJournalTxRecords;
|
||||
}
|
||||
|
||||
|
|
|
@ -17,6 +17,9 @@
|
|||
package org.apache.activemq.artemis.core.config.storage;
|
||||
|
||||
import javax.sql.DataSource;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
import java.util.concurrent.Executor;
|
||||
|
||||
import org.apache.activemq.artemis.api.config.ActiveMQDefaultConfiguration;
|
||||
import org.apache.activemq.artemis.core.config.StoreConfiguration;
|
||||
|
@ -24,9 +27,6 @@ import org.apache.activemq.artemis.jdbc.store.drivers.JDBCConnectionProvider;
|
|||
import org.apache.activemq.artemis.jdbc.store.drivers.JDBCDataSourceUtils;
|
||||
import org.apache.activemq.artemis.jdbc.store.sql.SQLProvider;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
public class DatabaseStorageConfiguration implements StoreConfiguration {
|
||||
|
||||
private String messageTableName = ActiveMQDefaultConfiguration.getDefaultMessageTableName();
|
||||
|
@ -183,6 +183,19 @@ public class DatabaseStorageConfiguration implements StoreConfiguration {
|
|||
}
|
||||
return connectionProvider;
|
||||
}
|
||||
|
||||
public DatabaseStorageConfiguration setConnectionProviderNetworkTimeout(Executor executor, int ms) {
|
||||
getConnectionProvider().setNetworkTimeout(executor, ms);
|
||||
return this;
|
||||
}
|
||||
|
||||
public DatabaseStorageConfiguration clearConnectionProviderNetworkTimeout() {
|
||||
if (connectionProvider != null) {
|
||||
connectionProvider.setNetworkTimeout(null, -1);
|
||||
}
|
||||
return this;
|
||||
}
|
||||
|
||||
public void addDataSourceProperty(String key, String value) {
|
||||
if (value.toLowerCase().equals("true") || value.toLowerCase().equals("false")) {
|
||||
dataSourceProperties.put(key, Boolean.parseBoolean(value.toLowerCase()));
|
||||
|
|
|
@ -1746,7 +1746,6 @@ public final class FileConfigurationParser extends XMLConfigurationUtil {
|
|||
conf.addDataSourceProperty(propertyNode.getAttributeNode("key").getValue(), propertyNode.getAttributeNode("value").getValue());
|
||||
}
|
||||
}
|
||||
//conf.initDataSource();
|
||||
|
||||
return conf;
|
||||
}
|
||||
|
|
|
@ -57,10 +57,6 @@ public class JDBCJournalStorageManager extends JournalStorageManager {
|
|||
try {
|
||||
final DatabaseStorageConfiguration dbConf = (DatabaseStorageConfiguration) config.getStoreConfiguration();
|
||||
final JDBCConnectionProvider connectionProvider = dbConf.getConnectionProvider();
|
||||
final int networkTimeout = dbConf.getJdbcNetworkTimeout();
|
||||
if (networkTimeout >= 0) {
|
||||
connectionProvider.setNetworkTimeout(executorFactory.getExecutor(), networkTimeout);
|
||||
}
|
||||
final JDBCJournalImpl bindingsJournal;
|
||||
final JDBCJournalImpl messageJournal;
|
||||
final JDBCSequentialFileFactory largeMessagesFactory;
|
||||
|
|
|
@ -490,6 +490,24 @@ public class ActiveMQServerImpl implements ActiveMQServer {
|
|||
return this;
|
||||
}
|
||||
|
||||
private void configureJdbcNetworkTimeout() {
|
||||
if (configuration.isPersistenceEnabled()) {
|
||||
if (configuration.getStoreConfiguration() != null && configuration.getStoreConfiguration().getStoreType() == StoreConfiguration.StoreType.DATABASE) {
|
||||
DatabaseStorageConfiguration databaseStorageConfiguration = (DatabaseStorageConfiguration) configuration.getStoreConfiguration();
|
||||
databaseStorageConfiguration.setConnectionProviderNetworkTimeout(threadPool, databaseStorageConfiguration.getJdbcNetworkTimeout());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void clearJdbcNetworkTimeout() {
|
||||
if (configuration.isPersistenceEnabled()) {
|
||||
if (configuration.getStoreConfiguration() != null && configuration.getStoreConfiguration().getStoreType() == StoreConfiguration.StoreType.DATABASE) {
|
||||
DatabaseStorageConfiguration databaseStorageConfiguration = (DatabaseStorageConfiguration) configuration.getStoreConfiguration();
|
||||
databaseStorageConfiguration.clearConnectionProviderNetworkTimeout();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Can be overridden for tests
|
||||
*/
|
||||
|
@ -581,6 +599,9 @@ public class ActiveMQServerImpl implements ActiveMQServer {
|
|||
try {
|
||||
checkJournalDirectory();
|
||||
|
||||
// this would create the connection provider while setting the JDBC global network timeout
|
||||
configureJdbcNetworkTimeout();
|
||||
|
||||
nodeManager = createNodeManager(configuration.getNodeManagerLockLocation(), false);
|
||||
|
||||
nodeManager.start();
|
||||
|
@ -1220,16 +1241,10 @@ public class ActiveMQServerImpl implements ActiveMQServer {
|
|||
securitySettingPlugin.stop();
|
||||
}
|
||||
|
||||
if (threadPool != null && !threadPoolSupplied) {
|
||||
shutdownPool(threadPool);
|
||||
}
|
||||
|
||||
if (ioExecutorPool != null) {
|
||||
shutdownPool(ioExecutorPool);
|
||||
}
|
||||
|
||||
if (!threadPoolSupplied)
|
||||
threadPool = null;
|
||||
if (!scheduledPoolSupplied)
|
||||
scheduledPool = null;
|
||||
|
||||
|
@ -1268,6 +1283,19 @@ public class ActiveMQServerImpl implements ActiveMQServer {
|
|||
}
|
||||
}
|
||||
|
||||
// JDBC journal can use this thread pool to configure the network timeout on a pooled connection:
|
||||
// better to stop it after closing activation (and JDBC node manager on it)
|
||||
final ExecutorService threadPool = this.threadPool;
|
||||
if (threadPool != null && !threadPoolSupplied) {
|
||||
shutdownPool(threadPool);
|
||||
}
|
||||
if (!threadPoolSupplied) {
|
||||
this.threadPool = null;
|
||||
}
|
||||
|
||||
// given that threadPool can be garbage collected, need to clear anything that would make it leaks
|
||||
clearJdbcNetworkTimeout();
|
||||
|
||||
if (activationThread != null) {
|
||||
try {
|
||||
activationThread.join(30000);
|
||||
|
|
12
pom.xml
12
pom.xml
|
@ -87,6 +87,7 @@
|
|||
<activemq5-version>5.14.5</activemq5-version>
|
||||
<apache.derby.version>10.11.1.1</apache.derby.version>
|
||||
<commons.beanutils.version>1.9.4</commons.beanutils.version>
|
||||
<commons.dbcp2.version>2.7.0</commons.dbcp2.version>
|
||||
<commons.collections.version>3.2.2</commons.collections.version>
|
||||
<commons.text.version>1.8</commons.text.version>
|
||||
<fuse.mqtt.client.version>1.16</fuse.mqtt.client.version>
|
||||
|
@ -751,7 +752,16 @@
|
|||
<dependency>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<artifactId>commons-dbcp2</artifactId>
|
||||
<version>2.1.1</version>
|
||||
<version>${commons.dbcp2.version}</version>
|
||||
<!-- license Apache 2 -->
|
||||
</dependency>
|
||||
<!-- used by commons-dbcp2 -->
|
||||
<dependency>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<artifactId>commons-pool2</artifactId>
|
||||
<version>${commons.dbcp2.version}</version>
|
||||
<!-- license Apache 2 -->
|
||||
<scope>runtime</scope>
|
||||
</dependency>
|
||||
|
||||
<!-- Needed for Micrometer -->
|
||||
|
|
|
@ -116,6 +116,8 @@ public class JDBCJournalTest extends ActiveMQTestBase {
|
|||
if (useAuthentication) {
|
||||
System.setProperty("derby.connection.requireAuthentication", "true");
|
||||
System.setProperty("derby.user." + getJdbcUser(), getJdbcPassword());
|
||||
dbConf.setJdbcUser(getJdbcUser());
|
||||
dbConf.setJdbcPassword(getJdbcPassword());
|
||||
}
|
||||
sqlProvider = JDBCUtils.getSQLProvider(
|
||||
dbConf.getJdbcDriverClassName(),
|
||||
|
|
Loading…
Reference in New Issue