Add transaction debugs
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / ShardDataTree.java
1 /*
2  * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.cluster.datastore;
9
10 import akka.actor.ActorRef;
11 import akka.util.Timeout;
12 import com.google.common.annotations.VisibleForTesting;
13 import com.google.common.base.MoreObjects;
14 import com.google.common.base.Optional;
15 import com.google.common.base.Preconditions;
16 import com.google.common.base.Stopwatch;
17 import com.google.common.base.Verify;
18 import com.google.common.collect.ImmutableList;
19 import com.google.common.collect.ImmutableMap;
20 import com.google.common.collect.ImmutableMap.Builder;
21 import com.google.common.collect.Iterables;
22 import com.google.common.primitives.UnsignedLong;
23 import com.google.common.util.concurrent.FutureCallback;
24 import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
25 import java.io.File;
26 import java.io.IOException;
27 import java.util.ArrayDeque;
28 import java.util.ArrayList;
29 import java.util.Collection;
30 import java.util.Collections;
31 import java.util.Deque;
32 import java.util.HashMap;
33 import java.util.Iterator;
34 import java.util.Map;
35 import java.util.Map.Entry;
36 import java.util.Queue;
37 import java.util.SortedSet;
38 import java.util.concurrent.TimeUnit;
39 import java.util.concurrent.TimeoutException;
40 import java.util.function.Consumer;
41 import java.util.function.Function;
42 import java.util.function.UnaryOperator;
43 import javax.annotation.Nonnull;
44 import javax.annotation.Nullable;
45 import javax.annotation.concurrent.NotThreadSafe;
46 import org.opendaylight.controller.cluster.access.concepts.LocalHistoryIdentifier;
47 import org.opendaylight.controller.cluster.access.concepts.TransactionIdentifier;
48 import org.opendaylight.controller.cluster.datastore.DataTreeCohortActorRegistry.CohortRegistryCommand;
49 import org.opendaylight.controller.cluster.datastore.ShardDataTreeCohort.State;
50 import org.opendaylight.controller.cluster.datastore.jmx.mbeans.shard.ShardStats;
51 import org.opendaylight.controller.cluster.datastore.persisted.AbortTransactionPayload;
52 import org.opendaylight.controller.cluster.datastore.persisted.AbstractIdentifiablePayload;
53 import org.opendaylight.controller.cluster.datastore.persisted.CloseLocalHistoryPayload;
54 import org.opendaylight.controller.cluster.datastore.persisted.CommitTransactionPayload;
55 import org.opendaylight.controller.cluster.datastore.persisted.CreateLocalHistoryPayload;
56 import org.opendaylight.controller.cluster.datastore.persisted.MetadataShardDataTreeSnapshot;
57 import org.opendaylight.controller.cluster.datastore.persisted.PurgeLocalHistoryPayload;
58 import org.opendaylight.controller.cluster.datastore.persisted.PurgeTransactionPayload;
59 import org.opendaylight.controller.cluster.datastore.persisted.ShardDataTreeSnapshot;
60 import org.opendaylight.controller.cluster.datastore.persisted.ShardDataTreeSnapshotMetadata;
61 import org.opendaylight.controller.cluster.datastore.utils.DataTreeModificationOutput;
62 import org.opendaylight.controller.cluster.datastore.utils.PruningDataTreeModification;
63 import org.opendaylight.controller.cluster.raft.protobuff.client.messages.Payload;
64 import org.opendaylight.mdsal.common.api.OptimisticLockFailedException;
65 import org.opendaylight.mdsal.common.api.TransactionCommitFailedException;
66 import org.opendaylight.mdsal.dom.api.DOMDataTreeChangeListener;
67 import org.opendaylight.yangtools.concepts.Identifier;
68 import org.opendaylight.yangtools.concepts.ListenerRegistration;
69 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
70 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
71 import org.opendaylight.yangtools.yang.data.api.schema.tree.ConflictingModificationAppliedException;
72 import org.opendaylight.yangtools.yang.data.api.schema.tree.DataTree;
73 import org.opendaylight.yangtools.yang.data.api.schema.tree.DataTreeCandidate;
74 import org.opendaylight.yangtools.yang.data.api.schema.tree.DataTreeCandidateTip;
75 import org.opendaylight.yangtools.yang.data.api.schema.tree.DataTreeCandidates;
76 import org.opendaylight.yangtools.yang.data.api.schema.tree.DataTreeConfiguration;
77 import org.opendaylight.yangtools.yang.data.api.schema.tree.DataTreeModification;
78 import org.opendaylight.yangtools.yang.data.api.schema.tree.DataTreeSnapshot;
79 import org.opendaylight.yangtools.yang.data.api.schema.tree.DataTreeTip;
80 import org.opendaylight.yangtools.yang.data.api.schema.tree.DataValidationFailedException;
81 import org.opendaylight.yangtools.yang.data.api.schema.tree.TreeType;
82 import org.opendaylight.yangtools.yang.data.impl.schema.tree.InMemoryDataTreeFactory;
83 import org.opendaylight.yangtools.yang.data.util.DataSchemaContextTree;
84 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
85 import org.slf4j.Logger;
86 import org.slf4j.LoggerFactory;
87 import scala.concurrent.duration.FiniteDuration;
88
89 /**
90  * Internal shard state, similar to a DOMStore, but optimized for use in the actor system,
91  * e.g. it does not expose public interfaces and assumes it is only ever called from a
92  * single thread.
93  *
94  * <p>
95  * This class is not part of the API contract and is subject to change at any time.
96  */
97 @NotThreadSafe
98 public class ShardDataTree extends ShardDataTreeTransactionParent {
99     private static final class CommitEntry {
100         final SimpleShardDataTreeCohort cohort;
101         long lastAccess;
102
103         CommitEntry(final SimpleShardDataTreeCohort cohort, final long now) {
104             this.cohort = Preconditions.checkNotNull(cohort);
105             lastAccess = now;
106         }
107
108         @Override
109         public String toString() {
110             return "CommitEntry [tx=" + cohort.getIdentifier() + ", state=" + cohort.getState() + "]";
111         }
112     }
113
114     private static final Timeout COMMIT_STEP_TIMEOUT = new Timeout(FiniteDuration.create(5, TimeUnit.SECONDS));
115     private static final Logger LOG = LoggerFactory.getLogger(ShardDataTree.class);
116
117     /**
118      * Process this many transactions in a single batched run. If we exceed this limit, we need to schedule later
119      * execution to finish up the batch. This is necessary in case of a long list of transactions which progress
120      * immediately through their preCommit phase -- if that happens, their completion eats up stack frames and could
121      * result in StackOverflowError.
122      */
123     private static final int MAX_TRANSACTION_BATCH = 100;
124
125     private final Map<LocalHistoryIdentifier, ShardDataTreeTransactionChain> transactionChains = new HashMap<>();
126     private final DataTreeCohortActorRegistry cohortRegistry = new DataTreeCohortActorRegistry();
127     private final Deque<CommitEntry> pendingTransactions = new ArrayDeque<>();
128     private final Queue<CommitEntry> pendingCommits = new ArrayDeque<>();
129     private final Queue<CommitEntry> pendingFinishCommits = new ArrayDeque<>();
130
131     /**
132      * Callbacks that need to be invoked once a payload is replicated.
133      */
134     private final Map<Payload, Runnable> replicationCallbacks = new HashMap<>();
135
136     private final ShardDataTreeChangeListenerPublisher treeChangeListenerPublisher;
137     private final Collection<ShardDataTreeMetadata<?>> metadata;
138     private final DataTree dataTree;
139     private final String logContext;
140     private final Shard shard;
141     private Runnable runOnPendingTransactionsComplete;
142
143     /**
144      * Optimistic {@link DataTreeCandidate} preparation. Since our DataTree implementation is a
145      * {@link DataTree}, each {@link DataTreeCandidate} is also a {@link DataTreeTip}, e.g. another
146      * candidate can be prepared on top of it. They still need to be committed in sequence. Here we track the current
147      * tip of the data tree, which is the last DataTreeCandidate we have in flight, or the DataTree itself.
148      */
149     private DataTreeTip tip;
150
151     private SchemaContext schemaContext;
152     private DataSchemaContextTree dataSchemaContext;
153
154     private int currentTransactionBatch;
155
156     ShardDataTree(final Shard shard, final SchemaContext schemaContext, final DataTree dataTree,
157             final ShardDataTreeChangeListenerPublisher treeChangeListenerPublisher,
158             final String logContext,
159             final ShardDataTreeMetadata<?>... metadata) {
160         this.dataTree = Preconditions.checkNotNull(dataTree);
161         updateSchemaContext(schemaContext);
162
163         this.shard = Preconditions.checkNotNull(shard);
164         this.treeChangeListenerPublisher = Preconditions.checkNotNull(treeChangeListenerPublisher);
165         this.logContext = Preconditions.checkNotNull(logContext);
166         this.metadata = ImmutableList.copyOf(metadata);
167         tip = dataTree;
168     }
169
170     ShardDataTree(final Shard shard, final SchemaContext schemaContext, final TreeType treeType,
171             final YangInstanceIdentifier root,
172             final ShardDataTreeChangeListenerPublisher treeChangeListenerPublisher,
173             final String logContext,
174             final ShardDataTreeMetadata<?>... metadata) {
175         this(shard, schemaContext, createDataTree(treeType, root), treeChangeListenerPublisher, logContext, metadata);
176     }
177
178     private static DataTree createDataTree(final TreeType treeType, final YangInstanceIdentifier root) {
179         final DataTreeConfiguration baseConfig = DataTreeConfiguration.getDefault(treeType);
180         return new InMemoryDataTreeFactory().create(new DataTreeConfiguration.Builder(baseConfig.getTreeType())
181                 .setMandatoryNodesValidation(baseConfig.isMandatoryNodesValidationEnabled())
182                 .setUniqueIndexes(baseConfig.isUniqueIndexEnabled())
183                 .setRootPath(root)
184                 .build());
185     }
186
187     @VisibleForTesting
188     public ShardDataTree(final Shard shard, final SchemaContext schemaContext, final TreeType treeType) {
189         this(shard, schemaContext, treeType, YangInstanceIdentifier.EMPTY,
190                 new DefaultShardDataTreeChangeListenerPublisher(""), "");
191     }
192
193     final String logContext() {
194         return logContext;
195     }
196
197     final long readTime() {
198         return shard.ticker().read();
199     }
200
201     public DataTree getDataTree() {
202         return dataTree;
203     }
204
205     SchemaContext getSchemaContext() {
206         return schemaContext;
207     }
208
209     void updateSchemaContext(final SchemaContext newSchemaContext) {
210         dataTree.setSchemaContext(newSchemaContext);
211         this.schemaContext = Preconditions.checkNotNull(newSchemaContext);
212         this.dataSchemaContext = DataSchemaContextTree.from(newSchemaContext);
213     }
214
215     void resetTransactionBatch() {
216         currentTransactionBatch = 0;
217     }
218
219     /**
220      * Take a snapshot of current state for later recovery.
221      *
222      * @return A state snapshot
223      */
224     @Nonnull ShardDataTreeSnapshot takeStateSnapshot() {
225         final NormalizedNode<?, ?> rootNode = dataTree.takeSnapshot().readNode(YangInstanceIdentifier.EMPTY).get();
226         final Builder<Class<? extends ShardDataTreeSnapshotMetadata<?>>, ShardDataTreeSnapshotMetadata<?>> metaBuilder =
227                 ImmutableMap.builder();
228
229         for (ShardDataTreeMetadata<?> m : metadata) {
230             final ShardDataTreeSnapshotMetadata<?> meta = m.toSnapshot();
231             if (meta != null) {
232                 metaBuilder.put(meta.getType(), meta);
233             }
234         }
235
236         return new MetadataShardDataTreeSnapshot(rootNode, metaBuilder.build());
237     }
238
239     private boolean anyPendingTransactions() {
240         return !pendingTransactions.isEmpty() || !pendingCommits.isEmpty() || !pendingFinishCommits.isEmpty();
241     }
242
243     private void applySnapshot(@Nonnull final ShardDataTreeSnapshot snapshot,
244             final UnaryOperator<DataTreeModification> wrapper) throws DataValidationFailedException {
245         final Stopwatch elapsed = Stopwatch.createStarted();
246
247         if (anyPendingTransactions()) {
248             LOG.warn("{}: applying state snapshot with pending transactions", logContext);
249         }
250
251         final Map<Class<? extends ShardDataTreeSnapshotMetadata<?>>, ShardDataTreeSnapshotMetadata<?>> snapshotMeta;
252         if (snapshot instanceof MetadataShardDataTreeSnapshot) {
253             snapshotMeta = ((MetadataShardDataTreeSnapshot) snapshot).getMetadata();
254         } else {
255             snapshotMeta = ImmutableMap.of();
256         }
257
258         for (ShardDataTreeMetadata<?> m : metadata) {
259             final ShardDataTreeSnapshotMetadata<?> s = snapshotMeta.get(m.getSupportedType());
260             if (s != null) {
261                 m.applySnapshot(s);
262             } else {
263                 m.reset();
264             }
265         }
266
267         final DataTreeModification mod = wrapper.apply(dataTree.takeSnapshot().newModification());
268         // delete everything first
269         mod.delete(YangInstanceIdentifier.EMPTY);
270
271         final java.util.Optional<NormalizedNode<?, ?>> maybeNode = snapshot.getRootNode();
272         if (maybeNode.isPresent()) {
273             // Add everything from the remote node back
274             mod.write(YangInstanceIdentifier.EMPTY, maybeNode.get());
275         }
276         mod.ready();
277
278         final DataTreeModification unwrapped = unwrap(mod);
279         dataTree.validate(unwrapped);
280         DataTreeCandidateTip candidate = dataTree.prepare(unwrapped);
281         dataTree.commit(candidate);
282         notifyListeners(candidate);
283
284         LOG.debug("{}: state snapshot applied in {}", logContext, elapsed);
285     }
286
287     /**
288      * Apply a snapshot coming from the leader. This method assumes the leader and follower SchemaContexts match and
289      * does not perform any pruning.
290      *
291      * @param snapshot Snapshot that needs to be applied
292      * @throws DataValidationFailedException when the snapshot fails to apply
293      */
294     void applySnapshot(@Nonnull final ShardDataTreeSnapshot snapshot) throws DataValidationFailedException {
295         applySnapshot(snapshot, UnaryOperator.identity());
296     }
297
298     private PruningDataTreeModification wrapWithPruning(final DataTreeModification delegate) {
299         return new PruningDataTreeModification(delegate, dataTree, dataSchemaContext);
300     }
301
302     private static DataTreeModification unwrap(final DataTreeModification modification) {
303         if (modification instanceof PruningDataTreeModification) {
304             return ((PruningDataTreeModification)modification).delegate();
305         }
306         return modification;
307     }
308
309     /**
310      * Apply a snapshot coming from recovery. This method does not assume the SchemaContexts match and performs data
311      * pruning in an attempt to adjust the state to our current SchemaContext.
312      *
313      * @param snapshot Snapshot that needs to be applied
314      * @throws DataValidationFailedException when the snapshot fails to apply
315      */
316     void applyRecoverySnapshot(@Nonnull final ShardDataTreeSnapshot snapshot) throws DataValidationFailedException {
317         applySnapshot(snapshot, this::wrapWithPruning);
318     }
319
320     @SuppressWarnings("checkstyle:IllegalCatch")
321     private void applyRecoveryCandidate(final DataTreeCandidate candidate) {
322         final PruningDataTreeModification mod = wrapWithPruning(dataTree.takeSnapshot().newModification());
323         DataTreeCandidates.applyToModification(mod, candidate);
324         mod.ready();
325
326         final DataTreeModification unwrapped = mod.delegate();
327         LOG.trace("{}: Applying recovery modification {}", logContext, unwrapped);
328
329         try {
330             dataTree.validate(unwrapped);
331             dataTree.commit(dataTree.prepare(unwrapped));
332         } catch (Exception e) {
333             File file = new File(System.getProperty("karaf.data", "."),
334                     "failed-recovery-payload-" + logContext + ".out");
335             DataTreeModificationOutput.toFile(file, unwrapped);
336             throw new IllegalStateException(String.format(
337                     "%s: Failed to apply recovery payload. Modification data was written to file %s",
338                     logContext, file), e);
339         }
340     }
341
342     /**
343      * Apply a payload coming from recovery. This method does not assume the SchemaContexts match and performs data
344      * pruning in an attempt to adjust the state to our current SchemaContext.
345      *
346      * @param payload Payload
347      * @throws IOException when the snapshot fails to deserialize
348      * @throws DataValidationFailedException when the snapshot fails to apply
349      */
350     void applyRecoveryPayload(@Nonnull final Payload payload) throws IOException {
351         if (payload instanceof CommitTransactionPayload) {
352             final Entry<TransactionIdentifier, DataTreeCandidate> e =
353                     ((CommitTransactionPayload) payload).getCandidate();
354             applyRecoveryCandidate(e.getValue());
355             allMetadataCommittedTransaction(e.getKey());
356         } else if (payload instanceof AbortTransactionPayload) {
357             allMetadataAbortedTransaction(((AbortTransactionPayload) payload).getIdentifier());
358         } else if (payload instanceof PurgeTransactionPayload) {
359             allMetadataPurgedTransaction(((PurgeTransactionPayload) payload).getIdentifier());
360         } else if (payload instanceof CreateLocalHistoryPayload) {
361             allMetadataCreatedLocalHistory(((CreateLocalHistoryPayload) payload).getIdentifier());
362         } else if (payload instanceof CloseLocalHistoryPayload) {
363             allMetadataClosedLocalHistory(((CloseLocalHistoryPayload) payload).getIdentifier());
364         } else if (payload instanceof PurgeLocalHistoryPayload) {
365             allMetadataPurgedLocalHistory(((PurgeLocalHistoryPayload) payload).getIdentifier());
366         } else {
367             LOG.debug("{}: ignoring unhandled payload {}", logContext, payload);
368         }
369     }
370
371     private void applyReplicatedCandidate(final TransactionIdentifier identifier, final DataTreeCandidate foreign)
372             throws DataValidationFailedException {
373         LOG.debug("{}: Applying foreign transaction {}", logContext, identifier);
374
375         final DataTreeModification mod = dataTree.takeSnapshot().newModification();
376         DataTreeCandidates.applyToModification(mod, foreign);
377         mod.ready();
378
379         LOG.trace("{}: Applying foreign modification {}", logContext, mod);
380         dataTree.validate(mod);
381         final DataTreeCandidate candidate = dataTree.prepare(mod);
382         dataTree.commit(candidate);
383
384         allMetadataCommittedTransaction(identifier);
385         notifyListeners(candidate);
386     }
387
388     /**
389      * Apply a payload coming from the leader, which could actually be us. This method assumes the leader and follower
390      * SchemaContexts match and does not perform any pruning.
391      *
392      * @param identifier Payload identifier as returned from RaftActor
393      * @param payload Payload
394      * @throws IOException when the snapshot fails to deserialize
395      * @throws DataValidationFailedException when the snapshot fails to apply
396      */
397     void applyReplicatedPayload(final Identifier identifier, final Payload payload) throws IOException,
398             DataValidationFailedException {
399         /*
400          * This is a bit more involved than it needs to be due to to the fact we do not want to be touching the payload
401          * if we are the leader and it has originated with us.
402          *
403          * The identifier will only ever be non-null when we were the leader which achieved consensus. Unfortunately,
404          * though, this may not be the case anymore, as we are being called some time afterwards and we may not be
405          * acting in that capacity anymore.
406          *
407          * In any case, we know that this is an entry coming from replication, hence we can be sure we will not observe
408          * pre-Boron state -- which limits the number of options here.
409          */
410         if (payload instanceof CommitTransactionPayload) {
411             if (identifier == null) {
412                 final Entry<TransactionIdentifier, DataTreeCandidate> e =
413                         ((CommitTransactionPayload) payload).getCandidate();
414                 applyReplicatedCandidate(e.getKey(), e.getValue());
415             } else {
416                 Verify.verify(identifier instanceof TransactionIdentifier);
417                 payloadReplicationComplete((TransactionIdentifier) identifier);
418             }
419         } else if (payload instanceof AbortTransactionPayload) {
420             if (identifier != null) {
421                 payloadReplicationComplete((AbortTransactionPayload) payload);
422             }
423             allMetadataAbortedTransaction(((AbortTransactionPayload) payload).getIdentifier());
424         } else if (payload instanceof PurgeTransactionPayload) {
425             if (identifier != null) {
426                 payloadReplicationComplete((PurgeTransactionPayload) payload);
427             }
428             allMetadataPurgedTransaction(((PurgeTransactionPayload) payload).getIdentifier());
429         } else if (payload instanceof CloseLocalHistoryPayload) {
430             if (identifier != null) {
431                 payloadReplicationComplete((CloseLocalHistoryPayload) payload);
432             }
433             allMetadataClosedLocalHistory(((CloseLocalHistoryPayload) payload).getIdentifier());
434         } else if (payload instanceof CreateLocalHistoryPayload) {
435             if (identifier != null) {
436                 payloadReplicationComplete((CreateLocalHistoryPayload)payload);
437             }
438             allMetadataCreatedLocalHistory(((CreateLocalHistoryPayload) payload).getIdentifier());
439         } else if (payload instanceof PurgeLocalHistoryPayload) {
440             if (identifier != null) {
441                 payloadReplicationComplete((PurgeLocalHistoryPayload)payload);
442             }
443             allMetadataPurgedLocalHistory(((PurgeLocalHistoryPayload) payload).getIdentifier());
444         } else {
445             LOG.warn("{}: ignoring unhandled identifier {} payload {}", logContext, identifier, payload);
446         }
447     }
448
449     private void replicatePayload(final Identifier id, final Payload payload, @Nullable final Runnable callback) {
450         if (callback != null) {
451             replicationCallbacks.put(payload, callback);
452         }
453         shard.persistPayload(id, payload, true);
454     }
455
456     private void payloadReplicationComplete(final AbstractIdentifiablePayload<?> payload) {
457         final Runnable callback = replicationCallbacks.remove(payload);
458         if (callback != null) {
459             LOG.debug("{}: replication of {} completed, invoking {}", logContext, payload.getIdentifier(), callback);
460             callback.run();
461         } else {
462             LOG.debug("{}: replication of {} has no callback", logContext, payload.getIdentifier());
463         }
464     }
465
466     private void payloadReplicationComplete(final TransactionIdentifier txId) {
467         final CommitEntry current = pendingFinishCommits.peek();
468         if (current == null) {
469             LOG.warn("{}: No outstanding transactions, ignoring consensus on transaction {}", logContext, txId);
470             allMetadataCommittedTransaction(txId);
471             return;
472         }
473
474         if (!current.cohort.getIdentifier().equals(txId)) {
475             LOG.debug("{}: Head of pendingFinishCommits queue is {}, ignoring consensus on transaction {}", logContext,
476                 current.cohort.getIdentifier(), txId);
477             allMetadataCommittedTransaction(txId);
478             return;
479         }
480
481         finishCommit(current.cohort);
482     }
483
484     private void allMetadataAbortedTransaction(final TransactionIdentifier txId) {
485         for (ShardDataTreeMetadata<?> m : metadata) {
486             m.onTransactionAborted(txId);
487         }
488     }
489
490     private void allMetadataCommittedTransaction(final TransactionIdentifier txId) {
491         for (ShardDataTreeMetadata<?> m : metadata) {
492             m.onTransactionCommitted(txId);
493         }
494     }
495
496     private void allMetadataPurgedTransaction(final TransactionIdentifier txId) {
497         for (ShardDataTreeMetadata<?> m : metadata) {
498             m.onTransactionPurged(txId);
499         }
500     }
501
502     private void allMetadataCreatedLocalHistory(final LocalHistoryIdentifier historyId) {
503         for (ShardDataTreeMetadata<?> m : metadata) {
504             m.onHistoryCreated(historyId);
505         }
506     }
507
508     private void allMetadataClosedLocalHistory(final LocalHistoryIdentifier historyId) {
509         for (ShardDataTreeMetadata<?> m : metadata) {
510             m.onHistoryClosed(historyId);
511         }
512     }
513
514     private void allMetadataPurgedLocalHistory(final LocalHistoryIdentifier historyId) {
515         for (ShardDataTreeMetadata<?> m : metadata) {
516             m.onHistoryPurged(historyId);
517         }
518     }
519
520     /**
521      * Create a transaction chain for specified history. Unlike {@link #ensureTransactionChain(LocalHistoryIdentifier)},
522      * this method is used for re-establishing state when we are taking over
523      *
524      * @param historyId Local history identifier
525      * @param closed True if the chain should be created in closed state (i.e. pending purge)
526      * @return Transaction chain handle
527      */
528     ShardDataTreeTransactionChain recreateTransactionChain(final LocalHistoryIdentifier historyId,
529             final boolean closed) {
530         final ShardDataTreeTransactionChain ret = new ShardDataTreeTransactionChain(historyId, this);
531         final ShardDataTreeTransactionChain existing = transactionChains.putIfAbsent(historyId, ret);
532         Preconditions.checkState(existing == null, "Attempted to recreate chain %s, but %s already exists", historyId,
533                 existing);
534         return ret;
535     }
536
537     ShardDataTreeTransactionChain ensureTransactionChain(final LocalHistoryIdentifier historyId,
538             @Nullable final Runnable callback) {
539         ShardDataTreeTransactionChain chain = transactionChains.get(historyId);
540         if (chain == null) {
541             chain = new ShardDataTreeTransactionChain(historyId, this);
542             transactionChains.put(historyId, chain);
543             replicatePayload(historyId, CreateLocalHistoryPayload.create(
544                     historyId, shard.getDatastoreContext().getInitialPayloadSerializedBufferCapacity()), callback);
545         } else if (callback != null) {
546             callback.run();
547         }
548
549         return chain;
550     }
551
552     ReadOnlyShardDataTreeTransaction newReadOnlyTransaction(final TransactionIdentifier txId) {
553         if (txId.getHistoryId().getHistoryId() == 0) {
554             return new ReadOnlyShardDataTreeTransaction(this, txId, dataTree.takeSnapshot());
555         }
556
557         return ensureTransactionChain(txId.getHistoryId(), null).newReadOnlyTransaction(txId);
558     }
559
560     ReadWriteShardDataTreeTransaction newReadWriteTransaction(final TransactionIdentifier txId) {
561         if (txId.getHistoryId().getHistoryId() == 0) {
562             return new ReadWriteShardDataTreeTransaction(ShardDataTree.this, txId, dataTree.takeSnapshot()
563                     .newModification());
564         }
565
566         return ensureTransactionChain(txId.getHistoryId(), null).newReadWriteTransaction(txId);
567     }
568
569     @VisibleForTesting
570     public void notifyListeners(final DataTreeCandidate candidate) {
571         treeChangeListenerPublisher.publishChanges(candidate);
572     }
573
574     /**
575      * Immediately purge all state relevant to leader. This includes all transaction chains and any scheduled
576      * replication callbacks.
577      */
578     void purgeLeaderState() {
579         for (ShardDataTreeTransactionChain chain : transactionChains.values()) {
580             chain.close();
581         }
582
583         transactionChains.clear();
584         replicationCallbacks.clear();
585     }
586
587     /**
588      * Close a single transaction chain.
589      *
590      * @param id History identifier
591      * @param callback Callback to invoke upon completion, may be null
592      */
593     void closeTransactionChain(final LocalHistoryIdentifier id, @Nullable final Runnable callback) {
594         if (commonCloseTransactionChain(id, callback)) {
595             replicatePayload(id, CloseLocalHistoryPayload.create(id,
596                 shard.getDatastoreContext().getInitialPayloadSerializedBufferCapacity()), callback);
597         }
598     }
599
600     /**
601      * Close a single transaction chain which is received through ask-based protocol. It does not keep a commit record.
602      *
603      * @param id History identifier
604      */
605     void closeTransactionChain(final LocalHistoryIdentifier id) {
606         commonCloseTransactionChain(id, null);
607     }
608
609     private boolean commonCloseTransactionChain(final LocalHistoryIdentifier id, @Nullable final Runnable callback) {
610         final ShardDataTreeTransactionChain chain = transactionChains.get(id);
611         if (chain == null) {
612             LOG.debug("{}: Closing non-existent transaction chain {}", logContext, id);
613             if (callback != null) {
614                 callback.run();
615             }
616             return false;
617         }
618
619         chain.close();
620         return true;
621     }
622
623     /**
624      * Purge a single transaction chain.
625      *
626      * @param id History identifier
627      * @param callback Callback to invoke upon completion, may be null
628      */
629     void purgeTransactionChain(final LocalHistoryIdentifier id, @Nullable final Runnable callback) {
630         final ShardDataTreeTransactionChain chain = transactionChains.remove(id);
631         if (chain == null) {
632             LOG.debug("{}: Purging non-existent transaction chain {}", logContext, id);
633             if (callback != null) {
634                 callback.run();
635             }
636             return;
637         }
638
639         replicatePayload(id, PurgeLocalHistoryPayload.create(
640                 id, shard.getDatastoreContext().getInitialPayloadSerializedBufferCapacity()), callback);
641     }
642
643     Optional<DataTreeCandidate> readCurrentData() {
644         final java.util.Optional<NormalizedNode<?, ?>> currentState =
645                 dataTree.takeSnapshot().readNode(YangInstanceIdentifier.EMPTY);
646         return currentState.isPresent() ? Optional.of(DataTreeCandidates.fromNormalizedNode(
647             YangInstanceIdentifier.EMPTY, currentState.get())) : Optional.<DataTreeCandidate>absent();
648     }
649
650     public void registerTreeChangeListener(final YangInstanceIdentifier path, final DOMDataTreeChangeListener listener,
651             final Optional<DataTreeCandidate> initialState,
652             final Consumer<ListenerRegistration<DOMDataTreeChangeListener>> onRegistration) {
653         treeChangeListenerPublisher.registerTreeChangeListener(path, listener, initialState, onRegistration);
654     }
655
656     int getQueueSize() {
657         return pendingTransactions.size() + pendingCommits.size() + pendingFinishCommits.size();
658     }
659
660     @Override
661     void abortTransaction(final AbstractShardDataTreeTransaction<?> transaction, final Runnable callback) {
662         final TransactionIdentifier id = transaction.getIdentifier();
663         LOG.debug("{}: aborting transaction {}", logContext, id);
664         replicatePayload(id, AbortTransactionPayload.create(
665                 id, shard.getDatastoreContext().getInitialPayloadSerializedBufferCapacity()), callback);
666     }
667
668     @Override
669     void abortFromTransactionActor(final AbstractShardDataTreeTransaction<?> transaction) {
670         // No-op for free-standing transactions
671
672     }
673
674     @Override
675     ShardDataTreeCohort finishTransaction(final ReadWriteShardDataTreeTransaction transaction,
676             final java.util.Optional<SortedSet<String>> participatingShardNames) {
677         final DataTreeModification snapshot = transaction.getSnapshot();
678         final TransactionIdentifier id = transaction.getIdentifier();
679         LOG.debug("{}: readying transaction {}", logContext, id);
680         snapshot.ready();
681         LOG.debug("{}: transaction {} ready", logContext, id);
682
683         return createReadyCohort(transaction.getIdentifier(), snapshot, participatingShardNames);
684     }
685
686     void purgeTransaction(final TransactionIdentifier id, final Runnable callback) {
687         LOG.debug("{}: purging transaction {}", logContext, id);
688         replicatePayload(id, PurgeTransactionPayload.create(
689                 id, shard.getDatastoreContext().getInitialPayloadSerializedBufferCapacity()), callback);
690     }
691
692     public Optional<NormalizedNode<?, ?>> readNode(final YangInstanceIdentifier path) {
693         return Optional.fromJavaUtil(dataTree.takeSnapshot().readNode(path));
694     }
695
696     DataTreeSnapshot takeSnapshot() {
697         return dataTree.takeSnapshot();
698     }
699
700     @VisibleForTesting
701     public DataTreeModification newModification() {
702         return dataTree.takeSnapshot().newModification();
703     }
704
705     public Collection<ShardDataTreeCohort> getAndClearPendingTransactions() {
706         Collection<ShardDataTreeCohort> ret = new ArrayList<>(getQueueSize());
707
708         for (CommitEntry entry: pendingFinishCommits) {
709             ret.add(entry.cohort);
710         }
711
712         for (CommitEntry entry: pendingCommits) {
713             ret.add(entry.cohort);
714         }
715
716         for (CommitEntry entry: pendingTransactions) {
717             ret.add(entry.cohort);
718         }
719
720         pendingFinishCommits.clear();
721         pendingCommits.clear();
722         pendingTransactions.clear();
723         tip = dataTree;
724         return ret;
725     }
726
727     /**
728      * Called some time after {@link #processNextPendingTransaction()} decides to stop processing.
729      */
730     void resumeNextPendingTransaction() {
731         LOG.debug("{}: attempting to resume transaction processing", logContext);
732         processNextPending();
733     }
734
735     @SuppressWarnings("checkstyle:IllegalCatch")
736     private void processNextPendingTransaction() {
737         ++currentTransactionBatch;
738         if (currentTransactionBatch > MAX_TRANSACTION_BATCH) {
739             LOG.debug("{}: Already processed {}, scheduling continuation", logContext, currentTransactionBatch);
740             shard.scheduleNextPendingTransaction();
741             return;
742         }
743
744         processNextPending(pendingTransactions, State.CAN_COMMIT_PENDING, entry -> {
745             final SimpleShardDataTreeCohort cohort = entry.cohort;
746             final DataTreeModification modification = cohort.getDataTreeModification();
747
748             LOG.debug("{}: Validating transaction {}", logContext, cohort.getIdentifier());
749             Exception cause;
750             try {
751                 tip.validate(modification);
752                 LOG.debug("{}: Transaction {} validated", logContext, cohort.getIdentifier());
753                 cohort.successfulCanCommit();
754                 entry.lastAccess = readTime();
755                 return;
756             } catch (ConflictingModificationAppliedException e) {
757                 LOG.warn("{}: Store Tx {}: Conflicting modification for path {}.", logContext, cohort.getIdentifier(),
758                     e.getPath());
759                 cause = new OptimisticLockFailedException("Optimistic lock failed for path " + e.getPath(), e);
760             } catch (DataValidationFailedException e) {
761                 LOG.warn("{}: Store Tx {}: Data validation failed for path {}.", logContext, cohort.getIdentifier(),
762                     e.getPath(), e);
763
764                 // For debugging purposes, allow dumping of the modification. Coupled with the above
765                 // precondition log, it should allow us to understand what went on.
766                 LOG.debug("{}: Store Tx {}: modifications: {} tree: {}", logContext, cohort.getIdentifier(),
767                     modification, dataTree);
768                 cause = new TransactionCommitFailedException("Data did not pass validation for path " + e.getPath(), e);
769             } catch (Exception e) {
770                 LOG.warn("{}: Unexpected failure in validation phase", logContext, e);
771                 cause = e;
772             }
773
774             // Failure path: propagate the failure, remove the transaction from the queue and loop to the next one
775             pendingTransactions.poll().cohort.failedCanCommit(cause);
776         });
777     }
778
779     private void processNextPending() {
780         processNextPendingCommit();
781         processNextPendingTransaction();
782     }
783
784     private void processNextPending(final Queue<CommitEntry> queue, final State allowedState,
785             final Consumer<CommitEntry> processor) {
786         while (!queue.isEmpty()) {
787             final CommitEntry entry = queue.peek();
788             final SimpleShardDataTreeCohort cohort = entry.cohort;
789
790             if (cohort.isFailed()) {
791                 LOG.debug("{}: Removing failed transaction {}", logContext, cohort.getIdentifier());
792                 queue.remove();
793                 continue;
794             }
795
796             if (cohort.getState() == allowedState) {
797                 processor.accept(entry);
798             }
799
800             break;
801         }
802
803         maybeRunOperationOnPendingTransactionsComplete();
804     }
805
806     private void processNextPendingCommit() {
807         processNextPending(pendingCommits, State.COMMIT_PENDING,
808             entry -> startCommit(entry.cohort, entry.cohort.getCandidate()));
809     }
810
811     private boolean peekNextPendingCommit() {
812         final CommitEntry first = pendingCommits.peek();
813         return first != null && first.cohort.getState() == State.COMMIT_PENDING;
814     }
815
816     void startCanCommit(final SimpleShardDataTreeCohort cohort) {
817         final CommitEntry head = pendingTransactions.peek();
818         if (head == null) {
819             LOG.warn("{}: No transactions enqueued while attempting to start canCommit on {}", logContext, cohort);
820             return;
821         }
822         if (!cohort.equals(head.cohort)) {
823             // The tx isn't at the head of the queue so we can't start canCommit at this point. Here we check if this
824             // tx should be moved ahead of other tx's in the READY state in the pendingTransactions queue. If this tx
825             // has other participating shards, it could deadlock with other tx's accessing the same shards
826             // depending on the order the tx's are readied on each shard
827             // (see https://jira.opendaylight.org/browse/CONTROLLER-1836). Therefore, if the preceding participating
828             // shard names for a preceding pending tx, call it A, in the queue matches that of this tx, then this tx
829             // is allowed to be moved ahead of tx A in the queue so it is processed first to avoid potential deadlock
830             // if tx A is behind this tx in the pendingTransactions queue for a preceding shard. In other words, since
831             // canCommmit for this tx was requested before tx A, honor that request. If this tx is moved to the head of
832             // the queue as a result, then proceed with canCommit.
833
834             Collection<String> precedingShardNames = extractPrecedingShardNames(cohort.getParticipatingShardNames());
835             if (precedingShardNames.isEmpty()) {
836                 LOG.debug("{}: Tx {} is scheduled for canCommit step", logContext, cohort.getIdentifier());
837                 return;
838             }
839
840             LOG.debug("{}: Evaluating tx {} for canCommit -  preceding participating shard names {}",
841                     logContext, cohort.getIdentifier(), precedingShardNames);
842             final Iterator<CommitEntry> iter = pendingTransactions.iterator();
843             int index = -1;
844             int moveToIndex = -1;
845             while (iter.hasNext()) {
846                 final CommitEntry entry = iter.next();
847                 ++index;
848
849                 if (cohort.equals(entry.cohort)) {
850                     if (moveToIndex < 0) {
851                         LOG.debug("{}: Not moving tx {} - cannot proceed with canCommit",
852                                 logContext, cohort.getIdentifier());
853                         return;
854                     }
855
856                     LOG.debug("{}: Moving {} to index {} in the pendingTransactions queue",
857                             logContext, cohort.getIdentifier(), moveToIndex);
858                     iter.remove();
859                     insertEntry(pendingTransactions, entry, moveToIndex);
860
861                     if (!cohort.equals(pendingTransactions.peek().cohort)) {
862                         LOG.debug("{}: Tx {} is not at the head of the queue - cannot proceed with canCommit",
863                                 logContext, cohort.getIdentifier());
864                         return;
865                     }
866
867                     LOG.debug("{}: Tx {} is now at the head of the queue - proceeding with canCommit",
868                             logContext, cohort.getIdentifier());
869                     break;
870                 }
871
872                 if (entry.cohort.getState() != State.READY) {
873                     LOG.debug("{}: Skipping pending transaction {} in state {}",
874                             logContext, entry.cohort.getIdentifier(), entry.cohort.getState());
875                     continue;
876                 }
877
878                 final Collection<String> pendingPrecedingShardNames = extractPrecedingShardNames(
879                         entry.cohort.getParticipatingShardNames());
880
881                 if (precedingShardNames.equals(pendingPrecedingShardNames)) {
882                     if (moveToIndex < 0) {
883                         LOG.debug("{}: Preceding shard names {} for pending tx {} match - saving moveToIndex {}",
884                                 logContext, pendingPrecedingShardNames, entry.cohort.getIdentifier(), index);
885                         moveToIndex = index;
886                     } else {
887                         LOG.debug(
888                             "{}: Preceding shard names {} for pending tx {} match but moveToIndex already set to {}",
889                             logContext, pendingPrecedingShardNames, entry.cohort.getIdentifier(), moveToIndex);
890                     }
891                 } else {
892                     LOG.debug("{}: Preceding shard names {} for pending tx {} differ - skipping",
893                         logContext, pendingPrecedingShardNames, entry.cohort.getIdentifier());
894                 }
895             }
896         }
897
898         processNextPendingTransaction();
899     }
900
901     private static void insertEntry(final Deque<CommitEntry> queue, final CommitEntry entry, final int atIndex) {
902         if (atIndex == 0) {
903             queue.addFirst(entry);
904             return;
905         }
906
907         LOG.trace("Inserting into Deque at index {}", atIndex);
908
909         Deque<CommitEntry> tempStack = new ArrayDeque<>(atIndex);
910         for (int i = 0; i < atIndex; i++) {
911             tempStack.push(queue.poll());
912         }
913
914         queue.addFirst(entry);
915
916         tempStack.forEach(queue::addFirst);
917     }
918
919     private Collection<String> extractPrecedingShardNames(
920             final java.util.Optional<SortedSet<String>> participatingShardNames) {
921         return participatingShardNames.map((Function<SortedSet<String>, Collection<String>>)
922             set -> set.headSet(shard.getShardName())).orElse(Collections.<String>emptyList());
923     }
924
925     private void failPreCommit(final Throwable cause) {
926         shard.getShardMBean().incrementFailedTransactionsCount();
927         pendingTransactions.poll().cohort.failedPreCommit(cause);
928         processNextPendingTransaction();
929     }
930
931     @SuppressWarnings("checkstyle:IllegalCatch")
932     void startPreCommit(final SimpleShardDataTreeCohort cohort) {
933         final CommitEntry entry = pendingTransactions.peek();
934         Preconditions.checkState(entry != null, "Attempted to pre-commit of %s when no transactions pending", cohort);
935
936         final SimpleShardDataTreeCohort current = entry.cohort;
937         Verify.verify(cohort.equals(current), "Attempted to pre-commit %s while %s is pending", cohort, current);
938
939         final TransactionIdentifier currentId = current.getIdentifier();
940         LOG.debug("{}: Preparing transaction {}", logContext, currentId);
941
942         final DataTreeCandidateTip candidate;
943         try {
944             candidate = tip.prepare(cohort.getDataTreeModification());
945             LOG.debug("{}: Transaction {} candidate ready", logContext, currentId);
946         } catch (RuntimeException e) {
947             failPreCommit(e);
948             return;
949         }
950
951         cohort.userPreCommit(candidate, new FutureCallback<Void>() {
952             @Override
953             public void onSuccess(final Void noop) {
954                 // Set the tip of the data tree.
955                 tip = Verify.verifyNotNull(candidate);
956
957                 entry.lastAccess = readTime();
958
959                 pendingTransactions.remove();
960                 pendingCommits.add(entry);
961
962                 LOG.debug("{}: Transaction {} prepared", logContext, currentId);
963
964                 cohort.successfulPreCommit(candidate);
965
966                 processNextPendingTransaction();
967             }
968
969             @Override
970             public void onFailure(final Throwable failure) {
971                 failPreCommit(failure);
972             }
973         });
974     }
975
976     private void failCommit(final Exception cause) {
977         shard.getShardMBean().incrementFailedTransactionsCount();
978         pendingFinishCommits.poll().cohort.failedCommit(cause);
979         processNextPending();
980     }
981
982     @SuppressWarnings("checkstyle:IllegalCatch")
983     private void finishCommit(final SimpleShardDataTreeCohort cohort) {
984         final TransactionIdentifier txId = cohort.getIdentifier();
985         final DataTreeCandidate candidate = cohort.getCandidate();
986
987         LOG.debug("{}: Resuming commit of transaction {}", logContext, txId);
988
989         if (tip == candidate) {
990             // All pending candidates have been committed, reset the tip to the data tree.
991             tip = dataTree;
992         }
993
994         try {
995             dataTree.commit(candidate);
996         } catch (Exception e) {
997             LOG.error("{}: Failed to commit transaction {}", logContext, txId, e);
998             failCommit(e);
999             return;
1000         }
1001
1002         allMetadataCommittedTransaction(txId);
1003         shard.getShardMBean().incrementCommittedTransactionCount();
1004         shard.getShardMBean().setLastCommittedTransactionTime(System.currentTimeMillis());
1005
1006         // FIXME: propagate journal index
1007         pendingFinishCommits.poll().cohort.successfulCommit(UnsignedLong.ZERO, () -> {
1008             LOG.trace("{}: Transaction {} committed, proceeding to notify", logContext, txId);
1009             notifyListeners(candidate);
1010
1011             processNextPending();
1012         });
1013     }
1014
1015     void startCommit(final SimpleShardDataTreeCohort cohort, final DataTreeCandidate candidate) {
1016         final CommitEntry entry = pendingCommits.peek();
1017         Preconditions.checkState(entry != null, "Attempted to start commit of %s when no transactions pending", cohort);
1018
1019         final SimpleShardDataTreeCohort current = entry.cohort;
1020         if (!cohort.equals(current)) {
1021             LOG.debug("{}: Transaction {} scheduled for commit step", logContext, cohort.getIdentifier());
1022             return;
1023         }
1024
1025         LOG.debug("{}: Starting commit for transaction {}", logContext, current.getIdentifier());
1026
1027         final TransactionIdentifier txId = cohort.getIdentifier();
1028         final Payload payload;
1029         try {
1030             payload = CommitTransactionPayload.create(txId, candidate,
1031                     shard.getDatastoreContext().getInitialPayloadSerializedBufferCapacity());
1032         } catch (IOException e) {
1033             LOG.error("{}: Failed to encode transaction {} candidate {}", logContext, txId, candidate, e);
1034             pendingCommits.poll().cohort.failedCommit(e);
1035             processNextPending();
1036             return;
1037         }
1038
1039         // We process next transactions pending canCommit before we call persistPayload to possibly progress subsequent
1040         // transactions to the COMMIT_PENDING state so the payloads can be batched for replication. This is done for
1041         // single-shard transactions that immediately transition from canCommit to preCommit to commit. Note that
1042         // if the next pending transaction is progressed to COMMIT_PENDING and this method (startCommit) is called,
1043         // the next transaction will not attempt to replicate b/c the current transaction is still at the head of the
1044         // pendingCommits queue.
1045         processNextPendingTransaction();
1046
1047         // After processing next pending transactions, we can now remove the current transaction from pendingCommits.
1048         // Note this must be done before the call to peekNextPendingCommit below so we check the next transaction
1049         // in order to properly determine the batchHint flag for the call to persistPayload.
1050         pendingCommits.remove();
1051         pendingFinishCommits.add(entry);
1052
1053         // See if the next transaction is pending commit (ie in the COMMIT_PENDING state) so it can be batched with
1054         // this transaction for replication.
1055         boolean replicationBatchHint = peekNextPendingCommit();
1056
1057         // Once completed, we will continue via payloadReplicationComplete
1058         shard.persistPayload(txId, payload, replicationBatchHint);
1059
1060         entry.lastAccess = shard.ticker().read();
1061
1062         LOG.debug("{}: Transaction {} submitted to persistence", logContext, txId);
1063
1064         // Process the next transaction pending commit, if any. If there is one it will be batched with this
1065         // transaction for replication.
1066         processNextPendingCommit();
1067     }
1068
1069     Collection<ActorRef> getCohortActors() {
1070         return cohortRegistry.getCohortActors();
1071     }
1072
1073     void processCohortRegistryCommand(final ActorRef sender, final CohortRegistryCommand message) {
1074         cohortRegistry.process(sender, message);
1075     }
1076
1077     @Override
1078     ShardDataTreeCohort createFailedCohort(final TransactionIdentifier txId, final DataTreeModification mod,
1079             final Exception failure) {
1080         final SimpleShardDataTreeCohort cohort = new SimpleShardDataTreeCohort(this, mod, txId, failure);
1081         pendingTransactions.add(new CommitEntry(cohort, readTime()));
1082         return cohort;
1083     }
1084
1085     @Override
1086     ShardDataTreeCohort createReadyCohort(final TransactionIdentifier txId, final DataTreeModification mod,
1087             final java.util.Optional<SortedSet<String>> participatingShardNames) {
1088         SimpleShardDataTreeCohort cohort = new SimpleShardDataTreeCohort(this, mod, txId,
1089                 cohortRegistry.createCohort(schemaContext, txId, shard::executeInSelf,
1090                         COMMIT_STEP_TIMEOUT), participatingShardNames);
1091         pendingTransactions.add(new CommitEntry(cohort, readTime()));
1092         return cohort;
1093     }
1094
1095     // Exposed for ShardCommitCoordinator so it does not have deal with local histories (it does not care), this mimics
1096     // the newReadWriteTransaction()
1097     ShardDataTreeCohort newReadyCohort(final TransactionIdentifier txId, final DataTreeModification mod,
1098             final java.util.Optional<SortedSet<String>> participatingShardNames) {
1099         if (txId.getHistoryId().getHistoryId() == 0) {
1100             return createReadyCohort(txId, mod, participatingShardNames);
1101         }
1102
1103         return ensureTransactionChain(txId.getHistoryId(), null).createReadyCohort(txId, mod, participatingShardNames);
1104     }
1105
1106     @SuppressFBWarnings(value = "DB_DUPLICATE_SWITCH_CLAUSES", justification = "See inline comments below.")
1107     void checkForExpiredTransactions(final long transactionCommitTimeoutMillis,
1108             final Function<SimpleShardDataTreeCohort, Optional<Long>> accessTimeUpdater) {
1109         final long timeout = TimeUnit.MILLISECONDS.toNanos(transactionCommitTimeoutMillis);
1110         final long now = readTime();
1111
1112         final Queue<CommitEntry> currentQueue = !pendingFinishCommits.isEmpty() ? pendingFinishCommits :
1113             !pendingCommits.isEmpty() ? pendingCommits : pendingTransactions;
1114         final CommitEntry currentTx = currentQueue.peek();
1115         if (currentTx == null) {
1116             // Empty queue, no-op
1117             return;
1118         }
1119
1120         long delta = now - currentTx.lastAccess;
1121         if (delta < timeout) {
1122             // Not expired yet, bail
1123             return;
1124         }
1125
1126         final Optional<Long> updateOpt = accessTimeUpdater.apply(currentTx.cohort);
1127         if (updateOpt.isPresent()) {
1128             final long newAccess =  updateOpt.get().longValue();
1129             final long newDelta = now - newAccess;
1130             if (newDelta < delta) {
1131                 LOG.debug("{}: Updated current transaction {} access time", logContext,
1132                     currentTx.cohort.getIdentifier());
1133                 currentTx.lastAccess = newAccess;
1134                 delta = newDelta;
1135             }
1136
1137             if (delta < timeout) {
1138                 // Not expired yet, bail
1139                 return;
1140             }
1141         }
1142
1143         final long deltaMillis = TimeUnit.NANOSECONDS.toMillis(delta);
1144         final State state = currentTx.cohort.getState();
1145
1146         LOG.warn("{}: Current transaction {} has timed out after {} ms in state {}", logContext,
1147             currentTx.cohort.getIdentifier(), deltaMillis, state);
1148         boolean processNext = true;
1149         final TimeoutException cohortFailure = new TimeoutException("Backend timeout in state " + state + " after "
1150                 + deltaMillis + "ms");
1151
1152         switch (state) {
1153             case CAN_COMMIT_PENDING:
1154                 currentQueue.remove().cohort.failedCanCommit(cohortFailure);
1155                 break;
1156             case CAN_COMMIT_COMPLETE:
1157                 // The suppression of the FindBugs "DB_DUPLICATE_SWITCH_CLAUSES" warning pertains to this clause
1158                 // whose code is duplicated with PRE_COMMIT_COMPLETE. The clauses aren't combined in case the code
1159                 // in PRE_COMMIT_COMPLETE is changed.
1160                 currentQueue.remove().cohort.reportFailure(cohortFailure);
1161                 break;
1162             case PRE_COMMIT_PENDING:
1163                 currentQueue.remove().cohort.failedPreCommit(cohortFailure);
1164                 break;
1165             case PRE_COMMIT_COMPLETE:
1166                 // FIXME: this is a legacy behavior problem. Three-phase commit protocol specifies that after we
1167                 //        are ready we should commit the transaction, not abort it. Our current software stack does
1168                 //        not allow us to do that consistently, because we persist at the time of commit, hence
1169                 //        we can end up in a state where we have pre-committed a transaction, then a leader failover
1170                 //        occurred ... the new leader does not see the pre-committed transaction and does not have
1171                 //        a running timer. To fix this we really need two persistence events.
1172                 //
1173                 //        The first one, done at pre-commit time will hold the transaction payload. When consensus
1174                 //        is reached, we exit the pre-commit phase and start the pre-commit timer. Followers do not
1175                 //        apply the state in this event.
1176                 //
1177                 //        The second one, done at commit (or abort) time holds only the transaction identifier and
1178                 //        signals to followers that the state should (or should not) be applied.
1179                 //
1180                 //        In order to make the pre-commit timer working across failovers, though, we need
1181                 //        a per-shard cluster-wide monotonic time, so a follower becoming the leader can accurately
1182                 //        restart the timer.
1183                 currentQueue.remove().cohort.reportFailure(cohortFailure);
1184                 break;
1185             case COMMIT_PENDING:
1186                 LOG.warn("{}: Transaction {} is still committing, cannot abort", logContext,
1187                     currentTx.cohort.getIdentifier());
1188                 currentTx.lastAccess = now;
1189                 processNext = false;
1190                 return;
1191             case READY:
1192                 currentQueue.remove().cohort.reportFailure(cohortFailure);
1193                 break;
1194             case ABORTED:
1195             case COMMITTED:
1196             case FAILED:
1197             default:
1198                 currentQueue.remove();
1199         }
1200
1201         if (processNext) {
1202             processNextPending();
1203         }
1204     }
1205
1206     boolean startAbort(final SimpleShardDataTreeCohort cohort) {
1207         final Iterator<CommitEntry> it = Iterables.concat(pendingFinishCommits, pendingCommits,
1208                 pendingTransactions).iterator();
1209         if (!it.hasNext()) {
1210             LOG.debug("{}: no open transaction while attempting to abort {}", logContext, cohort.getIdentifier());
1211             return true;
1212         }
1213
1214         // First entry is special, as it may already be committing
1215         final CommitEntry first = it.next();
1216         if (cohort.equals(first.cohort)) {
1217             if (cohort.getState() != State.COMMIT_PENDING) {
1218                 LOG.debug("{}: aborting head of queue {} in state {}", logContext, cohort.getIdentifier(),
1219                     cohort.getIdentifier());
1220
1221                 it.remove();
1222                 if (cohort.getCandidate() != null) {
1223                     rebaseTransactions(it, dataTree);
1224                 }
1225
1226                 processNextPending();
1227                 return true;
1228             }
1229
1230             LOG.warn("{}: transaction {} is committing, skipping abort", logContext, cohort.getIdentifier());
1231             return false;
1232         }
1233
1234         DataTreeTip newTip = MoreObjects.firstNonNull(first.cohort.getCandidate(), dataTree);
1235         while (it.hasNext()) {
1236             final CommitEntry e = it.next();
1237             if (cohort.equals(e.cohort)) {
1238                 LOG.debug("{}: aborting queued transaction {}", logContext, cohort.getIdentifier());
1239
1240                 it.remove();
1241                 if (cohort.getCandidate() != null) {
1242                     rebaseTransactions(it, newTip);
1243                 }
1244
1245                 return true;
1246             } else {
1247                 newTip = MoreObjects.firstNonNull(e.cohort.getCandidate(), newTip);
1248             }
1249         }
1250
1251         LOG.debug("{}: aborted transaction {} not found in the queue", logContext, cohort.getIdentifier());
1252         return true;
1253     }
1254
1255     @SuppressWarnings("checkstyle:IllegalCatch")
1256     private void rebaseTransactions(final Iterator<CommitEntry> iter, @Nonnull final DataTreeTip newTip) {
1257         tip = Preconditions.checkNotNull(newTip);
1258         while (iter.hasNext()) {
1259             final SimpleShardDataTreeCohort cohort = iter.next().cohort;
1260             if (cohort.getState() == State.CAN_COMMIT_COMPLETE) {
1261                 LOG.debug("{}: Revalidating queued transaction {}", logContext, cohort.getIdentifier());
1262
1263                 try {
1264                     tip.validate(cohort.getDataTreeModification());
1265                 } catch (DataValidationFailedException | RuntimeException e) {
1266                     LOG.debug("{}: Failed to revalidate queued transaction {}", logContext, cohort.getIdentifier(), e);
1267                     cohort.reportFailure(e);
1268                 }
1269             } else if (cohort.getState() == State.PRE_COMMIT_COMPLETE) {
1270                 LOG.debug("{}: Repreparing queued transaction {}", logContext, cohort.getIdentifier());
1271
1272                 try {
1273                     tip.validate(cohort.getDataTreeModification());
1274                     DataTreeCandidateTip candidate = tip.prepare(cohort.getDataTreeModification());
1275
1276                     cohort.setNewCandidate(candidate);
1277                     tip = candidate;
1278                 } catch (RuntimeException | DataValidationFailedException e) {
1279                     LOG.debug("{}: Failed to reprepare queued transaction {}", logContext, cohort.getIdentifier(), e);
1280                     cohort.reportFailure(e);
1281                 }
1282             }
1283         }
1284     }
1285
1286     void setRunOnPendingTransactionsComplete(final Runnable operation) {
1287         runOnPendingTransactionsComplete = operation;
1288         maybeRunOperationOnPendingTransactionsComplete();
1289     }
1290
1291     private void maybeRunOperationOnPendingTransactionsComplete() {
1292         if (runOnPendingTransactionsComplete != null && !anyPendingTransactions()) {
1293             LOG.debug("{}: Pending transactions complete - running operation {}", logContext,
1294                     runOnPendingTransactionsComplete);
1295
1296             runOnPendingTransactionsComplete.run();
1297             runOnPendingTransactionsComplete = null;
1298         }
1299     }
1300
1301     ShardStats getStats() {
1302         return shard.getShardMBean();
1303     }
1304
1305     Iterator<SimpleShardDataTreeCohort> cohortIterator() {
1306         return Iterables.transform(Iterables.concat(pendingFinishCommits, pendingCommits, pendingTransactions),
1307             e -> e.cohort).iterator();
1308     }
1309
1310     void removeTransactionChain(final LocalHistoryIdentifier id) {
1311         if (transactionChains.remove(id) != null) {
1312             LOG.debug("{}: Removed transaction chain {}", logContext, id);
1313         }
1314     }
1315 }