use of com.datastax.driver.core.QueryOptions in project thingsboard by thingsboard.
the class CassandraQueryOptions method initOpts.
@PostConstruct
public void initOpts() {
opts = new QueryOptions();
opts.setFetchSize(defaultFetchSize);
}
use of com.datastax.driver.core.QueryOptions in project atlasdb by palantir.
the class CqlKeyValueService method initializeConnectionPool.
@SuppressWarnings("CyclomaticComplexity")
protected void initializeConnectionPool() {
Collection<InetSocketAddress> configuredHosts = config.servers();
Cluster.Builder clusterBuilder = Cluster.builder();
clusterBuilder.addContactPointsWithPorts(configuredHosts);
// for JMX metrics
clusterBuilder.withClusterName("atlas_cassandra_cluster_" + config.getKeyspaceOrThrow());
clusterBuilder.withCompression(Compression.LZ4);
if (config.sslConfiguration().isPresent()) {
SSLContext sslContext = SslSocketFactories.createSslContext(config.sslConfiguration().get());
SSLOptions sslOptions = new SSLOptions(sslContext, SSLOptions.DEFAULT_SSL_CIPHER_SUITES);
clusterBuilder.withSSL(sslOptions);
} else if (config.ssl().isPresent() && config.ssl().get()) {
clusterBuilder.withSSL();
}
PoolingOptions poolingOptions = new PoolingOptions();
poolingOptions.setMaxRequestsPerConnection(HostDistance.LOCAL, config.poolSize());
poolingOptions.setMaxRequestsPerConnection(HostDistance.REMOTE, config.poolSize());
poolingOptions.setPoolTimeoutMillis(config.cqlPoolTimeoutMillis());
clusterBuilder.withPoolingOptions(poolingOptions);
// defaults for queries; can override on per-query basis
QueryOptions queryOptions = new QueryOptions();
queryOptions.setFetchSize(config.fetchBatchCount());
clusterBuilder.withQueryOptions(queryOptions);
// Refuse to talk to nodes twice as (latency-wise) slow as the best one, over a timescale of 100ms,
// and every 10s try to re-evaluate ignored nodes performance by giving them queries again.
// Note we are being purposely datacenter-irreverent here, instead relying on latency alone
// to approximate what DCAwareRR would do;
// this is because DCs for Atlas are always quite latency-close and should be used this way,
// not as if we have some cross-country backup DC.
LoadBalancingPolicy policy = LatencyAwarePolicy.builder(new RoundRobinPolicy()).build();
// If user wants, do not automatically add in new nodes to pool (useful during DC migrations / rebuilds)
if (!config.autoRefreshNodes()) {
policy = new WhiteListPolicy(policy, configuredHosts);
}
// also try and select coordinators who own the data we're talking about to avoid an extra hop,
// but also shuffle which replica we talk to for a load balancing that comes at the expense
// of less effective caching
policy = new TokenAwarePolicy(policy, true);
clusterBuilder.withLoadBalancingPolicy(policy);
Metadata metadata;
try {
cluster = clusterBuilder.build();
// special; this is the first place we connect to
metadata = cluster.getMetadata();
// hosts, this is where people will see failures
} catch (NoHostAvailableException e) {
if (e.getMessage().contains("Unknown compression algorithm")) {
clusterBuilder.withCompression(Compression.NONE);
cluster = clusterBuilder.build();
metadata = cluster.getMetadata();
} else {
throw e;
}
} catch (IllegalStateException e) {
// god dammit datastax what did I do to _you_
if (e.getMessage().contains("requested compression is not available")) {
clusterBuilder.withCompression(Compression.NONE);
cluster = clusterBuilder.build();
metadata = cluster.getMetadata();
} else {
throw e;
}
}
session = cluster.connect();
clusterBuilder.withSocketOptions(new SocketOptions().setReadTimeoutMillis(CassandraConstants.LONG_RUNNING_QUERY_SOCKET_TIMEOUT_MILLIS));
longRunningQueryCluster = clusterBuilder.build();
longRunningQuerySession = longRunningQueryCluster.connect();
cqlStatementCache = new CqlStatementCache(session, longRunningQuerySession);
cqlKeyValueServices = new CqlKeyValueServices();
if (log.isInfoEnabled()) {
StringBuilder hostInfo = new StringBuilder();
for (Host host : metadata.getAllHosts()) {
hostInfo.append(String.format("Datatacenter: %s; Host: %s; Rack: %s%n", host.getDatacenter(), host.getAddress(), host.getRack()));
}
log.info("Initialized cassandra cluster using new API with hosts {}, seen keyspaces {}, cluster name {}", hostInfo.toString(), metadata.getKeyspaces(), metadata.getClusterName());
}
}
use of com.datastax.driver.core.QueryOptions in project tutorials by eugenp.
the class CassandraConfiguration method getQueryOptions.
private QueryOptions getQueryOptions(CassandraProperties properties) {
QueryOptions options = new QueryOptions();
if (properties.getConsistencyLevel() != null) {
options.setConsistencyLevel(properties.getConsistencyLevel());
}
if (properties.getSerialConsistencyLevel() != null) {
options.setSerialConsistencyLevel(properties.getSerialConsistencyLevel());
}
options.setFetchSize(properties.getFetchSize());
return options;
}
use of com.datastax.driver.core.QueryOptions in project eventapis by kloiasoft.
the class CassandraSession method getQueryOptions.
private QueryOptions getQueryOptions() {
QueryOptions options = new QueryOptions();
if (eventStoreConfig.getConsistencyLevel() != null) {
options.setConsistencyLevel(eventStoreConfig.getConsistencyLevel());
}
if (eventStoreConfig.getSerialConsistencyLevel() != null) {
options.setSerialConsistencyLevel(eventStoreConfig.getSerialConsistencyLevel());
}
options.setFetchSize(eventStoreConfig.getFetchSize());
return options;
}
use of com.datastax.driver.core.QueryOptions in project jhipster-sample-app-cassandra by jhipster.
the class CassandraConfiguration method getQueryOptions.
private QueryOptions getQueryOptions(CassandraProperties properties) {
QueryOptions options = new QueryOptions();
if (properties.getConsistencyLevel() != null) {
options.setConsistencyLevel(properties.getConsistencyLevel());
}
if (properties.getSerialConsistencyLevel() != null) {
options.setSerialConsistencyLevel(properties.getSerialConsistencyLevel());
}
options.setFetchSize(properties.getFetchSize());
return options;
}
Aggregations