public class FD extends Protocol
FD starts when it detects (in a view change notification) that there are at least 2 members in the group. It stops running when the membership drops below 2.
When a message is received from the monitored neighbor member, it causes the pinger thread to 'skip' sending the next are-you-alive message. Thus, traffic is reduced.
Modifier and Type | Class and Description |
---|---|
protected class |
FD.Broadcaster
Task that periodically broadcasts a list of suspected members to the group.
|
protected class |
FD.BroadcastTask |
static class |
FD.FdHeader |
protected class |
FD.Monitor
Task which periodically checks of the last_ack from ping_dest exceeded timeout and - if yes - broadcasts
a SUSPECT message
|
Modifier and Type | Field and Description |
---|---|
protected FD.Broadcaster |
bcast_task
Transmits SUSPECT message until view change or UNSUSPECT is received
|
protected long |
last_ack |
protected Address |
local_addr |
protected java.util.concurrent.locks.Lock |
lock |
protected int |
max_tries |
protected java.util.List<Address> |
members |
protected java.util.concurrent.Future<?> |
monitor_future |
protected int |
num_heartbeats |
protected int |
num_suspect_events |
protected java.util.concurrent.atomic.AtomicInteger |
num_tries |
protected Address |
ping_dest |
protected java.util.List<Address> |
pingable_mbrs
Members from which we select ping_dest.
|
protected BoundedList<java.lang.String> |
suspect_history |
protected long |
timeout |
protected TimeScheduler |
timer |
after_creation_hook, down_prot, ergonomics, id, log, name, stack, stats, up_prot
Constructor and Description |
---|
FD() |
Modifier and Type | Method and Description |
---|---|
protected void |
computePingDest(Address remove)
Computes pingable_mbrs (based on the current membership and the suspected members) and ping_dest
|
java.lang.Object |
down(Event evt)
An event is to be sent down the stack.
|
int |
getCurrentNumTries() |
java.lang.String |
getLocalAddress() |
int |
getMaxTries() |
java.lang.String |
getMembers() |
int |
getNumberOfHeartbeatsSent() |
int |
getNumSuspectEventsGenerated() |
java.lang.String |
getPingableMembers() |
java.lang.String |
getPingDest() |
protected Address |
getPingDest(java.util.List<Address> mbrs) |
long |
getTimeout() |
void |
init()
Called after instance has been created (null constructor) and before protocol is started.
|
boolean |
isMonitorRunning() |
java.lang.String |
printSuspectHistory() |
void |
resetStats() |
protected void |
sendHeartbeatResponse(Address dest) |
void |
setMaxTries(int max_tries) |
void |
setTimeout(long timeout) |
void |
startFailureDetection() |
protected void |
startMonitor()
Requires lock to held by caller
|
void |
stop()
This method is called on a
Channel.disconnect() . |
void |
stopFailureDetection() |
protected void |
stopMonitor()
Requires lock to be held by caller
|
protected void |
unsuspect(Address mbr) |
java.lang.Object |
up(Event evt)
An event was received from the layer below.
|
void |
up(MessageBatch batch)
Sends up a multiple messages in a
MessageBatch . |
protected void |
updateTimestamp(Address sender) |
accept, afterCreationHook, destroy, dumpStats, enableStats, getConfigurableObjects, getDownProtocol, getDownServices, getId, getIdsAbove, getLevel, getLog, getName, getProtocolStack, getSocketFactory, getThreadFactory, getTransport, getUpProtocol, getUpServices, getValue, isErgonomics, level, parse, printStats, providedDownServices, providedUpServices, requiredDownServices, requiredUpServices, resetStatistics, setDownProtocol, setErgonomics, setId, setLevel, setProtocolStack, setSocketFactory, setUpProtocol, setValue, setValues, start, statsEnabled
protected long timeout
protected int max_tries
protected int num_heartbeats
protected int num_suspect_events
protected final BoundedList<java.lang.String> suspect_history
protected Address local_addr
protected volatile long last_ack
protected final java.util.concurrent.atomic.AtomicInteger num_tries
protected final java.util.concurrent.locks.Lock lock
protected volatile Address ping_dest
protected final java.util.List<Address> members
protected final java.util.List<Address> pingable_mbrs
members
minus the suspected membersprotected TimeScheduler timer
protected java.util.concurrent.Future<?> monitor_future
protected final FD.Broadcaster bcast_task
public java.lang.String getLocalAddress()
public java.lang.String getMembers()
public java.lang.String getPingableMembers()
public java.lang.String getPingDest()
public int getNumberOfHeartbeatsSent()
public int getNumSuspectEventsGenerated()
public long getTimeout()
public void setTimeout(long timeout)
public int getMaxTries()
public void setMaxTries(int max_tries)
public int getCurrentNumTries()
public java.lang.String printSuspectHistory()
public void resetStats()
resetStats
in class Protocol
public void init() throws java.lang.Exception
Protocol
public void stop()
Protocol
Channel.disconnect()
. Stops work (e.g. by closing multicast socket).
Will be called from top to bottom. This means that at the time of the method invocation the
neighbor protocol below is still working. This method will replace the
STOP, STOP_OK, CLEANUP and CLEANUP_OK events. The ProtocolStack guarantees that
when this method is called all messages in the down queue will have been flushedpublic void stopFailureDetection()
public void startFailureDetection()
protected void startMonitor()
protected void stopMonitor()
public boolean isMonitorRunning()
public java.lang.Object up(Event evt)
Protocol
down_prot.down()
or c) the event (or another event) is sent up
the stack using up_prot.up()
.public void up(MessageBatch batch)
Protocol
MessageBatch
. The sender of the batch is always the same, and so is the
destination (null == multicast messages). Messages in a batch can be OOB messages, regular messages, or mixed
messages, although the transport itself will create initial MessageBatches that contain only either OOB or
regular messages.
The default processing below sends messages up the stack individually, based on a matching criteria
(calling Protocol.accept(org.jgroups.Message)
), and - if true - calls Protocol.up(org.jgroups.Event)
for that message and removes the message. If the batch is not empty, it is passed up, or else it is dropped.
Subclasses should check if there are any messages destined for them (e.g. using
MessageBatch.getMatchingMessages(short,boolean)
), then possibly remove and process them and finally pass
the batch up to the next protocol. Protocols can also modify messages in place, e.g. ENCRYPT could decrypt all
encrypted messages in the batch, not remove them, and pass the batch up when done.public java.lang.Object down(Event evt)
Protocol
down_prot.down()
. In case of a GET_ADDRESS event (which tries to
retrieve the stack's address from one of the bottom layers), the layer may need to send
a new response event back up the stack using up_prot.up()
.protected void sendHeartbeatResponse(Address dest)
protected void unsuspect(Address mbr)
protected void updateTimestamp(Address sender)
protected void computePingDest(Address remove)
remove
- The member to be removed from pingable_mbrsCopyright © 1998-2020 Red Hat. All Rights Reserved.