BUG-8494: propagate submit failure immediately
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / databroker / ConcurrentDOMDataBroker.java
1 /*
2  * Copyright (c) 2014 Brocade Communications 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.databroker;
9
10 import com.google.common.annotations.Beta;
11 import com.google.common.base.Preconditions;
12 import com.google.common.util.concurrent.AbstractFuture;
13 import com.google.common.util.concurrent.CheckedFuture;
14 import com.google.common.util.concurrent.FutureCallback;
15 import com.google.common.util.concurrent.Futures;
16 import com.google.common.util.concurrent.ListenableFuture;
17 import com.google.common.util.concurrent.MoreExecutors;
18 import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
19 import java.util.Collection;
20 import java.util.Iterator;
21 import java.util.List;
22 import java.util.Map;
23 import java.util.concurrent.Executor;
24 import org.opendaylight.controller.cluster.datastore.exceptions.NoShardLeaderException;
25 import org.opendaylight.controller.cluster.datastore.exceptions.ShardLeaderNotRespondingException;
26 import org.opendaylight.controller.md.sal.common.api.data.DataStoreUnavailableException;
27 import org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType;
28 import org.opendaylight.controller.md.sal.common.api.data.TransactionCommitFailedException;
29 import org.opendaylight.controller.md.sal.dom.api.DOMDataWriteTransaction;
30 import org.opendaylight.controller.md.sal.dom.broker.impl.TransactionCommitFailedExceptionMapper;
31 import org.opendaylight.controller.sal.core.spi.data.DOMStore;
32 import org.opendaylight.controller.sal.core.spi.data.DOMStoreThreePhaseCommitCohort;
33 import org.opendaylight.yangtools.util.DurationStatisticsTracker;
34 import org.opendaylight.yangtools.util.concurrent.MappingCheckedFuture;
35 import org.slf4j.Logger;
36 import org.slf4j.LoggerFactory;
37
38 /**
39  * ConcurrentDOMDataBroker commits transactions concurrently. The 3
40  * commit phases (canCommit, preCommit, and commit) are performed serially and non-blocking
41  * (ie async) per transaction but multiple transaction commits can run concurrent.
42  *
43  * @author Thomas Pantelis
44  */
45 @Beta
46 public class ConcurrentDOMDataBroker extends AbstractDOMBroker {
47     private static final Logger LOG = LoggerFactory.getLogger(ConcurrentDOMDataBroker.class);
48     private static final String CAN_COMMIT = "CAN_COMMIT";
49     private static final String PRE_COMMIT = "PRE_COMMIT";
50     private static final String COMMIT = "COMMIT";
51
52     private final DurationStatisticsTracker commitStatsTracker;
53
54     /**
55      * This executor is used to execute Future listener callback Runnables async.
56      */
57     private final Executor clientFutureCallbackExecutor;
58
59     public ConcurrentDOMDataBroker(final Map<LogicalDatastoreType, DOMStore> datastores,
60             Executor listenableFutureExecutor) {
61         this(datastores, listenableFutureExecutor, DurationStatisticsTracker.createConcurrent());
62     }
63
64     public ConcurrentDOMDataBroker(final Map<LogicalDatastoreType, DOMStore> datastores,
65             Executor listenableFutureExecutor, DurationStatisticsTracker commitStatsTracker) {
66         super(datastores);
67         this.clientFutureCallbackExecutor = Preconditions.checkNotNull(listenableFutureExecutor);
68         this.commitStatsTracker = Preconditions.checkNotNull(commitStatsTracker);
69     }
70
71     public DurationStatisticsTracker getCommitStatsTracker() {
72         return commitStatsTracker;
73     }
74
75     @Override
76     protected CheckedFuture<Void, TransactionCommitFailedException> submit(DOMDataWriteTransaction transaction,
77             Collection<DOMStoreThreePhaseCommitCohort> cohorts) {
78
79         Preconditions.checkArgument(transaction != null, "Transaction must not be null.");
80         Preconditions.checkArgument(cohorts != null, "Cohorts must not be null.");
81         LOG.debug("Tx: {} is submitted for execution.", transaction.getIdentifier());
82
83         if (cohorts.isEmpty()) {
84             return Futures.immediateCheckedFuture(null);
85         }
86
87         final AsyncNotifyingSettableFuture clientSubmitFuture =
88                 new AsyncNotifyingSettableFuture(clientFutureCallbackExecutor);
89
90         doCanCommit(clientSubmitFuture, transaction, cohorts);
91
92         return MappingCheckedFuture.create(clientSubmitFuture,
93                 TransactionCommitFailedExceptionMapper.COMMIT_ERROR_MAPPER);
94     }
95
96     private void doCanCommit(final AsyncNotifyingSettableFuture clientSubmitFuture,
97             final DOMDataWriteTransaction transaction,
98             final Collection<DOMStoreThreePhaseCommitCohort> cohorts) {
99
100         final long startTime = System.nanoTime();
101
102         final Iterator<DOMStoreThreePhaseCommitCohort> cohortIterator = cohorts.iterator();
103
104         // Not using Futures.allAsList here to avoid its internal overhead.
105         FutureCallback<Boolean> futureCallback = new FutureCallback<Boolean>() {
106             @Override
107             public void onSuccess(Boolean result) {
108                 if (result == null || !result) {
109                     handleException(clientSubmitFuture, transaction, cohorts,
110                             CAN_COMMIT, TransactionCommitFailedExceptionMapper.CAN_COMMIT_ERROR_MAPPER,
111                             new TransactionCommitFailedException(
112                                             "Can Commit failed, no detailed cause available."));
113                 } else {
114                     if (!cohortIterator.hasNext()) {
115                         // All cohorts completed successfully - we can move on to the preCommit phase
116                         doPreCommit(startTime, clientSubmitFuture, transaction, cohorts);
117                     } else {
118                         ListenableFuture<Boolean> canCommitFuture = cohortIterator.next().canCommit();
119                         Futures.addCallback(canCommitFuture, this, MoreExecutors.directExecutor());
120                     }
121                 }
122             }
123
124             @Override
125             public void onFailure(Throwable failure) {
126                 handleException(clientSubmitFuture, transaction, cohorts, CAN_COMMIT,
127                         TransactionCommitFailedExceptionMapper.CAN_COMMIT_ERROR_MAPPER, failure);
128             }
129         };
130
131         ListenableFuture<Boolean> canCommitFuture = cohortIterator.next().canCommit();
132         Futures.addCallback(canCommitFuture, futureCallback, MoreExecutors.directExecutor());
133     }
134
135     private void doPreCommit(final long startTime, final AsyncNotifyingSettableFuture clientSubmitFuture,
136             final DOMDataWriteTransaction transaction,
137             final Collection<DOMStoreThreePhaseCommitCohort> cohorts) {
138
139         final Iterator<DOMStoreThreePhaseCommitCohort> cohortIterator = cohorts.iterator();
140
141         // Not using Futures.allAsList here to avoid its internal overhead.
142         FutureCallback<Void> futureCallback = new FutureCallback<Void>() {
143             @Override
144             public void onSuccess(Void notUsed) {
145                 if (!cohortIterator.hasNext()) {
146                     // All cohorts completed successfully - we can move on to the commit phase
147                     doCommit(startTime, clientSubmitFuture, transaction, cohorts);
148                 } else {
149                     ListenableFuture<Void> preCommitFuture = cohortIterator.next().preCommit();
150                     Futures.addCallback(preCommitFuture, this, MoreExecutors.directExecutor());
151                 }
152             }
153
154             @Override
155             public void onFailure(Throwable failure) {
156                 handleException(clientSubmitFuture, transaction, cohorts, PRE_COMMIT,
157                         TransactionCommitFailedExceptionMapper.PRE_COMMIT_MAPPER, failure);
158             }
159         };
160
161         ListenableFuture<Void> preCommitFuture = cohortIterator.next().preCommit();
162         Futures.addCallback(preCommitFuture, futureCallback, MoreExecutors.directExecutor());
163     }
164
165     private void doCommit(final long startTime, final AsyncNotifyingSettableFuture clientSubmitFuture,
166             final DOMDataWriteTransaction transaction,
167             final Collection<DOMStoreThreePhaseCommitCohort> cohorts) {
168
169         final Iterator<DOMStoreThreePhaseCommitCohort> cohortIterator = cohorts.iterator();
170
171         // Not using Futures.allAsList here to avoid its internal overhead.
172         FutureCallback<Void> futureCallback = new FutureCallback<Void>() {
173             @Override
174             public void onSuccess(Void notUsed) {
175                 if (!cohortIterator.hasNext()) {
176                     // All cohorts completed successfully - we're done.
177                     commitStatsTracker.addDuration(System.nanoTime() - startTime);
178
179                     clientSubmitFuture.set();
180                 } else {
181                     ListenableFuture<Void> commitFuture = cohortIterator.next().commit();
182                     Futures.addCallback(commitFuture, this, MoreExecutors.directExecutor());
183                 }
184             }
185
186             @Override
187             public void onFailure(Throwable throwable) {
188                 handleException(clientSubmitFuture, transaction, cohorts, COMMIT,
189                         TransactionCommitFailedExceptionMapper.COMMIT_ERROR_MAPPER, throwable);
190             }
191         };
192
193         ListenableFuture<Void> commitFuture = cohortIterator.next().commit();
194         Futures.addCallback(commitFuture, futureCallback, MoreExecutors.directExecutor());
195     }
196
197     @SuppressFBWarnings(value = "BC_UNCONFIRMED_CAST_OF_RETURN_VALUE",
198             justification = "Pertains to the assignment of the 'clientException' var. FindBugs flags this as an "
199                 + "uncomfirmed cast but the generic type in TransactionCommitFailedExceptionMapper is "
200                 + "TransactionCommitFailedException and thus should be deemed as confirmed.")
201     private static void handleException(final AsyncNotifyingSettableFuture clientSubmitFuture,
202             final DOMDataWriteTransaction transaction,
203             final Collection<DOMStoreThreePhaseCommitCohort> cohorts,
204             final String phase, final TransactionCommitFailedExceptionMapper exMapper,
205             final Throwable throwable) {
206
207         if (clientSubmitFuture.isDone()) {
208             // We must have had failures from multiple cohorts.
209             return;
210         }
211
212         LOG.warn("Tx: {} Error during phase {}, starting Abort", transaction.getIdentifier(), phase, throwable);
213
214         // Transaction failed - tell all cohorts to abort.
215         @SuppressWarnings("unchecked")
216         ListenableFuture<Void>[] canCommitFutures = new ListenableFuture[cohorts.size()];
217         int index = 0;
218         for (DOMStoreThreePhaseCommitCohort cohort : cohorts) {
219             canCommitFutures[index++] = cohort.abort();
220         }
221
222         // Propagate the original exception
223         final Exception e;
224         if (throwable instanceof NoShardLeaderException || throwable instanceof ShardLeaderNotRespondingException) {
225             e = new DataStoreUnavailableException(throwable.getMessage(), throwable);
226         } else if (throwable instanceof Exception) {
227             e = (Exception)throwable;
228         } else {
229             e = new RuntimeException("Unexpected error occurred", throwable);
230         }
231         clientSubmitFuture.setException(exMapper.apply(e));
232
233         ListenableFuture<List<Void>> combinedFuture = Futures.allAsList(canCommitFutures);
234         Futures.addCallback(combinedFuture, new FutureCallback<List<Void>>() {
235             @Override
236             public void onSuccess(List<Void> notUsed) {
237                 // Propagate the original exception to the client.
238                 LOG.debug("Tx: {} aborted successfully", transaction.getIdentifier());
239             }
240
241             @Override
242             public void onFailure(Throwable failure) {
243                 LOG.error("Tx: {} Error during Abort.", transaction.getIdentifier(), failure);
244             }
245         }, MoreExecutors.directExecutor());
246     }
247
248     /**
249      * A settable future that uses an {@link Executor} to execute listener callback Runnables,
250      * registered via {@link #addListener}, asynchronously when this future completes. This is
251      * done to guarantee listener executions are off-loaded onto another thread to avoid blocking
252      * the thread that completed this future, as a common use case is to pass an executor that runs
253      * tasks in the same thread as the caller (ie MoreExecutors#sameThreadExecutor)
254      * to {@link #addListener}.
255      * FIXME: This class should probably be moved to yangtools common utils for re-usability and
256      * unified with AsyncNotifyingListenableFutureTask.
257      */
258     private static class AsyncNotifyingSettableFuture extends AbstractFuture<Void> {
259
260         /**
261          * ThreadLocal used to detect if the task completion thread is running the future listener Runnables.
262          */
263         private static final ThreadLocal<Boolean> ON_TASK_COMPLETION_THREAD_TL = new ThreadLocal<>();
264
265         private final Executor listenerExecutor;
266
267         AsyncNotifyingSettableFuture(Executor listenerExecutor) {
268             this.listenerExecutor = Preconditions.checkNotNull(listenerExecutor);
269         }
270
271         @Override
272         public void addListener(final Runnable listener, final Executor executor) {
273             // Wrap the listener Runnable in a DelegatingRunnable. If the specified executor is one
274             // that runs tasks in the same thread as the caller submitting the task
275             // (e.g. {@link com.google.common.util.concurrent.MoreExecutors#sameThreadExecutor}) and
276             // the listener is executed from the #set methods, then the DelegatingRunnable will detect
277             // this via the ThreadLocal and submit the listener Runnable to the listenerExecutor.
278             //
279             // On the other hand, if this task is already complete, the call to ExecutionList#add in
280             // superclass will execute the listener Runnable immediately and, since the ThreadLocal
281             // won't be set, the DelegatingRunnable will run the listener Runnable inline.
282             super.addListener(new DelegatingRunnable(listener, listenerExecutor), executor);
283         }
284
285         boolean set() {
286             ON_TASK_COMPLETION_THREAD_TL.set(Boolean.TRUE);
287             try {
288                 return super.set(null);
289             } finally {
290                 ON_TASK_COMPLETION_THREAD_TL.set(null);
291             }
292         }
293
294         @Override
295         protected boolean setException(Throwable throwable) {
296             ON_TASK_COMPLETION_THREAD_TL.set(Boolean.TRUE);
297             try {
298                 return super.setException(throwable);
299             } finally {
300                 ON_TASK_COMPLETION_THREAD_TL.set(null);
301             }
302         }
303
304         private static final class DelegatingRunnable implements Runnable {
305             private final Runnable delegate;
306             private final Executor executor;
307
308             DelegatingRunnable(final Runnable delegate, final Executor executor) {
309                 this.delegate = Preconditions.checkNotNull(delegate);
310                 this.executor = Preconditions.checkNotNull(executor);
311             }
312
313             @Override
314             public void run() {
315                 if (ON_TASK_COMPLETION_THREAD_TL.get() != null) {
316                     // We're running on the task completion thread so off-load to the executor.
317                     LOG.trace("Submitting ListenenableFuture Runnable from thread {} to executor {}",
318                             Thread.currentThread().getName(), executor);
319                     executor.execute(delegate);
320                 } else {
321                     // We're not running on the task completion thread so run the delegate inline.
322                     LOG.trace("Executing ListenenableFuture Runnable on this thread: {}",
323                             Thread.currentThread().getName());
324                     delegate.run();
325                 }
326             }
327         }
328     }
329
330     @Override
331     public String toString() {
332         return "Clustered ConcurrentDOMDataBroker";
333     }
334 }