Merge "BUG 3057 - notify added event source by topics created before"
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / main / java / org / opendaylight / controller / cluster / raft / RaftActor.java
1 /*
2  * Copyright (c) 2014 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
10 package org.opendaylight.controller.cluster.raft;
11
12 import akka.actor.ActorRef;
13 import akka.actor.ActorSelection;
14 import akka.japi.Procedure;
15 import akka.persistence.SnapshotSelectionCriteria;
16 import com.google.common.annotations.VisibleForTesting;
17 import com.google.common.base.Objects;
18 import com.google.common.base.Optional;
19 import com.google.common.collect.Lists;
20 import java.io.Serializable;
21 import java.util.Collection;
22 import java.util.HashMap;
23 import java.util.List;
24 import java.util.Map;
25 import java.util.concurrent.TimeUnit;
26 import javax.annotation.Nonnull;
27 import org.apache.commons.lang3.time.DurationFormatUtils;
28 import org.opendaylight.controller.cluster.DataPersistenceProvider;
29 import org.opendaylight.controller.cluster.DelegatingPersistentDataProvider;
30 import org.opendaylight.controller.cluster.NonPersistentDataProvider;
31 import org.opendaylight.controller.cluster.PersistentDataProvider;
32 import org.opendaylight.controller.cluster.common.actor.AbstractUntypedPersistentActor;
33 import org.opendaylight.controller.cluster.notifications.LeaderStateChanged;
34 import org.opendaylight.controller.cluster.notifications.RoleChanged;
35 import org.opendaylight.controller.cluster.raft.base.messages.ApplyJournalEntries;
36 import org.opendaylight.controller.cluster.raft.base.messages.ApplyState;
37 import org.opendaylight.controller.cluster.raft.base.messages.Replicate;
38 import org.opendaylight.controller.cluster.raft.behaviors.AbstractLeader;
39 import org.opendaylight.controller.cluster.raft.behaviors.DelegatingRaftActorBehavior;
40 import org.opendaylight.controller.cluster.raft.behaviors.Follower;
41 import org.opendaylight.controller.cluster.raft.behaviors.RaftActorBehavior;
42 import org.opendaylight.controller.cluster.raft.client.messages.FindLeader;
43 import org.opendaylight.controller.cluster.raft.client.messages.FindLeaderReply;
44 import org.opendaylight.controller.cluster.raft.client.messages.FollowerInfo;
45 import org.opendaylight.controller.cluster.raft.client.messages.GetOnDemandRaftState;
46 import org.opendaylight.controller.cluster.raft.client.messages.OnDemandRaftState;
47 import org.opendaylight.controller.cluster.raft.protobuff.client.messages.Payload;
48 import org.slf4j.Logger;
49 import org.slf4j.LoggerFactory;
50
51 /**
52  * RaftActor encapsulates a state machine that needs to be kept synchronized
53  * in a cluster. It implements the RAFT algorithm as described in the paper
54  * <a href='https://ramcloud.stanford.edu/wiki/download/attachments/11370504/raft.pdf'>
55  * In Search of an Understandable Consensus Algorithm</a>
56  * <p/>
57  * RaftActor has 3 states and each state has a certain behavior associated
58  * with it. A Raft actor can behave as,
59  * <ul>
60  * <li> A Leader </li>
61  * <li> A Follower (or) </li>
62  * <li> A Candidate </li>
63  * </ul>
64  * <p/>
65  * <p/>
66  * A RaftActor MUST be a Leader in order to accept requests from clients to
67  * change the state of it's encapsulated state machine. Once a RaftActor becomes
68  * a Leader it is also responsible for ensuring that all followers ultimately
69  * have the same log and therefore the same state machine as itself.
70  * <p/>
71  * <p/>
72  * The current behavior of a RaftActor determines how election for leadership
73  * is initiated and how peer RaftActors react to request for votes.
74  * <p/>
75  * <p/>
76  * Each RaftActor also needs to know the current election term. It uses this
77  * information for a couple of things. One is to simply figure out who it
78  * voted for in the last election. Another is to figure out if the message
79  * it received to update it's state is stale.
80  * <p/>
81  * <p/>
82  * The RaftActor uses akka-persistence to store it's replicated log.
83  * Furthermore through it's behaviors a Raft Actor determines
84  * <p/>
85  * <ul>
86  * <li> when a log entry should be persisted </li>
87  * <li> when a log entry should be applied to the state machine (and) </li>
88  * <li> when a snapshot should be saved </li>
89  * </ul>
90  */
91 public abstract class RaftActor extends AbstractUntypedPersistentActor {
92
93     private static final long APPLY_STATE_DELAY_THRESHOLD_IN_NANOS = TimeUnit.MILLISECONDS.toNanos(50L); // 50 millis
94
95     protected final Logger LOG = LoggerFactory.getLogger(getClass());
96
97     /**
98      * The current state determines the current behavior of a RaftActor
99      * A Raft Actor always starts off in the Follower State
100      */
101     private final DelegatingRaftActorBehavior currentBehavior = new DelegatingRaftActorBehavior();
102
103     /**
104      * This context should NOT be passed directly to any other actor it is
105      * only to be consumed by the RaftActorBehaviors
106      */
107     private final RaftActorContextImpl context;
108
109     private final DelegatingPersistentDataProvider delegatingPersistenceProvider = new DelegatingPersistentDataProvider(null);
110
111     private RaftActorRecoverySupport raftRecovery;
112
113     private RaftActorSnapshotMessageSupport snapshotSupport;
114
115     private final BehaviorStateHolder reusableBehaviorStateHolder = new BehaviorStateHolder();
116
117     public RaftActor(String id, Map<String, String> peerAddresses) {
118         this(id, peerAddresses, Optional.<ConfigParams>absent());
119     }
120
121     public RaftActor(String id, Map<String, String> peerAddresses,
122          Optional<ConfigParams> configParams) {
123
124         context = new RaftActorContextImpl(this.getSelf(),
125             this.getContext(), id, new ElectionTermImpl(delegatingPersistenceProvider, id, LOG),
126             -1, -1, peerAddresses,
127             (configParams.isPresent() ? configParams.get(): new DefaultConfigParamsImpl()),
128             delegatingPersistenceProvider, LOG);
129
130         context.setReplicatedLog(ReplicatedLogImpl.newInstance(context, currentBehavior));
131     }
132
133     @Override
134     public void preStart() throws Exception {
135         LOG.info("Starting recovery for {} with journal batch size {}", persistenceId(),
136                 context.getConfigParams().getJournalRecoveryLogBatchSize());
137
138         super.preStart();
139
140         snapshotSupport = newRaftActorSnapshotMessageSupport();
141     }
142
143     @Override
144     public void postStop() {
145         if(currentBehavior.getDelegate() != null) {
146             try {
147                 currentBehavior.close();
148             } catch (Exception e) {
149                 LOG.debug("{}: Error closing behavior {}", persistenceId(), currentBehavior.state());
150             }
151         }
152
153         super.postStop();
154     }
155
156     @Override
157     public void handleRecover(Object message) {
158         if(raftRecovery == null) {
159             raftRecovery = newRaftActorRecoverySupport();
160         }
161
162         boolean recoveryComplete = raftRecovery.handleRecoveryMessage(message);
163         if(recoveryComplete) {
164             if(!persistence().isRecoveryApplicable()) {
165                 // Delete all the messages from the akka journal so that we do not end up with consistency issues
166                 // Note I am not using the dataPersistenceProvider and directly using the akka api here
167                 deleteMessages(lastSequenceNr());
168
169                 // Delete all the akka snapshots as they will not be needed
170                 deleteSnapshots(new SnapshotSelectionCriteria(scala.Long.MaxValue(), scala.Long.MaxValue()));
171             }
172
173             onRecoveryComplete();
174
175             initializeBehavior();
176
177             raftRecovery = null;
178         }
179     }
180
181     protected RaftActorRecoverySupport newRaftActorRecoverySupport() {
182         return new RaftActorRecoverySupport(context, currentBehavior, getRaftActorRecoveryCohort());
183     }
184
185     protected void initializeBehavior(){
186         changeCurrentBehavior(new Follower(context));
187     }
188
189     protected void changeCurrentBehavior(RaftActorBehavior newBehavior){
190         reusableBehaviorStateHolder.init(getCurrentBehavior());
191         setCurrentBehavior(newBehavior);
192         handleBehaviorChange(reusableBehaviorStateHolder, getCurrentBehavior());
193     }
194
195     @Override
196     public void handleCommand(Object message) {
197         if (message instanceof ApplyState){
198             ApplyState applyState = (ApplyState) message;
199
200             long elapsedTime = (System.nanoTime() - applyState.getStartTime());
201             if(elapsedTime >= APPLY_STATE_DELAY_THRESHOLD_IN_NANOS){
202                 LOG.warn("ApplyState took more time than expected. Elapsed Time = {} ms ApplyState = {}",
203                         TimeUnit.NANOSECONDS.toMillis(elapsedTime), applyState);
204             }
205
206             if(LOG.isDebugEnabled()) {
207                 LOG.debug("{}: Applying state for log index {} data {}",
208                     persistenceId(), applyState.getReplicatedLogEntry().getIndex(),
209                     applyState.getReplicatedLogEntry().getData());
210             }
211
212             applyState(applyState.getClientActor(), applyState.getIdentifier(),
213                 applyState.getReplicatedLogEntry().getData());
214
215         } else if (message instanceof ApplyJournalEntries){
216             ApplyJournalEntries applyEntries = (ApplyJournalEntries) message;
217             if(LOG.isDebugEnabled()) {
218                 LOG.debug("{}: Persisting ApplyLogEntries with index={}", persistenceId(), applyEntries.getToIndex());
219             }
220
221             persistence().persist(applyEntries, NoopProcedure.instance());
222
223         } else if (message instanceof FindLeader) {
224             getSender().tell(
225                 new FindLeaderReply(getLeaderAddress()),
226                 getSelf()
227             );
228         } else if(message instanceof GetOnDemandRaftState) {
229             onGetOnDemandRaftStats();
230         } else if(!snapshotSupport.handleSnapshotMessage(message)) {
231             reusableBehaviorStateHolder.init(getCurrentBehavior());
232
233             setCurrentBehavior(currentBehavior.handleMessage(getSender(), message));
234
235             handleBehaviorChange(reusableBehaviorStateHolder, getCurrentBehavior());
236         }
237     }
238
239     protected RaftActorSnapshotMessageSupport newRaftActorSnapshotMessageSupport() {
240         return new RaftActorSnapshotMessageSupport(context, currentBehavior,
241                 getRaftActorSnapshotCohort());
242     }
243
244     private void onGetOnDemandRaftStats() {
245         // Debugging message to retrieve raft stats.
246
247         OnDemandRaftState.Builder builder = OnDemandRaftState.builder()
248                 .commitIndex(context.getCommitIndex())
249                 .currentTerm(context.getTermInformation().getCurrentTerm())
250                 .inMemoryJournalDataSize(replicatedLog().dataSize())
251                 .inMemoryJournalLogSize(replicatedLog().size())
252                 .isSnapshotCaptureInitiated(context.getSnapshotManager().isCapturing())
253                 .lastApplied(context.getLastApplied())
254                 .lastIndex(replicatedLog().lastIndex())
255                 .lastTerm(replicatedLog().lastTerm())
256                 .leader(getLeaderId())
257                 .raftState(currentBehavior.state().toString())
258                 .replicatedToAllIndex(currentBehavior.getReplicatedToAllIndex())
259                 .snapshotIndex(replicatedLog().getSnapshotIndex())
260                 .snapshotTerm(replicatedLog().getSnapshotTerm())
261                 .votedFor(context.getTermInformation().getVotedFor())
262                 .peerAddresses(new HashMap<>(context.getPeerAddresses()));
263
264         ReplicatedLogEntry lastLogEntry = getLastLogEntry();
265         if (lastLogEntry != null) {
266             builder.lastLogIndex(lastLogEntry.getIndex());
267             builder.lastLogTerm(lastLogEntry.getTerm());
268         }
269
270         if(getCurrentBehavior() instanceof AbstractLeader) {
271             AbstractLeader leader = (AbstractLeader)getCurrentBehavior();
272             Collection<String> followerIds = leader.getFollowerIds();
273             List<FollowerInfo> followerInfoList = Lists.newArrayListWithCapacity(followerIds.size());
274             for(String id: followerIds) {
275                 final FollowerLogInformation info = leader.getFollower(id);
276                 followerInfoList.add(new FollowerInfo(id, info.getNextIndex(), info.getMatchIndex(),
277                         info.isFollowerActive(), DurationFormatUtils.formatDurationHMS(info.timeSinceLastActivity())));
278             }
279
280             builder.followerInfoList(followerInfoList);
281         }
282
283         sender().tell(builder.build(), self());
284
285     }
286
287     private void handleBehaviorChange(BehaviorStateHolder oldBehaviorState, RaftActorBehavior currentBehavior) {
288         RaftActorBehavior oldBehavior = oldBehaviorState.getBehavior();
289
290         if (oldBehavior != currentBehavior){
291             onStateChanged();
292         }
293
294         String oldBehaviorLeaderId = oldBehavior == null ? null : oldBehaviorState.getLeaderId();
295         String oldBehaviorStateName = oldBehavior == null ? null : oldBehavior.state().name();
296
297         // it can happen that the state has not changed but the leader has changed.
298         Optional<ActorRef> roleChangeNotifier = getRoleChangeNotifier();
299         if(!Objects.equal(oldBehaviorLeaderId, currentBehavior.getLeaderId())) {
300             if(roleChangeNotifier.isPresent()) {
301                 roleChangeNotifier.get().tell(newLeaderStateChanged(getId(), currentBehavior.getLeaderId()), getSelf());
302             }
303
304             onLeaderChanged(oldBehaviorLeaderId, currentBehavior.getLeaderId());
305         }
306
307         if (roleChangeNotifier.isPresent() &&
308                 (oldBehavior == null || (oldBehavior.state() != currentBehavior.state()))) {
309             roleChangeNotifier.get().tell(new RoleChanged(getId(), oldBehaviorStateName ,
310                     currentBehavior.state().name()), getSelf());
311         }
312     }
313
314     protected LeaderStateChanged newLeaderStateChanged(String memberId, String leaderId) {
315         return new LeaderStateChanged(memberId, leaderId);
316     }
317
318     /**
319      * When a derived RaftActor needs to persist something it must call
320      * persistData.
321      *
322      * @param clientActor
323      * @param identifier
324      * @param data
325      */
326     protected void persistData(final ActorRef clientActor, final String identifier,
327         final Payload data) {
328
329         ReplicatedLogEntry replicatedLogEntry = new ReplicatedLogImplEntry(
330             context.getReplicatedLog().lastIndex() + 1,
331             context.getTermInformation().getCurrentTerm(), data);
332
333         if(LOG.isDebugEnabled()) {
334             LOG.debug("{}: Persist data {}", persistenceId(), replicatedLogEntry);
335         }
336
337         final RaftActorContext raftContext = getRaftActorContext();
338
339         replicatedLog().appendAndPersist(replicatedLogEntry, new Procedure<ReplicatedLogEntry>() {
340             @Override
341             public void apply(ReplicatedLogEntry replicatedLogEntry) throws Exception {
342                 if(!hasFollowers()){
343                     // Increment the Commit Index and the Last Applied values
344                     raftContext.setCommitIndex(replicatedLogEntry.getIndex());
345                     raftContext.setLastApplied(replicatedLogEntry.getIndex());
346
347                     // Apply the state immediately
348                     applyState(clientActor, identifier, data);
349
350                     // Send a ApplyJournalEntries message so that we write the fact that we applied
351                     // the state to durable storage
352                     self().tell(new ApplyJournalEntries(replicatedLogEntry.getIndex()), self());
353
354                     context.getSnapshotManager().trimLog(context.getLastApplied(), currentBehavior);
355
356                 } else if (clientActor != null) {
357                     // Send message for replication
358                     currentBehavior.handleMessage(getSelf(),
359                             new Replicate(clientActor, identifier, replicatedLogEntry));
360                 }
361             }
362         });
363     }
364
365     private ReplicatedLog replicatedLog() {
366         return context.getReplicatedLog();
367     }
368
369     protected String getId() {
370         return context.getId();
371     }
372
373     @VisibleForTesting
374     void setCurrentBehavior(RaftActorBehavior behavior) {
375         currentBehavior.setDelegate(behavior);
376     }
377
378     protected RaftActorBehavior getCurrentBehavior() {
379         return currentBehavior.getDelegate();
380     }
381
382     /**
383      * Derived actors can call the isLeader method to check if the current
384      * RaftActor is the Leader or not
385      *
386      * @return true it this RaftActor is a Leader false otherwise
387      */
388     protected boolean isLeader() {
389         return context.getId().equals(currentBehavior.getLeaderId());
390     }
391
392     /**
393      * Derived actor can call getLeader if they need a reference to the Leader.
394      * This would be useful for example in forwarding a request to an actor
395      * which is the leader
396      *
397      * @return A reference to the leader if known, null otherwise
398      */
399     protected ActorSelection getLeader(){
400         String leaderAddress = getLeaderAddress();
401
402         if(leaderAddress == null){
403             return null;
404         }
405
406         return context.actorSelection(leaderAddress);
407     }
408
409     /**
410      *
411      * @return the current leader's id
412      */
413     protected String getLeaderId(){
414         return currentBehavior.getLeaderId();
415     }
416
417     protected RaftState getRaftState() {
418         return currentBehavior.state();
419     }
420
421     protected ReplicatedLogEntry getLastLogEntry() {
422         return replicatedLog().last();
423     }
424
425     protected Long getCurrentTerm(){
426         return context.getTermInformation().getCurrentTerm();
427     }
428
429     protected Long getCommitIndex(){
430         return context.getCommitIndex();
431     }
432
433     protected Long getLastApplied(){
434         return context.getLastApplied();
435     }
436
437     protected RaftActorContext getRaftActorContext() {
438         return context;
439     }
440
441     protected void updateConfigParams(ConfigParams configParams) {
442         context.setConfigParams(configParams);
443     }
444
445     public final DataPersistenceProvider persistence() {
446         return delegatingPersistenceProvider.getDelegate();
447     }
448
449     public void setPersistence(DataPersistenceProvider provider) {
450         delegatingPersistenceProvider.setDelegate(provider);
451     }
452
453     protected void setPersistence(boolean persistent) {
454         if(persistent) {
455             setPersistence(new PersistentDataProvider(this));
456         } else {
457             setPersistence(new NonPersistentDataProvider() {
458                 /**
459                  * The way snapshotting works is,
460                  * <ol>
461                  * <li> RaftActor calls createSnapshot on the Shard
462                  * <li> Shard sends a CaptureSnapshotReply and RaftActor then calls saveSnapshot
463                  * <li> When saveSnapshot is invoked on the akka-persistence API it uses the SnapshotStore to save
464                  * the snapshot. The SnapshotStore sends SaveSnapshotSuccess or SaveSnapshotFailure. When the
465                  * RaftActor gets SaveSnapshot success it commits the snapshot to the in-memory journal. This
466                  * commitSnapshot is mimicking what is done in SaveSnapshotSuccess.
467                  * </ol>
468                  */
469                 @Override
470                 public void saveSnapshot(Object o) {
471                     // Make saving Snapshot successful
472                     // Committing the snapshot here would end up calling commit in the creating state which would
473                     // be a state violation. That's why now we send a message to commit the snapshot.
474                     self().tell(RaftActorSnapshotMessageSupport.COMMIT_SNAPSHOT, self());
475                 }
476             });
477         }
478     }
479
480     /**
481      * setPeerAddress sets the address of a known peer at a later time.
482      * <p>
483      * This is to account for situations where a we know that a peer
484      * exists but we do not know an address up-front. This may also be used in
485      * situations where a known peer starts off in a different location and we
486      * need to change it's address
487      * <p>
488      * Note that if the peerId does not match the list of peers passed to
489      * this actor during construction an IllegalStateException will be thrown.
490      *
491      * @param peerId
492      * @param peerAddress
493      */
494     protected void setPeerAddress(String peerId, String peerAddress){
495         context.setPeerAddress(peerId, peerAddress);
496     }
497
498     /**
499      * The applyState method will be called by the RaftActor when some data
500      * needs to be applied to the actor's state
501      *
502      * @param clientActor A reference to the client who sent this message. This
503      *                    is the same reference that was passed to persistData
504      *                    by the derived actor. clientActor may be null when
505      *                    the RaftActor is behaving as a follower or during
506      *                    recovery.
507      * @param identifier  The identifier of the persisted data. This is also
508      *                    the same identifier that was passed to persistData by
509      *                    the derived actor. identifier may be null when
510      *                    the RaftActor is behaving as a follower or during
511      *                    recovery
512      * @param data        A piece of data that was persisted by the persistData call.
513      *                    This should NEVER be null.
514      */
515     protected abstract void applyState(ActorRef clientActor, String identifier,
516         Object data);
517
518     /**
519      * Returns the RaftActorRecoveryCohort to participate in persistence recovery.
520      */
521     @Nonnull
522     protected abstract RaftActorRecoveryCohort getRaftActorRecoveryCohort();
523
524     /**
525      * This method is called when recovery is complete.
526      */
527     protected abstract void onRecoveryComplete();
528
529     /**
530      * Returns the RaftActorSnapshotCohort to participate in persistence recovery.
531      */
532     @Nonnull
533     protected abstract RaftActorSnapshotCohort getRaftActorSnapshotCohort();
534
535     /**
536      * This method will be called by the RaftActor when the state of the
537      * RaftActor changes. The derived actor can then use methods like
538      * isLeader or getLeader to do something useful
539      */
540     protected abstract void onStateChanged();
541
542     /**
543      * Notifier Actor for this RaftActor to notify when a role change happens
544      * @return ActorRef - ActorRef of the notifier or Optional.absent if none.
545      */
546     protected abstract Optional<ActorRef> getRoleChangeNotifier();
547
548     protected void onLeaderChanged(String oldLeader, String newLeader){};
549
550     private String getLeaderAddress(){
551         if(isLeader()){
552             return getSelf().path().toString();
553         }
554         String leaderId = currentBehavior.getLeaderId();
555         if (leaderId == null) {
556             return null;
557         }
558         String peerAddress = context.getPeerAddress(leaderId);
559         if(LOG.isDebugEnabled()) {
560             LOG.debug("{}: getLeaderAddress leaderId = {} peerAddress = {}",
561                     persistenceId(), leaderId, peerAddress);
562         }
563
564         return peerAddress;
565     }
566
567     protected boolean hasFollowers(){
568         return getRaftActorContext().hasFollowers();
569     }
570
571     /**
572      * @deprecated Deprecated in favor of {@link org.opendaylight.controller.cluster.raft.base.messages.DeleteEntriesTest}
573      *             whose type for fromIndex is long instead of int. This class was kept for backwards
574      *             compatibility with Helium.
575      */
576     @Deprecated
577     static class DeleteEntries implements Serializable {
578         private static final long serialVersionUID = 1L;
579         private final int fromIndex;
580
581         public DeleteEntries(int fromIndex) {
582             this.fromIndex = fromIndex;
583         }
584
585         public int getFromIndex() {
586             return fromIndex;
587         }
588     }
589
590     static class UpdateElectionTerm implements Serializable {
591         private static final long serialVersionUID = 1L;
592         private final long currentTerm;
593         private final String votedFor;
594
595         public UpdateElectionTerm(long currentTerm, String votedFor) {
596             this.currentTerm = currentTerm;
597             this.votedFor = votedFor;
598         }
599
600         public long getCurrentTerm() {
601             return currentTerm;
602         }
603
604         public String getVotedFor() {
605             return votedFor;
606         }
607     }
608
609     private static class BehaviorStateHolder {
610         private RaftActorBehavior behavior;
611         private String leaderId;
612
613         void init(RaftActorBehavior behavior) {
614             this.behavior = behavior;
615             this.leaderId = behavior != null ? behavior.getLeaderId() : null;
616         }
617
618         RaftActorBehavior getBehavior() {
619             return behavior;
620         }
621
622         String getLeaderId() {
623             return leaderId;
624         }
625     }
626 }