com.scalar.db.storage.cosmos.Cosmos 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
The newest version!
package com.scalar.db.storage.cosmos;
import static com.google.common.base.Preconditions.checkArgument;
import com.azure.cosmos.CosmosClient;
import com.google.common.annotations.VisibleForTesting;
import com.google.inject.Inject;
import com.scalar.db.api.Delete;
import com.scalar.db.api.DistributedStorage;
import com.scalar.db.api.Get;
import com.scalar.db.api.Mutation;
import com.scalar.db.api.Put;
import com.scalar.db.api.Result;
import com.scalar.db.api.Scan;
import com.scalar.db.api.Scanner;
import com.scalar.db.common.AbstractDistributedStorage;
import com.scalar.db.common.FilterableScanner;
import com.scalar.db.common.TableMetadataManager;
import com.scalar.db.common.checker.OperationChecker;
import com.scalar.db.common.error.CoreError;
import com.scalar.db.config.DatabaseConfig;
import com.scalar.db.exception.storage.ExecutionException;
import java.io.IOException;
import java.util.List;
import java.util.Optional;
import javax.annotation.Nonnull;
import javax.annotation.concurrent.ThreadSafe;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* A storage implementation with Cosmos DB for {@link DistributedStorage}
*
* @author Yuji Ito
*/
@ThreadSafe
public class Cosmos extends AbstractDistributedStorage {
private static final Logger logger = LoggerFactory.getLogger(Cosmos.class);
private final CosmosClient client;
private final SelectStatementHandler selectStatementHandler;
private final PutStatementHandler putStatementHandler;
private final DeleteStatementHandler deleteStatementHandler;
private final BatchHandler batchHandler;
private final OperationChecker operationChecker;
@Inject
public Cosmos(DatabaseConfig databaseConfig) {
super(databaseConfig);
if (databaseConfig.isCrossPartitionScanOrderingEnabled()) {
throw new IllegalArgumentException(
CoreError.COSMOS_CROSS_PARTITION_SCAN_WITH_ORDERING_NOT_SUPPORTED.buildMessage());
}
CosmosConfig config = new CosmosConfig(databaseConfig);
client = CosmosUtils.buildCosmosClient(config);
TableMetadataManager metadataManager =
new TableMetadataManager(
new CosmosAdmin(client, config), databaseConfig.getMetadataCacheExpirationTimeSecs());
operationChecker = new CosmosOperationChecker(databaseConfig, metadataManager);
selectStatementHandler = new SelectStatementHandler(client, metadataManager);
putStatementHandler = new PutStatementHandler(client, metadataManager);
deleteStatementHandler = new DeleteStatementHandler(client, metadataManager);
batchHandler = new BatchHandler(client, metadataManager);
logger.info("Cosmos DB object is created properly");
}
@VisibleForTesting
Cosmos(
DatabaseConfig databaseConfig,
CosmosClient client,
SelectStatementHandler select,
PutStatementHandler put,
DeleteStatementHandler delete,
BatchHandler batch,
OperationChecker operationChecker) {
super(databaseConfig);
this.client = client;
this.selectStatementHandler = select;
this.putStatementHandler = put;
this.deleteStatementHandler = delete;
this.batchHandler = batch;
this.operationChecker = operationChecker;
}
// For the SpotBugs warning CT_CONSTRUCTOR_THROW
@Override
protected final void finalize() {}
@Override
@Nonnull
public Optional get(Get get) throws ExecutionException {
get = copyAndSetTargetToIfNot(get);
operationChecker.check(get);
Scanner scanner = null;
try {
if (get.getConjunctions().isEmpty()) {
scanner = selectStatementHandler.handle(get);
} else {
scanner =
new FilterableScanner(
get, selectStatementHandler.handle(copyAndPrepareForDynamicFiltering(get)));
}
Optional ret = scanner.one();
if (scanner.one().isPresent()) {
throw new IllegalArgumentException(
CoreError.GET_OPERATION_USED_FOR_NON_EXACT_MATCH_SELECTION.buildMessage(get));
}
return ret;
} finally {
if (scanner != null) {
try {
scanner.close();
} catch (IOException e) {
logger.warn("Failed to close the scanner", e);
}
}
}
}
@Override
public Scanner scan(Scan scan) throws ExecutionException {
scan = copyAndSetTargetToIfNot(scan);
operationChecker.check(scan);
if (scan.getConjunctions().isEmpty()) {
return selectStatementHandler.handle(scan);
} else {
return new FilterableScanner(
scan, selectStatementHandler.handle(copyAndPrepareForDynamicFiltering(scan)));
}
}
@Override
public void put(Put put) throws ExecutionException {
put = copyAndSetTargetToIfNot(put);
operationChecker.check(put);
putStatementHandler.handle(put);
}
@Override
public void put(List puts) throws ExecutionException {
mutate(puts);
}
@Override
public void delete(Delete delete) throws ExecutionException {
delete = copyAndSetTargetToIfNot(delete);
operationChecker.check(delete);
deleteStatementHandler.handle(delete);
}
@Override
public void delete(List deletes) throws ExecutionException {
mutate(deletes);
}
@Override
public void mutate(List extends Mutation> mutations) throws ExecutionException {
checkArgument(!mutations.isEmpty(), CoreError.EMPTY_MUTATIONS_SPECIFIED);
if (mutations.size() == 1) {
Mutation mutation = mutations.get(0);
if (mutation instanceof Put) {
put((Put) mutation);
return;
} else if (mutation instanceof Delete) {
delete((Delete) mutation);
return;
}
}
mutations = copyAndSetTargetToIfNot(mutations);
operationChecker.check(mutations);
batchHandler.handle(mutations);
}
@Override
public void close() {
client.close();
}
}