Package org.jgroups.protocols
Class RED
- java.lang.Object
-
- org.jgroups.stack.Protocol
-
- org.jgroups.protocols.RED
-
-
Field Summary
Fields Modifier and Type Field Description protected doubleavg_queue_sizeprotected Bundlerbundlerprotected java.util.concurrent.atomic.LongAdderdropped_msgsprotected booleanenabledprotected java.util.concurrent.locks.Locklockprotected longmaxprotected doublemax_thresholdprotected longminprotected doublemin_thresholdprotected intqueue_capacityprotected longspanprotected java.util.concurrent.atomic.LongAddertotal_msgsprotected doubleweightprotected doubleweight_factor-
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 RED()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description protected static doublecheckRange(double val, double min, double max, java.lang.String name)protected doublecomputeAverage(double old_avg, int new_queue_size)protected doublecomputeDropProbability(double avg)Computes a probability P with which the message should get dropped.java.lang.Objectdown(Message msg)A message is sent down the stack.protected booleandrop(double avg)longgetDroppedMessages()Deprecated.doublegetDropRate()doublegetMinThreshold()longgetTotalMessages()Deprecated.booleanisEnabled()voidresetStats()REDsetEnabled(boolean e)voidstart()This method is called on aJChannel.connect(String); starts work.java.lang.StringtoString()voidup(MessageBatch batch)Sends up a multiple messages in aMessageBatch.-
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, requiredDownServices, requiredUpServices, resetStatistics, setAddress, setDownProtocol, setErgonomics, setId, setLevel, setPolicies, setProtocolStack, setSocketFactory, setUpProtocol, setValue, statsEnabled, stop, up, up
-
-
-
-
Field Detail
-
enabled
protected boolean enabled
-
queue_capacity
protected int queue_capacity
-
min_threshold
protected double min_threshold
-
min
protected long min
-
max_threshold
protected double max_threshold
-
max
protected long max
-
avg_queue_size
protected double avg_queue_size
-
weight_factor
protected double weight_factor
-
dropped_msgs
protected final java.util.concurrent.atomic.LongAdder dropped_msgs
-
total_msgs
protected final java.util.concurrent.atomic.LongAdder total_msgs
-
bundler
protected Bundler bundler
-
lock
protected final java.util.concurrent.locks.Lock lock
-
span
protected long span
-
weight
protected double weight
-
-
Method Detail
-
isEnabled
public boolean isEnabled()
-
setEnabled
public RED setEnabled(boolean e)
-
getMinThreshold
public double getMinThreshold()
-
getDroppedMessages
@Deprecated public long getDroppedMessages()
Deprecated.Don't remove! https://issues.redhat.com/browse/JGRP-2814
-
getTotalMessages
@Deprecated public long getTotalMessages()
Deprecated.Don't remove! https://issues.redhat.com/browse/JGRP-2814
-
getDropRate
public double getDropRate()
-
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
-
resetStats
public void resetStats()
- Overrides:
resetStatsin classProtocol
-
down
public java.lang.Object down(Message msg)
Description copied from class:ProtocolA message is sent down the stack. Protocols may examine the message and do something (e.g. add a header) with it, before passing it down.
-
up
public void up(MessageBatch batch)
Description copied from class:ProtocolSends up a multiple messages in aMessageBatch. 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 (callingProtocol.accept(Message)), and - if true - callsProtocol.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. usingMessageBatch.iterator(Predicate)), 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.
-
computeAverage
protected double computeAverage(double old_avg, int new_queue_size)
-
computeDropProbability
protected double computeDropProbability(double avg)
Computes a probability P with which the message should get dropped. min_threshold < avg < max_threshold. Probability increases linearly with min moving toward max
-
drop
protected boolean drop(double avg)
-
checkRange
protected static double checkRange(double val, double min, double max, java.lang.String name)
-
-