Bug 4823: Use tx commit timeout for BatchedModifications
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / RemoteTransactionContext.java
1 /*
2  * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
3  * Copyright (c) 2015 Brocade Communications Systems, Inc. and others.  All rights reserved.
4  *
5  * This program and the accompanying materials are made available under the
6  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  * and is available at http://www.eclipse.org/legal/epl-v10.html
8  */
9 package org.opendaylight.controller.cluster.datastore;
10
11 import akka.actor.ActorSelection;
12 import akka.dispatch.OnComplete;
13 import akka.util.Timeout;
14 import com.google.common.base.Preconditions;
15 import com.google.common.util.concurrent.SettableFuture;
16 import org.opendaylight.controller.cluster.datastore.identifiers.TransactionIdentifier;
17 import org.opendaylight.controller.cluster.datastore.messages.AbstractRead;
18 import org.opendaylight.controller.cluster.datastore.messages.BatchedModifications;
19 import org.opendaylight.controller.cluster.datastore.messages.CloseTransaction;
20 import org.opendaylight.controller.cluster.datastore.messages.SerializableMessage;
21 import org.opendaylight.controller.cluster.datastore.modification.AbstractModification;
22 import org.opendaylight.controller.cluster.datastore.modification.Modification;
23 import org.opendaylight.controller.cluster.datastore.utils.ActorContext;
24 import org.opendaylight.controller.md.sal.common.api.data.ReadFailedException;
25 import org.slf4j.Logger;
26 import org.slf4j.LoggerFactory;
27 import scala.concurrent.Future;
28
29 /**
30  * Redirects front-end transaction operations to a shard for processing. Instances of this class are used
31  * when the destination shard is remote to the caller.
32  *
33  * @author Thomas Pantelis
34  */
35 public class RemoteTransactionContext extends AbstractTransactionContext {
36     private static final Logger LOG = LoggerFactory.getLogger(RemoteTransactionContext.class);
37
38     private final ActorContext actorContext;
39     private final ActorSelection actor;
40     private final OperationLimiter limiter;
41
42     private BatchedModifications batchedModifications;
43     private int totalBatchedModificationsSent;
44
45     protected RemoteTransactionContext(TransactionIdentifier identifier, ActorSelection actor,
46             ActorContext actorContext, short remoteTransactionVersion, OperationLimiter limiter) {
47         super(identifier, remoteTransactionVersion);
48         this.limiter = Preconditions.checkNotNull(limiter);
49         this.actor = actor;
50         this.actorContext = actorContext;
51     }
52
53     private Future<Object> completeOperation(Future<Object> operationFuture){
54         operationFuture.onComplete(limiter, actorContext.getClientDispatcher());
55         return operationFuture;
56     }
57
58     private ActorSelection getActor() {
59         return actor;
60     }
61
62     protected ActorContext getActorContext() {
63         return actorContext;
64     }
65
66     protected Future<Object> executeOperationAsync(SerializableMessage msg, Timeout timeout) {
67         return completeOperation(actorContext.executeOperationAsync(getActor(), msg.toSerializable(), timeout));
68     }
69
70     @Override
71     public void closeTransaction() {
72         LOG.debug("Tx {} closeTransaction called", getIdentifier());
73         TransactionContextCleanup.untrack(this);
74
75         actorContext.sendOperationAsync(getActor(), new CloseTransaction(getTransactionVersion()).toSerializable());
76     }
77
78     @Override
79     public Future<Object> directCommit() {
80         LOG.debug("Tx {} directCommit called", getIdentifier());
81
82         // Send the remaining batched modifications, if any, with the ready flag set.
83
84         return sendBatchedModifications(true, true);
85     }
86
87     @Override
88     public Future<ActorSelection> readyTransaction() {
89         logModificationCount();
90
91         LOG.debug("Tx {} readyTransaction called", getIdentifier());
92
93         // Send the remaining batched modifications, if any, with the ready flag set.
94
95         Future<Object> lastModificationsFuture = sendBatchedModifications(true, false);
96
97         return transformReadyReply(lastModificationsFuture);
98     }
99
100     protected Future<ActorSelection> transformReadyReply(final Future<Object> readyReplyFuture) {
101         // Transform the last reply Future into a Future that returns the cohort actor path from
102         // the last reply message. That's the end result of the ready operation.
103
104         return TransactionReadyReplyMapper.transform(readyReplyFuture, actorContext, getIdentifier());
105     }
106
107     private BatchedModifications newBatchedModifications() {
108         return new BatchedModifications(getIdentifier().toString(), getTransactionVersion(),
109                 getIdentifier().getChainId());
110     }
111
112     private void batchModification(Modification modification) {
113         incrementModificationCount();
114         if(batchedModifications == null) {
115             batchedModifications = newBatchedModifications();
116         }
117
118         batchedModifications.addModification(modification);
119
120         if(batchedModifications.getModifications().size() >=
121                 actorContext.getDatastoreContext().getShardBatchedModificationCount()) {
122             sendBatchedModifications();
123         }
124     }
125
126     protected Future<Object> sendBatchedModifications() {
127         return sendBatchedModifications(false, false);
128     }
129
130     protected Future<Object> sendBatchedModifications(boolean ready, boolean doCommitOnReady) {
131         Future<Object> sent = null;
132         if(ready || (batchedModifications != null && !batchedModifications.getModifications().isEmpty())) {
133             if(batchedModifications == null) {
134                 batchedModifications = newBatchedModifications();
135             }
136
137             if(LOG.isDebugEnabled()) {
138                 LOG.debug("Tx {} sending {} batched modifications, ready: {}", getIdentifier(),
139                         batchedModifications.getModifications().size(), ready);
140             }
141
142             batchedModifications.setReady(ready);
143             batchedModifications.setDoCommitOnReady(doCommitOnReady);
144             batchedModifications.setTotalMessagesSent(++totalBatchedModificationsSent);
145             sent = executeOperationAsync(batchedModifications, actorContext.getTransactionCommitOperationTimeout());
146
147             if(ready) {
148                 batchedModifications = null;
149             } else {
150                 batchedModifications = newBatchedModifications();
151             }
152         }
153
154         return sent;
155     }
156
157     @Override
158     public void executeModification(AbstractModification modification) {
159         if(LOG.isDebugEnabled()) {
160             LOG.debug("Tx {} executeModification {} called path = {}", getIdentifier(), modification.getClass()
161                     .getSimpleName(), modification.getPath());
162         }
163
164         acquireOperation();
165         batchModification(modification);
166     }
167
168     @Override
169     public <T> void executeRead(final AbstractRead<T> readCmd, final SettableFuture<T> returnFuture) {
170         if(LOG.isDebugEnabled()) {
171             LOG.debug("Tx {} executeRead {} called path = {}", getIdentifier(), readCmd.getClass().getSimpleName(),
172                     readCmd.getPath());
173         }
174
175         // Send any batched modifications. This is necessary to honor the read uncommitted semantics of the
176         // public API contract.
177
178         acquireOperation();
179         sendBatchedModifications();
180
181         OnComplete<Object> onComplete = new OnComplete<Object>() {
182             @Override
183             public void onComplete(Throwable failure, Object response) throws Throwable {
184                 if(failure != null) {
185                     if(LOG.isDebugEnabled()) {
186                         LOG.debug("Tx {} {} operation failed: {}", getIdentifier(), readCmd.getClass().getSimpleName(),
187                                 failure);
188                     }
189                     returnFuture.setException(new ReadFailedException("Error checking " + readCmd.getClass().getSimpleName()
190                             + " for path " + readCmd.getPath(), failure));
191                 } else {
192                     if(LOG.isDebugEnabled()) {
193                         LOG.debug("Tx {} {} operation succeeded", getIdentifier(), readCmd.getClass().getSimpleName());
194                     }
195                     readCmd.processResponse(response, returnFuture);
196                 }
197             }
198         };
199
200         Future<Object> future = executeOperationAsync(readCmd.asVersion(getTransactionVersion()),
201                 actorContext.getOperationTimeout());
202
203         future.onComplete(onComplete, actorContext.getClientDispatcher());
204     }
205
206     /**
207      * Acquire operation from the limiter if the hand-off has completed. If
208      * the hand-off is still ongoing, this method does nothing.
209      */
210     private final void acquireOperation() {
211         if (isOperationHandOffComplete()) {
212             limiter.acquire();
213         }
214     }
215
216     @Override
217     public boolean usesOperationLimiting() {
218         return true;
219     }
220 }