X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;ds=sidebyside;f=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fdatastore%2FTransactionProxy.java;h=b1b0a862ff4e48eaf29639e7181a8e10a50a7276;hb=refs%2Fchanges%2F57%2F72657%2F3;hp=0f7c852af284331b4e402f40862d2f10e08482ca;hpb=9a3ef1431ae52c76f700fa3cb62a1f08fbd84cf6;p=controller.git diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/TransactionProxy.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/TransactionProxy.java index 0f7c852af2..b1b0a862ff 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/TransactionProxy.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/TransactionProxy.java @@ -21,11 +21,11 @@ import com.google.common.util.concurrent.MoreExecutors; import com.google.common.util.concurrent.SettableFuture; import java.util.ArrayList; import java.util.Collection; -import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Map.Entry; import java.util.Set; +import java.util.TreeMap; import org.opendaylight.controller.cluster.access.concepts.TransactionIdentifier; import org.opendaylight.controller.cluster.datastore.messages.AbstractRead; import org.opendaylight.controller.cluster.datastore.messages.DataExists; @@ -61,7 +61,29 @@ public class TransactionProxy extends AbstractDOMStoreTransaction txContextWrappers = new HashMap<>(); + // Global lock used for transactions spanning multiple shards - synchronizes sending of the ready messages + // for atomicity to avoid potential deadlock with concurrent transactions spanning the same shards as outlined + // in the following scenario: + // + // - Tx1 sends ready message to shard A + // - Tx2 sends ready message to shard A + // - Tx2 sends ready message to shard B + // - Tx1 sends ready message to shard B + // + // This scenario results in deadlock: after Tx1 canCommits to shard A, it can't proceed with shard B until Tx2 + // completes as Tx2 was readied first on shard B. However Tx2 cannot make progress because it's waiting to canCommit + // on shard A which is blocked by Tx1. + // + // The global lock avoids this as it forces the ready messages to be sent in a predictable order: + // + // - Tx1 sends ready message to shard A + // - Tx1 sends ready message to shard B + // - Tx2 sends ready message to shard A + // - Tx2 sends ready message to shard B + // + private static final Object GLOBAL_TX_READY_LOCK = new Object(); + + private final Map txContextWrappers = new TreeMap<>(); private final AbstractTransactionContextFactory txContextFactory; private final TransactionType type; private TransactionState state = TransactionState.OPEN; @@ -285,17 +307,20 @@ public class TransactionProxy extends AbstractDOMStoreTransaction> txContextWrapperEntries) { final List cohorts = new ArrayList<>(txContextWrapperEntries.size()); - for (Entry e : txContextWrapperEntries) { - LOG.debug("Tx {} Readying transaction for shard {}", getIdentifier(), e.getKey()); - final TransactionContextWrapper wrapper = e.getValue(); + synchronized (GLOBAL_TX_READY_LOCK) { + for (Entry e : txContextWrapperEntries) { + LOG.debug("Tx {} Readying transaction for shard {}", getIdentifier(), e.getKey()); - // The remote tx version is obtained the via TransactionContext which may not be available yet so - // we pass a Supplier to dynamically obtain it. Once the ready Future is resolved the - // TransactionContext is available. - Supplier txVersionSupplier = () -> wrapper.getTransactionContext().getTransactionVersion(); + final TransactionContextWrapper wrapper = e.getValue(); - cohorts.add(new ThreePhaseCommitCohortProxy.CohortInfo(wrapper.readyTransaction(), txVersionSupplier)); + // The remote tx version is obtained the via TransactionContext which may not be available yet so + // we pass a Supplier to dynamically obtain it. Once the ready Future is resolved the + // TransactionContext is available. + Supplier txVersionSupplier = () -> wrapper.getTransactionContext().getTransactionVersion(); + + cohorts.add(new ThreePhaseCommitCohortProxy.CohortInfo(wrapper.readyTransaction(), txVersionSupplier)); + } } return new ThreePhaseCommitCohortProxy(txContextFactory.getActorContext(), cohorts, getIdentifier());