use of com.netflix.astyanax.connectionpool.SSLConnectionContext in project coprhd-controller by CoprHD.
the class DbClientContext method init.
public void init(final HostSupplierImpl hostSupplier) {
String svcName = hostSupplier.getDbSvcName();
log.info("Initializing hosts for {}", svcName);
List<Host> hosts = hostSupplier.get();
if ((hosts != null) && (hosts.isEmpty())) {
throw new IllegalStateException(String.format("DbClientContext.init() : host list in hostsupplier for %s is empty", svcName));
} else {
int hostCount = hosts == null ? 0 : hosts.size();
log.info(String.format("number of hosts in the hostsupplier for %s is %d", svcName, hostCount));
}
Partitioner murmur3partitioner = Murmur3Partitioner.get();
Map<String, Partitioner> partitioners = new HashMap<>();
partitioners.put("org.apache.cassandra.dht.Murmur3Partitioner.class.getCanonicalName()", murmur3partitioner);
ConsistencyLevel readCL = ConsistencyLevel.CL_LOCAL_QUORUM;
ConsistencyLevel writeCL = ConsistencyLevel.CL_EACH_QUORUM;
ConnectionPoolConfigurationImpl cfg = new ConnectionPoolConfigurationImpl(DEFAULT_CN_POOL_NANE).setMaxConns(maxConnections).setMaxConnsPerHost(maxConnectionsPerHost).setConnectTimeout(DEFAULT_CONN_TIMEOUT).setMaxBlockedThreadsPerHost(DEFAULT_MAX_BLOCKED_THREADS).setPartitioner(murmur3partitioner);
log.info("The client to node is encrypted={}", isClientToNodeEncrypted);
if (isClientToNodeEncrypted) {
SSLConnectionContext sslContext = getSSLConnectionContext();
cfg.setSSLConnectionContext(sslContext);
}
// TODO revisit it to see if we need set different retry policy, timeout, discovery delay etc for geodb
keyspaceContext = new AstyanaxContext.Builder().withHostSupplier(hostSupplier).forCluster(clusterName).forKeyspace(keyspaceName).withAstyanaxConfiguration(new AstyanaxConfigurationImpl().setConnectionPoolType(ConnectionPoolType.ROUND_ROBIN).setDiscoveryDelayInSeconds(svcListPoolIntervalSec).setDefaultReadConsistencyLevel(readCL).setDefaultWriteConsistencyLevel(writeCL).setTargetCassandraVersion("2.0").setPartitioners(partitioners).setRetryPolicy(retryPolicy)).withConnectionPoolConfiguration(cfg).withTracerFactory(new KeyspaceTracerFactoryImpl()).withConnectionPoolMonitor(new CustomConnectionPoolMonitor(monitorIntervalSecs)).buildKeyspace(ThriftFamilyFactory.getInstance());
keyspaceContext.start();
keyspace = keyspaceContext.getClient();
// Check and reset default write consistency level
final DrUtil drUtil = new DrUtil(hostSupplier.getCoordinatorClient());
if (drUtil.isMultivdc()) {
// geodb in mutlivdc should be EACH_QUORUM always. Never retry for write failures
setRetryFailedWriteWithLocalQuorum(false);
log.info("Retry for failed write with LOCAL_QUORUM: {}", retryFailedWriteWithLocalQuorum);
} else {
setRetryFailedWriteWithLocalQuorum(true);
}
if (drUtil.isActiveSite() && !drUtil.isMultivdc()) {
log.info("Schedule db consistency level monitor on DR active site");
exe.scheduleWithFixedDelay(new Runnable() {
@Override
public void run() {
try {
checkAndResetConsistencyLevel(drUtil, hostSupplier.getDbSvcName());
} catch (Exception ex) {
log.warn("Encounter Unexpected exception during check consistency level. Retry in next run", ex);
}
}
}, 60, DEFAULT_CONSISTENCY_LEVEL_CHECK_SEC, TimeUnit.SECONDS);
}
initDone = true;
}
use of com.netflix.astyanax.connectionpool.SSLConnectionContext in project coprhd-controller by CoprHD.
the class DbClientContext method initClusterContext.
/**
* Initialize the cluster context and cluster instances.
* This has to be separated from init() because dbsvc need this to start
* while init() depends on dbclient which in turn depends on dbsvc.
*/
private void initClusterContext() {
int port = getThriftPort();
ConnectionPoolConfigurationImpl cfg = new ConnectionPoolConfigurationImpl(clusterName).setMaxConnsPerHost(1).setSeeds(String.format("%1$s:%2$d", LOCAL_HOST, port));
if (isClientToNodeEncrypted()) {
SSLConnectionContext sslContext = getSSLConnectionContext();
cfg.setSSLConnectionContext(sslContext);
}
clusterContext = new AstyanaxContext.Builder().forCluster(clusterName).forKeyspace(getKeyspaceName()).withAstyanaxConfiguration(new AstyanaxConfigurationImpl().setRetryPolicy(new QueryRetryPolicy(10, 1000))).withConnectionPoolConfiguration(cfg).buildCluster(ThriftFamilyFactory.getInstance());
clusterContext.start();
cluster = clusterContext.getClient();
}
use of com.netflix.astyanax.connectionpool.SSLConnectionContext in project janusgraph by JanusGraph.
the class AstyanaxStoreManager method getContextBuilder.
private AstyanaxContext.Builder getContextBuilder(Configuration config, int maxConnsPerHost, String usedFor) {
final ConnectionPoolType poolType = ConnectionPoolType.valueOf(config.get(CONNECTION_POOL_TYPE));
final NodeDiscoveryType discType = NodeDiscoveryType.valueOf(config.get(NODE_DISCOVERY_TYPE));
final int maxConnections = config.get(MAX_CONNECTIONS);
final int maxOperationsPerConnection = config.get(MAX_OPERATIONS_PER_CONNECTION);
final int connectionTimeout = (int) connectionTimeoutMS.toMillis();
ConnectionPoolConfigurationImpl cpool = new ConnectionPoolConfigurationImpl(usedFor + "JanusGraphConnectionPool").setPort(port).setMaxOperationsPerConnection(maxOperationsPerConnection).setMaxConnsPerHost(maxConnsPerHost).setRetryDelaySlice(retryDelaySlice).setRetryMaxDelaySlice(retryMaxDelaySlice).setRetrySuspendWindow(retrySuspendWindow).setSocketTimeout(connectionTimeout).setConnectTimeout(connectionTimeout).setSeeds(StringUtils.join(hostnames, ","));
if (null != retryBackoffStrategy) {
cpool.setRetryBackoffStrategy(retryBackoffStrategy);
log.debug("Custom RetryBackoffStrategy {}", cpool.getRetryBackoffStrategy());
} else {
log.debug("Default RetryBackoffStrategy {}", cpool.getRetryBackoffStrategy());
}
if (StringUtils.isNotBlank(localDatacenter)) {
cpool.setLocalDatacenter(localDatacenter);
log.debug("Set local datacenter: {}", cpool.getLocalDatacenter());
}
AstyanaxConfigurationImpl astyanaxConfiguration = new AstyanaxConfigurationImpl().setConnectionPoolType(poolType).setDiscoveryType(discType).setTargetCassandraVersion("1.2").setMaxThriftSize(thriftFrameSizeBytes);
if (0 < maxConnections) {
cpool.setMaxConns(maxConnections);
}
if (hasAuthentication()) {
cpool.setAuthenticationCredentials(new SimpleAuthenticationCredentials(username, password));
}
if (config.get(SSL_ENABLED)) {
cpool.setSSLConnectionContext(new SSLConnectionContext(config.get(SSL_TRUSTSTORE_LOCATION), config.get(SSL_TRUSTSTORE_PASSWORD)));
}
AstyanaxContext.Builder ctxBuilder = new AstyanaxContext.Builder();
// Standard context builder options
ctxBuilder.forCluster(clusterName).forKeyspace(keySpaceName).withAstyanaxConfiguration(astyanaxConfiguration).withConnectionPoolConfiguration(cpool).withConnectionPoolMonitor(new CountingConnectionPoolMonitor());
// Conditional context builder option: host supplier
if (config.has(HOST_SUPPLIER)) {
String hostSupplier = config.get(HOST_SUPPLIER);
final Supplier<List<Host>> supplier;
if (hostSupplier != null) {
try {
supplier = (Supplier<List<Host>>) Class.forName(hostSupplier).newInstance();
ctxBuilder.withHostSupplier(supplier);
} catch (Exception e) {
log.warn("Problem with host supplier class " + hostSupplier + ", going to use default.", e);
}
}
}
return ctxBuilder;
}
Aggregations