Interface InvocableMap.StreamingAggregator<K,V,P,R>
- Type Parameters:
K- the type of the Map entry keysV- the type of the Map entry valuesP- the type of the partial resultR- the type of the final result
- All Superinterfaces:
InvocableMap.EntryAggregator<K,,V, R> Serializable
- All Known Implementing Classes:
AbstractAggregator,AbstractBigDecimalAggregator,AbstractComparableAggregator,AbstractDoubleAggregator,AbstractLongAggregator,BigDecimalAverage,BigDecimalMax,BigDecimalMin,BigDecimalSum,ComparableMax,ComparableMin,CompositeAggregator,CompositeAggregator.Parallel,Count,DistinctValues,DoubleAverage,DoubleMax,DoubleMin,DoubleSum,GroupAggregator,GroupAggregator.Parallel,LongMax,LongMin,LongSum,PartitionedJCacheStatistics.PartitionedCacheStatisticsAggregator,PartitionedJCacheStatistics.PartitionedCacheStatisticsClear,PriorityAggregator,QueryRecorder,ReducerAggregator,ScriptAggregator,TopNAggregator
- Enclosing interface:
InvocableMap<K,V>
InvocableMap.EntryAggregator that
processes entries in a streaming fashion and provides better control
over execution characteristics.
It is strongly recommended that all new custom aggregator implementations
implement this interface directly and override default implementation of
the characteristics() method which intentionally errs on a
conservative side.
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intstatic final intA flag specifying that it might be beneficial to execute this aggregator member-by-member.static final intA flag specifying that it might be beneficial to execute this aggregator partition-by-partition.static final intA flag specifying that this aggregator should be executed in parallel.static final intA flag specifying that this aggregator is only interested in entries that are present in the cache and that the entries which are not present should never be passed to theaccumulate(Entry)method.static final intA flag specifying that this aggregator retainsInvocableMap.Entryinstances passed toaccumulate(Entry)method, which will force creation of a separateInvocableMap.Entryinstance for each cache entry.static final intA flag specifying that this aggregator should be executed serially. -
Method Summary
Modifier and TypeMethodDescriptionbooleanaccumulate(InvocableMap.Entry<? extends K, ? extends V> entry) Accumulate one entry into the result.default booleanaccumulate(Streamer<? extends InvocableMap.Entry<? extends K, ? extends V>> streamer) Accumulate multiple entries into the result.default Raggregate(Set<? extends InvocableMap.Entry<? extends K, ? extends V>> setEntries) Process a set of InvocableMap.Entry objects in order to produce an aggregated result.default intA bit mask representing the set of characteristics of this aggregator.booleanMerge another partial result into the result.Return the final result of the aggregation.default RfinalizeResult(Converter<Binary, ?> convFromInternal) Return the final result of the aggregation.Return the partial result of the aggregation.default booleanA convenience accessor to check if this streamer isALLOW_INCONSISTENCIES.default booleanA convenience accessor to check if this streamer isBY_MEMBER.default booleanA convenience accessor to check if this streamer isBY_PARTITION.default booleanA convenience accessor to check if this streamer isPARALLEL.default booleanA convenience accessor to check if this streamer isPRESENT_ONLY.default booleanA convenience accessor to check if this streamer isRETAINS_ENTRIES.default booleanisSerial()A convenience accessor to check if this streamer isSERIAL.supply()Create a new instance of this aggregator.
-
Field Details
-
PARALLEL
static final int PARALLELA flag specifying that this aggregator should be executed in parallel.An additional hint can be provided by combining this flag with
BY_PARTITIONflag, which would suggest to further parallelize the server side aggregation by splitting it per-partitions. In the absence of this flag, Coherence is free to decide which strategy to use based on the internal metrics.- See Also:
-
SERIAL
static final int SERIALA flag specifying that this aggregator should be executed serially.An additional hint can be provided by combining this flag with either
BY_MEMBERorBY_PARTITIONflag, which are mutually exclusive. In the absence of either, Coherence is free to decide which strategy to use based on the internal metrics.- See Also:
-
BY_MEMBER
static final int BY_MEMBERA flag specifying that it might be beneficial to execute this aggregator member-by-member.This can be beneficial when there is a high chance for the aggregation to compute the result based solely on the one member worth set of entries.
Note: this flag is meaningful only for
serial execution.- See Also:
-
BY_PARTITION
static final int BY_PARTITIONA flag specifying that it might be beneficial to execute this aggregator partition-by-partition. This implies that the entries from each partition will be processed independently and a partial result will be created for each partition.This can be beneficial when accumulation of individual entries is computationally intensive and would benefit from additional parallelization within each storage-enabled member. In this case, the partial results for all the partitions on a given member will be combined into a single partial result, which will then be sent back to the client for further aggregation.
- See Also:
-
RETAINS_ENTRIES
static final int RETAINS_ENTRIESA flag specifying that this aggregator retainsInvocableMap.Entryinstances passed toaccumulate(Entry)method, which will force creation of a separateInvocableMap.Entryinstance for each cache entry.Please note that this flag is specified by default for backwards compatibility reasons, but if the aggregator does not retain entries it should be "unset" by overriding
characteristics()method in order to reduce the amount of garbage that is created during the aggregation.- See Also:
-
PRESENT_ONLY
static final int PRESENT_ONLYA flag specifying that this aggregator is only interested in entries that are present in the cache and that the entries which are not present should never be passed to theaccumulate(Entry)method.- See Also:
-
ALLOW_INCONSISTENCIES
static final int ALLOW_INCONSISTENCIESA flag specifying that this aggregator may provideentriesthat are not consistent with the providedFilter.Note: Coherence will ensure only entries that match the provided
Filterare passed to the aggregator, which can result in repeat query evaluations if targeted partitions are concurrently modified during query evaluation. This option allows Coherence to relax this contract.- See Also:
-
-
Method Details
-
supply
InvocableMap.StreamingAggregator<K,V, supply()P, R> Create a new instance of this aggregator.- Returns:
- a StreamAggregator
-
accumulate
default boolean accumulate(Streamer<? extends InvocableMap.Entry<? extends K, ? extends V>> streamer) Accumulate multiple entries into the result.Important note: The default implementation of this method provides necessary logic for aggregation short-circuiting and should rarely (if ever) be overridden by the custom aggregator implementation.
- Parameters:
streamer- aStreamerthat can be used to iterate over entries to add- Returns:
trueto continue the aggregation, andfalseto signal to the caller that the result is ready and the aggregation can be short-circuited
-
accumulate
Accumulate one entry into the result.- Parameters:
entry- the entry to accumulate into the aggregation result- Returns:
trueto continue the aggregation, andfalseto signal to the caller that the result is ready and the aggregation can be short-circuited
-
combine
Merge another partial result into the result.- Parameters:
partialResult- the partial result to merge- Returns:
trueto continue the aggregation, andfalseto signal to the caller that the result is ready and the aggregation can be short-circuited
-
getPartialResult
P getPartialResult()Return the partial result of the aggregation.- Returns:
- the partial result of the aggregation
-
finalizeResult
R finalizeResult()Return the final result of the aggregation.- Returns:
- the final result of the aggregation
-
finalizeResult
Return the final result of the aggregation. This method has a default implementation that simply callsfinalizeResult()in order to avoid compilation errors and preserve backwards compatibility of custom aggregator implementations, even though it would make more sense to do it the other way around if we were designing this API from scratch. The unfortunate consequence is that even if you override this method in order to use the provided converter, you still need to implementfinalizeResult()method, although you could simply implement it to throwjava.lang.UnsupportedOperationException.- Parameters:
convFromInternal- converter that can be used to convert result from internal format- Returns:
- the final result of the aggregation
- Since:
- 24.09
-
characteristics
default int characteristics()A bit mask representing the set of characteristics of this aggregator.By default, characteristics are a combination of
PARALLELandRETAINS_ENTRIES, which is sub-optimal and should be overridden by the aggregator implementation if the aggregator does not need to retain entries (which is often the case).- Returns:
- a bit mask representing the set of characteristics of this aggregator
- See Also:
-
isParallel
default boolean isParallel()A convenience accessor to check if this streamer isPARALLEL.- Returns:
trueif this streamer isPARALLEL, false otherwise
-
isSerial
default boolean isSerial()A convenience accessor to check if this streamer isSERIAL.- Returns:
trueif this streamer isSERIAL, false otherwise
-
isByMember
default boolean isByMember()A convenience accessor to check if this streamer isBY_MEMBER.- Returns:
trueif this streamer isBY_MEMBER, false otherwise
-
isByPartition
default boolean isByPartition()A convenience accessor to check if this streamer isBY_PARTITION.- Returns:
trueif this streamer isBY_PARTITION, false otherwise
-
isRetainsEntries
default boolean isRetainsEntries()A convenience accessor to check if this streamer isRETAINS_ENTRIES.- Returns:
trueif this streamer isRETAINS_ENTRIES, false otherwise
-
isPresentOnly
default boolean isPresentOnly()A convenience accessor to check if this streamer isPRESENT_ONLY.- Returns:
trueif this streamer isPRESENT_ONLY, false otherwise
-
isAllowInconsistencies
default boolean isAllowInconsistencies()A convenience accessor to check if this streamer isALLOW_INCONSISTENCIES.- Returns:
trueif this streamer isALLOW_INCONSISTENCIES, false otherwise
-
aggregate
Description copied from interface:InvocableMap.EntryAggregatorProcess a set of InvocableMap.Entry objects in order to produce an aggregated result.- Specified by:
aggregatein interfaceInvocableMap.EntryAggregator<K,V, P> - Parameters:
setEntries- a Set of read-only InvocableMap.Entry objects to aggregate- Returns:
- the aggregated result from processing the entries
-