Package org.jgroups.protocols.pbcast
Class STATE_TRANSFER
- java.lang.Object
-
- org.jgroups.stack.Protocol
-
- org.jgroups.protocols.pbcast.STATE_TRANSFER
-
- All Implemented Interfaces:
Lifecycle,ProcessingQueue.Handler<Address>
public class STATE_TRANSFER extends Protocol implements ProcessingQueue.Handler<Address>
STATE_TRANSFER protocol based on byte array transfer. A state request is sent to a chosen member (coordinator if null). That member makes a copy D of its current digest and asks the application for a copy of its current state S. Then the member returns both S and D to the requester. The requester first sets its digest to D and then returns the state to the application.- Author:
- Bela Ban
- See Also:
STATE,STATE_SOCK
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classSTATE_TRANSFER.StateHeaderWraps data for a state request/response.
-
Field Summary
Fields Modifier and Type Field Description protected doubleavg_state_sizeprotected java.util.List<Address>membersprotected java.util.concurrent.atomic.LongAddernum_bytes_sentprotected java.util.concurrent.atomic.LongAddernum_state_reqsprotected longstartprotected ProcessingQueue<Address>state_requestersList of members requesting stateprotected longstopprotected Viewviewprotected booleanwaiting_for_state_responseset to true while waiting for a STATE_RSP-
Fields inherited from class org.jgroups.stack.Protocol
after_creation_hook, down_prot, ergonomics, id, local_addr, log, policies, stack, stats, up_prot
-
-
Constructor Summary
Constructors Constructor Description STATE_TRANSFER()
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidcloseBarrierAndSuspendStable()protected voidcloseHoleFor(Address member)protected AddressdetermineCoordinator()Return the first element of members which is not me.java.lang.Objectdown(Event evt)An event is to be sent down the stack.doublegetAverageStateSize()Deprecated.longgetNumberOfStateBytesSent()Deprecated.longgetNumberOfStateRequests()Deprecated.protected voidgetStateFromApplication(Address requester, Digest digest)voidhandle(Address state_requester)protected voidhandleException(java.lang.Throwable exception)protected voidhandleStateReq(Address requester)protected voidhandleStateRsp(Digest digest, Address sender, byte[] state)Set the digest and the send the state up to the applicationprotected voidhandleViewChange(View v)voidopenBarrier()voidopenBarrierAndResumeStable()protected voidpunchHoleFor(Address member)java.util.List<java.lang.Integer>requiredDownServices()List of events that are required to be answered by some layer belowvoidresetStats()voidresumeStable()protected voidsendException(Address requester, java.lang.Throwable exception)voidstart()This method is called on aJChannel.connect(String); starts work.voidstop()Called on aJChannel.disconnect(); stops work (e.g.java.lang.Objectup(Event evt)An event was received from the protocol below.java.lang.Objectup(Message msg)A single message was received.-
Methods inherited from class org.jgroups.stack.Protocol
accept, addPolicy, addr, addr, afterCreationHook, destroy, down, down, enableStats, getAddress, getComponents, getDownProtocol, getDownServices, getId, getIdsAbove, getLevel, getLog, getName, getPolicies, getProtocolStack, getSocketFactory, getThreadFactory, getTransport, getUpProtocol, getUpServices, getValue, init, isErgonomics, level, parse, policies, providedDownServices, providedUpServices, removePolicy, requiredUpServices, resetStatistics, setAddress, setDownProtocol, setErgonomics, setId, setLevel, setPolicies, setProtocolStack, setSocketFactory, setUpProtocol, setValue, statsEnabled, toString, up
-
-
-
-
Field Detail
-
start
protected long start
-
stop
protected long stop
-
num_state_reqs
protected final java.util.concurrent.atomic.LongAdder num_state_reqs
-
num_bytes_sent
protected final java.util.concurrent.atomic.LongAdder num_bytes_sent
-
avg_state_size
protected double avg_state_size
-
view
protected volatile View view
-
members
protected final java.util.List<Address> members
-
state_requesters
protected final ProcessingQueue<Address> state_requesters
List of members requesting state
-
waiting_for_state_response
protected volatile boolean waiting_for_state_response
set to true while waiting for a STATE_RSP
-
-
Method Detail
-
getNumberOfStateRequests
@Deprecated public long getNumberOfStateRequests()
Deprecated.Don't remove! https://issues.redhat.com/browse/JGRP-2814
-
getNumberOfStateBytesSent
@Deprecated public long getNumberOfStateBytesSent()
Deprecated.Don't remove! https://issues.redhat.com/browse/JGRP-2814
-
getAverageStateSize
@Deprecated public double getAverageStateSize()
Deprecated.Don't remove! https://issues.redhat.com/browse/JGRP-2814
-
requiredDownServices
public java.util.List<java.lang.Integer> requiredDownServices()
Description copied from class:ProtocolList of events that are required to be answered by some layer below- Overrides:
requiredDownServicesin classProtocol
-
resetStats
public void resetStats()
- Overrides:
resetStatsin classProtocol
-
start
public void start() throws java.lang.ExceptionDescription copied from class:ProtocolThis method is called on aJChannel.connect(String); starts work. Protocols are connected ready to receive events. Will be called from bottom to top.- Specified by:
startin interfaceLifecycle- Overrides:
startin classProtocol- Throws:
java.lang.Exception- Thrown if protocol cannot be started successfully. This will cause the ProtocolStack to fail, soJChannel.connect(String)will throw an exception
-
stop
public void stop()
Description copied from class:ProtocolCalled on aJChannel.disconnect(); stops work (e.g. by closing multicast socket). Will be called from top to bottom.
-
closeBarrierAndSuspendStable
public void closeBarrierAndSuspendStable()
-
openBarrierAndResumeStable
public void openBarrierAndResumeStable()
-
openBarrier
public void openBarrier()
-
resumeStable
public void resumeStable()
-
up
public java.lang.Object up(Event evt)
Description copied from class:ProtocolAn event was received from the protocol below. Usually the current protocol will want to examine the event type and - depending on its type - perform some computation (e.g. removing headers from a MSG event type, or updating the internal membership list when receiving a VIEW_CHANGE event). Finally, the event is either a) discarded, or b) an event is sent down the stack usingdown_prot.down()or c) the event (or another event) is sent up the stack usingup_prot.up().
-
up
public java.lang.Object up(Message msg)
Description copied from class:ProtocolA single message was received. Protocols may examine the message and do something (e.g. add a header) with it before passing it up.
-
down
public java.lang.Object down(Event evt)
Description copied from class:ProtocolAn event is to be sent down the stack. A protocol may want to examine its type and perform some action on it, depending on the event's type. If the event is a message MSG, then the protocol may need to add a header to it (or do nothing at all) before sending it down the stack usingdown_prot.down().
-
punchHoleFor
protected void punchHoleFor(Address member)
-
closeHoleFor
protected void closeHoleFor(Address member)
-
determineCoordinator
protected Address determineCoordinator()
Return the first element of members which is not me. Otherwise return null.
-
handleViewChange
protected void handleViewChange(View v)
-
handleException
protected void handleException(java.lang.Throwable exception)
-
handle
public void handle(Address state_requester)
- Specified by:
handlein interfaceProcessingQueue.Handler<Address>
-
handleStateReq
protected void handleStateReq(Address requester)
-
sendException
protected void sendException(Address requester, java.lang.Throwable exception)
-
-