// Copyright 2017 JanusGraph Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package org.janusgraph.diskstorage.locking.consistentkey; import org.janusgraph.diskstorage.BackendException; import org.janusgraph.diskstorage.StaticBuffer; import org.janusgraph.diskstorage.BaseTransactionConfig; import org.janusgraph.diskstorage.configuration.Configuration; import org.janusgraph.diskstorage.configuration.MergedConfiguration; import org.janusgraph.diskstorage.keycolumnvalue.*; import org.janusgraph.diskstorage.locking.LockerProvider; import org.janusgraph.diskstorage.util.StandardBaseTransactionConfig; import java.time.Duration; import java.util.HashMap; import java.util.Map; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * @author Matthias Broecheler (me@matthiasb.com) */ public class ExpectedValueCheckingStoreManager extends KCVSManagerProxy { private final String lockStoreSuffix; private final LockerProvider lockerProvider; private final Duration maxReadTime; private final StoreFeatures storeFeatures; private final Map<String,ExpectedValueCheckingStore> stores; private static final Logger log = LoggerFactory.getLogger(ExpectedValueCheckingStoreManager.class); public ExpectedValueCheckingStoreManager(KeyColumnValueStoreManager storeManager, String lockStoreSuffix, LockerProvider lockerProvider, Duration maxReadTime) { super(storeManager); this.lockStoreSuffix = lockStoreSuffix; this.lockerProvider = lockerProvider; this.maxReadTime = maxReadTime; this.storeFeatures = new StandardStoreFeatures.Builder(storeManager.getFeatures()).locking(true).build(); this.stores = new HashMap<String,ExpectedValueCheckingStore>(6); } @Override public synchronized KeyColumnValueStore openDatabase(String name) throws BackendException { if (stores.containsKey(name)) return stores.get(name); KeyColumnValueStore store = manager.openDatabase(name); final String lockerName = store.getName() + lockStoreSuffix; ExpectedValueCheckingStore wrappedStore = new ExpectedValueCheckingStore(store, lockerProvider.getLocker(lockerName)); stores.put(name,wrappedStore); return wrappedStore; } @Override public void mutateMany(Map<String, Map<StaticBuffer, KCVMutation>> mutations, StoreTransaction txh) throws BackendException { ExpectedValueCheckingTransaction etx = (ExpectedValueCheckingTransaction)txh; boolean hasAtLeastOneLock = etx.prepareForMutations(); if (hasAtLeastOneLock) { // Force all mutations on this transaction to use strong consistency log.debug("Transaction {} holds one or more locks: writing using consistent transaction {} due to held locks", etx, etx.getConsistentTx()); manager.mutateMany(mutations, etx.getConsistentTx()); } else { log.debug("Transaction {} holds no locks: writing mutations using store transaction {}", etx, etx.getInconsistentTx()); manager.mutateMany(mutations, etx.getInconsistentTx()); } } @Override public ExpectedValueCheckingTransaction beginTransaction(BaseTransactionConfig configuration) throws BackendException { // Get a transaction without any guarantees about strong consistency StoreTransaction inconsistentTx = manager.beginTransaction(configuration); // Get a transaction that provides global strong consistency Configuration customOptions = new MergedConfiguration(storeFeatures.getKeyConsistentTxConfig(), configuration.getCustomOptions()); BaseTransactionConfig consistentTxCfg = new StandardBaseTransactionConfig.Builder(configuration) .customOptions(customOptions).build(); StoreTransaction strongConsistentTx = manager.beginTransaction(consistentTxCfg); // Return a wrapper around both the inconsistent and consistent store transactions ExpectedValueCheckingTransaction wrappedTx = new ExpectedValueCheckingTransaction(inconsistentTx, strongConsistentTx, maxReadTime); return wrappedTx; } @Override public StoreFeatures getFeatures() { return storeFeatures; } }