com.scalar.db.storage.cassandra.ClusterManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scalardb Show documentation
Show all versions of scalardb Show documentation
A universal transaction manager that achieves database-agnostic transactions and distributed transactions that span multiple databases
package com.scalar.db.storage.cassandra;
import static com.datastax.driver.core.Metadata.quoteIfNecessary;
import com.datastax.driver.core.Cluster;
import com.datastax.driver.core.KeyspaceMetadata;
import com.datastax.driver.core.Session;
import com.datastax.driver.core.TableMetadata;
import com.datastax.driver.core.policies.DCAwareRoundRobinPolicy;
import com.datastax.driver.core.policies.DefaultRetryPolicy;
import com.datastax.driver.core.policies.TokenAwarePolicy;
import com.google.common.annotations.VisibleForTesting;
import com.scalar.db.config.DatabaseConfig;
import java.util.Objects;
import javax.annotation.concurrent.ThreadSafe;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* A cluster manager
*
* @author Hiroyuki Yamada
*/
@ThreadSafe
public class ClusterManager {
private static final Logger logger = LoggerFactory.getLogger(ClusterManager.class);
private static final int DEFAULT_CASSANDRA_PORT = 9042;
private Cluster cluster;
private Session session;
/**
* Constructs a {@code ClusterManager} with the specified {@code Config}
*
* @param config database configuration needed to create a cluster
*/
public ClusterManager(DatabaseConfig config) {
initialize(Objects.requireNonNull(config));
}
@VisibleForTesting
public ClusterManager(Cluster cluster, Session session) {
this.cluster = cluster;
this.session = session;
}
/**
* Returns a session. It will create a session if it is not created yet.
*
* @return a {@code Session}
*/
public Session getSession() {
return session;
}
/**
* Returns a {@link TableMetadata} with the specified keyspace and table name
*
* @param keyspace keyspace name
* @param table table name
* @return {@code TableMetadata}
*/
public TableMetadata getMetadata(String keyspace, String table) {
KeyspaceMetadata metadata = cluster.getMetadata().getKeyspace(quoteIfNecessary(keyspace));
if (metadata == null) {
return null;
}
return metadata.getTable(quoteIfNecessary(table));
}
/** Closes the cluster. */
public void close() {
cluster.close();
}
private void initialize(DatabaseConfig config) {
cluster = getCluster(config);
session = cluster.connect();
logger.info("session to the cluster is created.");
}
private Cluster getCluster(DatabaseConfig config) {
Cluster.Builder builder =
Cluster.builder()
.withClusterName("Scalar Cluster")
.addContactPoints(config.getContactPoints().toArray(new String[0]))
.withPort(
config.getContactPort() == 0 ? DEFAULT_CASSANDRA_PORT : config.getContactPort())
.withoutJMXReporting()
// .withCompression ?
// .withPoolingOptions ?
.withRetryPolicy(DefaultRetryPolicy.INSTANCE)
.withLoadBalancingPolicy(
new TokenAwarePolicy(DCAwareRoundRobinPolicy.builder().build()));
if (config.getUsername().isPresent() && config.getPassword().isPresent()) {
builder.withCredentials(config.getUsername().get(), config.getPassword().get());
}
return builder.build();
}
}