Class RaftActorContextImpl
- java.lang.Object
-
- org.opendaylight.controller.cluster.raft.RaftActorContextImpl
-
- All Implemented Interfaces:
RaftActorContext
public class RaftActorContextImpl extends Object implements RaftActorContext
Implementation of the RaftActorContext interface.- Author:
- Moiz Raja, Thomas Pantelis
-
-
Constructor Summary
Constructors Constructor Description RaftActorContextImpl(ActorRef actor, ActorContext context, String id, @NonNull ElectionTerm termInformation, long commitIndex, long lastApplied, @NonNull Map<String,String> peerAddresses, @NonNull ConfigParams configParams, @NonNull DataPersistenceProvider persistenceProvider, @NonNull Consumer<ApplyState> applyStateConsumer, @NonNull Logger logger, @NonNull Executor executor)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ActorRefactorOf(Props props)Creates a new local actor.ActorSelectionactorSelection(String path)Creates an actor selection.voidaddToPeers(String peerId, String address, VotingState votingState)Adds a new peer.booleananyVotingPeers()Determines if there are any voting peers.ActorRefgetActor()Returns the reference to the RaftActor.ActorSystemgetActorSystem()Returns the The ActorSystem associated with this context.Consumer<ApplyState>getApplyStateConsumer()Returns the consumer of ApplyState operations.Optional<Cluster>getCluster()The akka Cluster singleton for the actor system if one is configured.longgetCommitIndex()Returns the index of highest log entry known to be committed.ConfigParamsgetConfigParams()Returns the ConfigParams instance.RaftActorBehaviorgetCurrentBehavior()Returns the current behavior attached to the RaftActor.ExecutorgetExecutor()Return an Executor which is guaranteed to run tasks in the context ofRaftActorContext.getActor().FileBackedOutputStreamFactorygetFileBackedOutputStreamFactory()Returns theFileBackedOutputStreamFactoryinstance with a common configuration.StringgetId()Returns the identifier for the RaftActor.longgetLastApplied()Returns index of highest log entry applied to state machine.LoggergetLogger()Returns the logger to be used for logging messages.shortgetPayloadVersion()Returns the payload version to be used when replicating data.ActorSelectiongetPeerActorSelection(String peerId)Returns an ActorSelection for a peer.StringgetPeerAddress(String peerId)Gets the address of a peer as a String.Collection<String>getPeerIds()Returns the id's for each peer.PeerInfogetPeerInfo(String peerId)Returns the PeerInfo for the given peer.Collection<PeerInfo>getPeers()Returns the PeerInfo instances for each peer.ServerConfigurationPayloadgetPeerServerInfo(boolean includeSelf)Returns the peer information as a ServerConfigurationPayload if dynamic server configurations have been applied.DataPersistenceProvidergetPersistenceProvider()Returns the DataPersistenceProvider instance.RaftActorLeadershipTransferCohortgetRaftActorLeadershipTransferCohort()Returns the RaftActorLeadershipTransferCohort if leadership transfer is in progress.RaftPolicygetRaftPolicy()Returns the RaftPolicy used to determine certain Raft behaviors.ReplicatedLoggetReplicatedLog()Returns the ReplicatedLog instance.SnapshotManagergetSnapshotManager()Returns the SnapshotManager instance.ElectionTermgetTermInformation()Returns the current ElectionTerm information.longgetTotalMemory()Returns the total available memory for use in calculations.booleanhasFollowers()Determines if there are any peer followers.booleanisDynamicServerConfigurationInUse()Determines if there have been any dynamic server configuration changes applied.booleanisVotingMember()Determines if this peer is a voting member of the cluster.voidremovePeer(String name)Removes a peer.voidsetCommitIndex(long commitIndex)Sets the index of highest log entry known to be committed.voidsetConfigParams(ConfigParams configParams)voidsetDynamicServerConfigurationInUse()Sets that dynamic server configuration changes have been applied.voidsetLastApplied(long lastApplied)Sets index of highest log entry applied to state machine.voidsetPayloadVersion(short payloadVersion)voidsetPeerAddress(String peerId, String peerAddress)Sets the address of a peer.voidsetRaftActorLeadershipTransferCohort(RaftActorLeadershipTransferCohort leadershipTransferCohort)Sets the RaftActorLeadershipTransferCohort for transferring leadership.voidsetReplicatedLog(ReplicatedLog replicatedLog)Sets the ReplicatedLog instance.voidsetTotalMemoryRetriever(LongSupplier retriever)Sets the retriever of the total memory metric.voidupdatePeerIds(ServerConfigurationPayload serverConfig)Updates the peers and information to match the given ServerConfigurationPayload.
-
-
-
Constructor Detail
-
RaftActorContextImpl
public RaftActorContextImpl(ActorRef actor, ActorContext context, String id, @NonNull ElectionTerm termInformation, long commitIndex, long lastApplied, @NonNull Map<String,String> peerAddresses, @NonNull ConfigParams configParams, @NonNull DataPersistenceProvider persistenceProvider, @NonNull Consumer<ApplyState> applyStateConsumer, @NonNull Logger logger, @NonNull Executor executor)
-
-
Method Detail
-
setPayloadVersion
public void setPayloadVersion(short payloadVersion)
-
getPayloadVersion
public short getPayloadVersion()
Description copied from interface:RaftActorContextReturns the payload version to be used when replicating data.- Specified by:
getPayloadVersionin interfaceRaftActorContext- Returns:
- the payload version.
-
setConfigParams
public void setConfigParams(ConfigParams configParams)
-
actorOf
public ActorRef actorOf(Props props)
Description copied from interface:RaftActorContextCreates a new local actor.- Specified by:
actorOfin interfaceRaftActorContext- Parameters:
props- the Props used to create the actor.- Returns:
- a reference to the newly created actor.
-
actorSelection
public ActorSelection actorSelection(String path)
Description copied from interface:RaftActorContextCreates an actor selection.- Specified by:
actorSelectionin interfaceRaftActorContext- Parameters:
path- the path.- Returns:
- an actor selection for the given actor path.
-
getId
public String getId()
Description copied from interface:RaftActorContextReturns the identifier for the RaftActor. This identifier represents the name of the actor whose common state is being shared.- Specified by:
getIdin interfaceRaftActorContext- Returns:
- the identifier
-
getActor
public ActorRef getActor()
Description copied from interface:RaftActorContextReturns the reference to the RaftActor.- Specified by:
getActorin interfaceRaftActorContext- Returns:
- the reference to the RaftActor itself. This can be used to send messages to the RaftActor
-
getExecutor
public final Executor getExecutor()
Description copied from interface:RaftActorContextReturn an Executor which is guaranteed to run tasks in the context ofRaftActorContext.getActor().- Specified by:
getExecutorin interfaceRaftActorContext- Returns:
- An executor.
-
getCluster
public Optional<Cluster> getCluster()
Description copied from interface:RaftActorContextThe akka Cluster singleton for the actor system if one is configured.- Specified by:
getClusterin interfaceRaftActorContext- Returns:
- an Optional containing the Cluster instance is present.
-
getTermInformation
public ElectionTerm getTermInformation()
Description copied from interface:RaftActorContextReturns the current ElectionTerm information.- Specified by:
getTermInformationin interfaceRaftActorContext- Returns:
- the ElectionTerm.
-
getCommitIndex
public long getCommitIndex()
Description copied from interface:RaftActorContextReturns the index of highest log entry known to be committed.- Specified by:
getCommitIndexin interfaceRaftActorContext- Returns:
- index of highest log entry known to be committed.
-
setCommitIndex
public void setCommitIndex(long commitIndex)
Description copied from interface:RaftActorContextSets the index of highest log entry known to be committed.- Specified by:
setCommitIndexin interfaceRaftActorContext- Parameters:
commitIndex- new commit index
-
getLastApplied
public long getLastApplied()
Description copied from interface:RaftActorContextReturns index of highest log entry applied to state machine.- Specified by:
getLastAppliedin interfaceRaftActorContext- Returns:
- index of highest log entry applied to state machine.
-
setLastApplied
public void setLastApplied(long lastApplied)
Description copied from interface:RaftActorContextSets index of highest log entry applied to state machine.- Specified by:
setLastAppliedin interfaceRaftActorContext- Parameters:
lastApplied- the new applied index.
-
setReplicatedLog
public void setReplicatedLog(ReplicatedLog replicatedLog)
Description copied from interface:RaftActorContextSets the ReplicatedLog instance.- Specified by:
setReplicatedLogin interfaceRaftActorContext- Parameters:
replicatedLog- the ReplicatedLog instance.
-
getReplicatedLog
public ReplicatedLog getReplicatedLog()
Description copied from interface:RaftActorContextReturns the ReplicatedLog instance.- Specified by:
getReplicatedLogin interfaceRaftActorContext- Returns:
- the ReplicatedLog instance.
-
getActorSystem
public ActorSystem getActorSystem()
Description copied from interface:RaftActorContextReturns the The ActorSystem associated with this context.- Specified by:
getActorSystemin interfaceRaftActorContext- Returns:
- the ActorSystem.
-
getLogger
public Logger getLogger()
Description copied from interface:RaftActorContextReturns the logger to be used for logging messages.- Specified by:
getLoggerin interfaceRaftActorContext- Returns:
- the logger.
-
getPeerIds
public Collection<String> getPeerIds()
Description copied from interface:RaftActorContextReturns the id's for each peer.- Specified by:
getPeerIdsin interfaceRaftActorContext- Returns:
- the list of peer id's.
-
getPeers
public Collection<PeerInfo> getPeers()
Description copied from interface:RaftActorContextReturns the PeerInfo instances for each peer.- Specified by:
getPeersin interfaceRaftActorContext- Returns:
- list of PeerInfo
-
getPeerInfo
public PeerInfo getPeerInfo(String peerId)
Description copied from interface:RaftActorContextReturns the PeerInfo for the given peer.- Specified by:
getPeerInfoin interfaceRaftActorContext- Parameters:
peerId- the id of the peer- Returns:
- the PeerInfo or null if not found
-
getPeerAddress
public String getPeerAddress(String peerId)
Description copied from interface:RaftActorContextGets the address of a peer as a String. This is the same format in which a consumer would provide the address.- Specified by:
getPeerAddressin interfaceRaftActorContext- Parameters:
peerId- the id of the peer.- Returns:
- the address of the peer or null if the address has not yet been resolved.
-
updatePeerIds
public void updatePeerIds(ServerConfigurationPayload serverConfig)
Description copied from interface:RaftActorContextUpdates the peers and information to match the given ServerConfigurationPayload.- Specified by:
updatePeerIdsin interfaceRaftActorContext- Parameters:
serverConfig- the ServerConfigurationPayload.
-
getConfigParams
public ConfigParams getConfigParams()
Description copied from interface:RaftActorContextReturns the ConfigParams instance.- Specified by:
getConfigParamsin interfaceRaftActorContext- Returns:
- the ConfigParams instance.
-
addToPeers
public void addToPeers(String peerId, String address, VotingState votingState)
Description copied from interface:RaftActorContextAdds a new peer.- Specified by:
addToPeersin interfaceRaftActorContext- Parameters:
peerId- the id of the new peer.address- the address of the new peer.votingState- the VotingState of the new peer.
-
removePeer
public void removePeer(String name)
Description copied from interface:RaftActorContextRemoves a peer.- Specified by:
removePeerin interfaceRaftActorContext- Parameters:
name- the id of the peer to remove.
-
getPeerActorSelection
public ActorSelection getPeerActorSelection(String peerId)
Description copied from interface:RaftActorContextReturns an ActorSelection for a peer.- Specified by:
getPeerActorSelectionin interfaceRaftActorContext- Parameters:
peerId- the id of the peer.- Returns:
- the actorSelection corresponding to the peer or null if the address has not yet been resolved.
-
setPeerAddress
public void setPeerAddress(String peerId, String peerAddress)
Description copied from interface:RaftActorContextSets the address of a peer.- Specified by:
setPeerAddressin interfaceRaftActorContext- Parameters:
peerId- the id of the peer.peerAddress- the address of the peer.
-
getSnapshotManager
public SnapshotManager getSnapshotManager()
Description copied from interface:RaftActorContextReturns the SnapshotManager instance.- Specified by:
getSnapshotManagerin interfaceRaftActorContext- Returns:
- the SnapshotManager instance.
-
getTotalMemory
public long getTotalMemory()
Description copied from interface:RaftActorContextReturns the total available memory for use in calculations. Normally this returns JVM's max memory but can be overridden for unit tests.- Specified by:
getTotalMemoryin interfaceRaftActorContext- Returns:
- the total memory.
-
setTotalMemoryRetriever
public void setTotalMemoryRetriever(LongSupplier retriever)
Description copied from interface:RaftActorContextSets the retriever of the total memory metric.- Specified by:
setTotalMemoryRetrieverin interfaceRaftActorContext- Parameters:
retriever- a supplier of the total memory metric.
-
hasFollowers
public boolean hasFollowers()
Description copied from interface:RaftActorContextDetermines if there are any peer followers.- Specified by:
hasFollowersin interfaceRaftActorContext- Returns:
- true if there are followers otherwise false.
-
getPersistenceProvider
public DataPersistenceProvider getPersistenceProvider()
Description copied from interface:RaftActorContextReturns the DataPersistenceProvider instance.- Specified by:
getPersistenceProviderin interfaceRaftActorContext- Returns:
- the DataPersistenceProvider instance.
-
getRaftPolicy
public RaftPolicy getRaftPolicy()
Description copied from interface:RaftActorContextReturns the RaftPolicy used to determine certain Raft behaviors.- Specified by:
getRaftPolicyin interfaceRaftActorContext- Returns:
- the RaftPolicy instance.
-
isDynamicServerConfigurationInUse
public boolean isDynamicServerConfigurationInUse()
Description copied from interface:RaftActorContextDetermines if there have been any dynamic server configuration changes applied.- Specified by:
isDynamicServerConfigurationInUsein interfaceRaftActorContext- Returns:
- true if dynamic server configuration changes have been applied, false otherwise, meaning that static peer configuration is still in use.
-
setDynamicServerConfigurationInUse
public void setDynamicServerConfigurationInUse()
Description copied from interface:RaftActorContextSets that dynamic server configuration changes have been applied.- Specified by:
setDynamicServerConfigurationInUsein interfaceRaftActorContext
-
getPeerServerInfo
public ServerConfigurationPayload getPeerServerInfo(boolean includeSelf)
Description copied from interface:RaftActorContextReturns the peer information as a ServerConfigurationPayload if dynamic server configurations have been applied.- Specified by:
getPeerServerInfoin interfaceRaftActorContext- Parameters:
includeSelf- include this peer's info.- Returns:
- the peer information as a ServerConfigurationPayload or null if no dynamic server configurations have been applied.
-
isVotingMember
public boolean isVotingMember()
Description copied from interface:RaftActorContextDetermines if this peer is a voting member of the cluster.- Specified by:
isVotingMemberin interfaceRaftActorContext- Returns:
- true if this peer is a voting member, false otherwise.
-
anyVotingPeers
public boolean anyVotingPeers()
Description copied from interface:RaftActorContextDetermines if there are any voting peers.- Specified by:
anyVotingPeersin interfaceRaftActorContext- Returns:
- true if there are any voting peers, false otherwise.
-
getCurrentBehavior
public RaftActorBehavior getCurrentBehavior()
Description copied from interface:RaftActorContextReturns the current behavior attached to the RaftActor.- Specified by:
getCurrentBehaviorin interfaceRaftActorContext- Returns:
- current behavior.
-
getApplyStateConsumer
public Consumer<ApplyState> getApplyStateConsumer()
Description copied from interface:RaftActorContextReturns the consumer of ApplyState operations. This is invoked by a behavior when a log entry needs to be applied to the state.- Specified by:
getApplyStateConsumerin interfaceRaftActorContext- Returns:
- the Consumer
-
getFileBackedOutputStreamFactory
public FileBackedOutputStreamFactory getFileBackedOutputStreamFactory()
Description copied from interface:RaftActorContextReturns theFileBackedOutputStreamFactoryinstance with a common configuration.- Specified by:
getFileBackedOutputStreamFactoryin interfaceRaftActorContext- Returns:
- the
FileBackedOutputStreamFactory;
-
getRaftActorLeadershipTransferCohort
public RaftActorLeadershipTransferCohort getRaftActorLeadershipTransferCohort()
Description copied from interface:RaftActorContextReturns the RaftActorLeadershipTransferCohort if leadership transfer is in progress.- Specified by:
getRaftActorLeadershipTransferCohortin interfaceRaftActorContext- Returns:
- the RaftActorLeadershipTransferCohort if leadership transfer is in progress, null otherwise
-
setRaftActorLeadershipTransferCohort
public void setRaftActorLeadershipTransferCohort(RaftActorLeadershipTransferCohort leadershipTransferCohort)
Description copied from interface:RaftActorContextSets the RaftActorLeadershipTransferCohort for transferring leadership.- Specified by:
setRaftActorLeadershipTransferCohortin interfaceRaftActorContext- Parameters:
leadershipTransferCohort- the RaftActorLeadershipTransferCohort or null to clear the existing one
-
-