use of org.datanucleus.store.rdbms.datasource.dbcp2.pool2.impl.GenericObjectPoolConfig in project oxCore by GluuFederation.
the class RedisShardedProvider method create.
public void create() {
try {
LOG.debug("Starting RedisShardedProvider ... configuration:" + redisConfiguration);
GenericObjectPoolConfig<ShardedJedis> poolConfig = new GenericObjectPoolConfig<>();
poolConfig.setMaxTotal(redisConfiguration.getMaxTotalConnections());
poolConfig.setMaxIdle(redisConfiguration.getMaxIdleConnections());
poolConfig.setMinIdle(2);
pool = new ShardedJedisPool(poolConfig, shards(redisConfiguration));
testConnection();
LOG.debug("RedisShardedProvider started.");
} catch (Exception e) {
LOG.error("Failed to start RedisShardedProvider.", e);
throw new IllegalStateException("Error starting RedisShardedProvider", e);
}
}
use of org.datanucleus.store.rdbms.datasource.dbcp2.pool2.impl.GenericObjectPoolConfig in project ddf by codice.
the class LdapLoginConfig method createGenericPoolConfig.
private GenericObjectPoolConfig createGenericPoolConfig(String id) {
GenericObjectPoolConfig config = new GenericObjectPoolConfig();
config.setJmxNameBase("org.apache.commons.pool2:type=LDAPConnectionPool,name=");
config.setJmxNamePrefix(id);
config.setTimeBetweenEvictionRunsMillis(FIVE_MIN_MS);
config.setTestWhileIdle(true);
config.setTestOnBorrow(true);
return config;
}
use of org.datanucleus.store.rdbms.datasource.dbcp2.pool2.impl.GenericObjectPoolConfig in project athenz by yahoo.
the class DataSourceFactory method create.
static PoolableDataSource create(ConnectionFactory connectionFactory) {
// setup our pool config object
GenericObjectPoolConfig config = setupPoolConfig();
PoolableConnectionFactory poolableConnectionFactory = new PoolableConnectionFactory(connectionFactory, null);
// Set max lifetime of a connection in milli-secs, after which it will
// always fail activation, passivation, and validation.
// Value of -1 means infinite life time. The default value
// defined in this class is 10 minutes.
long connTtlMillis = retrieveConfigSetting(ATHENZ_PROP_DBPOOL_MAX_TTL, MAX_TTL_CONN_MS);
poolableConnectionFactory.setMaxConnLifetimeMillis(connTtlMillis);
if (LOG.isInfoEnabled()) {
LOG.info("Setting Time-To-Live interval for live connections ({}) msecs", connTtlMillis);
}
// set the validation query for our jdbc connector
final String validationQuery = System.getProperty(ATHENZ_PROP_DBPOOL_VALIDATION_QUERY, MYSQL_VALIDATION_QUERY);
poolableConnectionFactory.setValidationQuery(validationQuery);
ObjectPool<PoolableConnection> connectionPool = new GenericObjectPool<>(poolableConnectionFactory, config);
poolableConnectionFactory.setPool(connectionPool);
return new AthenzDataSource(connectionPool);
}
use of org.datanucleus.store.rdbms.datasource.dbcp2.pool2.impl.GenericObjectPoolConfig in project athenz by yahoo.
the class DataSourceFactory method setupPoolConfig.
public static GenericObjectPoolConfig setupPoolConfig() {
// setup config vars for the object pool
// ie. min and max idle instances, and max total instances of arbitrary objects
GenericObjectPoolConfig config = new GenericObjectPoolConfig();
// The maximum number of active connections that can be allocated from
// this pool at the same time, or negative for no limit. Default: 8
config.setMaxTotal(retrieveConfigSetting(ATHENZ_PROP_DBPOOL_MAX_TOTAL, GenericObjectPoolConfig.DEFAULT_MAX_TOTAL));
if (config.getMaxTotal() == 0) {
// -1 means no limit
config.setMaxTotal(-1);
}
// The maximum number of connections that can remain idle in the pool,
// without extra ones being released, or negative for no limit. Default 8
config.setMaxIdle(retrieveConfigSetting(ATHENZ_PROP_DBPOOL_MAX_IDLE, GenericObjectPoolConfig.DEFAULT_MAX_IDLE));
if (config.getMaxIdle() == 0) {
// -1 means no limit
config.setMaxIdle(-1);
}
// The minimum number of connections that can remain idle in the pool,
// without extra ones being created, or zero to create none. Default 0
config.setMinIdle(retrieveConfigSetting(ATHENZ_PROP_DBPOOL_MIN_IDLE, GenericObjectPoolConfig.DEFAULT_MIN_IDLE));
// 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, or -1 to wait indefinitely. Default -1
config.setMaxWaitMillis(retrieveConfigSetting(ATHENZ_PROP_DBPOOL_MAX_WAIT, BaseObjectPoolConfig.DEFAULT_MAX_WAIT_MILLIS));
// setup the configuration to cleanup idle connections
//
// Minimum time an object can be idle in the pool before being eligible
// for eviction by the idle object evictor.
// The default value is 30 minutes (1000 * 60 * 30).
config.setMinEvictableIdleTimeMillis(retrieveConfigSetting(ATHENZ_PROP_DBPOOL_EVICT_IDLE_TIMEOUT, BaseObjectPoolConfig.DEFAULT_MIN_EVICTABLE_IDLE_TIME_MILLIS));
// Number of milliseconds to sleep between runs of idle object evictor thread.
// Not using DEFAULT_TIME_BETWEEN_EVICTION_RUNS_MILLIS since it is -1
// meaning it will not run the evictor thread and instead we're using
// the default min value for evictable idle connections (Default 30 minutes)
config.setTimeBetweenEvictionRunsMillis(retrieveConfigSetting(ATHENZ_PROP_DBPOOL_EVICT_IDLE_INTERVAL, BaseObjectPoolConfig.DEFAULT_MIN_EVICTABLE_IDLE_TIME_MILLIS));
if (LOG.isDebugEnabled()) {
LOG.debug("Config settings for idle object eviction: time interval between eviction thread runs ({} millis), " + "minimum timeout for idle objects ({} millis)", config.getTimeBetweenEvictionRunsMillis(), config.getMinEvictableIdleTimeMillis());
}
// Validate objects by the idle object evictor. If invalid, gets dropped
// from the pool.
config.setTestWhileIdle(true);
// Validate object before borrowing from pool and returning to the pool.
// If invalid, gets dropped from the pool and an attempt to borrow
// another one will occur.
config.setTestOnBorrow(true);
config.setTestOnReturn(true);
return config;
}
use of org.datanucleus.store.rdbms.datasource.dbcp2.pool2.impl.GenericObjectPoolConfig in project jedis by xetorthio.
the class ShardedJedisPoolTest method checkConnectionWithDefaultPort.
@Test
public void checkConnectionWithDefaultPort() {
ShardedJedisPool pool = new ShardedJedisPool(new GenericObjectPoolConfig(), shards);
ShardedJedis jedis = pool.getResource();
jedis.set("foo", "bar");
assertEquals("bar", jedis.get("foo"));
jedis.close();
pool.destroy();
}
Aggregations