Package org.apache.storm.nimbus
Interface ILeaderElector
- All Superinterfaces:
AutoCloseable
- All Known Implementing Classes:
LeaderElectorImp
,MockLeaderElector
The interface for leader election.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
queue up for leadership lock.boolean
awaitLeadership
(long timeout, TimeUnit timeUnit) Wait for the caller to gain leadership.void
close()
Method called to allow for cleanup.Get list of current nimbus addresses.Get the current leader's address.boolean
isLeader()
Decide if the caller currently has the leader lock.void
Method guaranteed to be called as part of initialization of leader elector instance.void
quitElectionFor
(int delayMs) Removes the caller from leadership election, relinquishing leadership if acquired, then requeues for leadership after the specified delay.
-
Method Details
-
prepare
Method guaranteed to be called as part of initialization of leader elector instance.- Parameters:
conf
- configuration
-
addToLeaderLockQueue
queue up for leadership lock. The call returns immediately and the caller must check isLeader() to perform any leadership action. This method can be called multiple times so it needs to be idempotent.- Throws:
Exception
-
quitElectionFor
Removes the caller from leadership election, relinquishing leadership if acquired, then requeues for leadership after the specified delay.- Parameters:
delayMs
- The delay to wait before re-entering the election- Throws:
Exception
-
isLeader
Decide if the caller currently has the leader lock.- Returns:
- true if the caller currently has the leader lock.
- Throws:
Exception
-
getLeader
NimbusInfo getLeader()Get the current leader's address.- Returns:
- the current leader's address, may return null if no one has the lock.
-
awaitLeadership
Wait for the caller to gain leadership. This should only be used in single-Nimbus clusters, and is only useful to allow testing code to wait for a LocalCluster's Nimbus to gain leadership before trying to submit topologies.- Returns:
- true is leadership was acquired, false otherwise
- Throws:
InterruptedException
-
getAllNimbuses
Get list of current nimbus addresses.- Returns:
- list of current nimbus addresses, includes leader.
- Throws:
Exception
-
close
Method called to allow for cleanup. Relinquishes leadership if owned by the caller.- Specified by:
close
in interfaceAutoCloseable
- Throws:
Exception
-