Enum Class TopicOverloadPolicy
- All Implemented Interfaces:
Serializable
,Comparable<TopicOverloadPolicy>
,Constable
This policy can only be used in combination with the
HazelcastInstance.getReliableTopic(String)
.
The reliable topic uses a Ringbuffer
to
store the messages. A ringbuffer doesn't track where readers are, so
it has no concept of a slow consumers. This provides many advantages like
high performance reads, but it also gives the ability to the reader to
re-read the same message multiple times in case of an error.
A ringbuffer has a limited, fixed capacity. A fast producer may overwrite
old messages that are still being read by a slow consumer. To prevent
this, we may configure a time-to-live on the ringbuffer (see
RingbufferConfig.setTimeToLiveSeconds(int)
.
Once the time-to-live is configured, the TopicOverloadPolicy
controls how the publisher is going to deal with the situation that a
ringbuffer is full and the oldest item in the ringbuffer is not old
enough to get overwritten.
Keep in mind that this retention period (time-to-live) can keep messages from being overwritten, even though all readers might have already completed reading.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe caller will wait till there space in the ringbuffer.The message that was to be published is discarded.Using this policy, a message that has not expired can be overwritten.The publish call immediately fails. -
Method Summary
Modifier and TypeMethodDescriptionstatic TopicOverloadPolicy
Returns the enum constant of this class with the specified name.static TopicOverloadPolicy[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DISCARD_OLDEST
Using this policy, a message that has not expired can be overwritten. No matter the retention period set, the overwrite will just overwrite the item.This can be a problem for slow consumers because they were promised a certain time window to process messages. But it will benefit producers and fast consumers since they are able to continue. This policy sacrifices the slow producer in favor of fast producers/consumers.
-
DISCARD_NEWEST
The message that was to be published is discarded. -
BLOCK
The caller will wait till there space in the ringbuffer. -
ERROR
The publish call immediately fails.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-