Package org.apache.iotdb.db.mpp.aggregation.slidingwindow
-
Class Summary Class Description EmptyQueueSlidingWindowAggregator When calculating MAX_TIME and LAST_VALUE (the MIN_TIME and FIRST_VALUE in descending order), the aggregation result always appears in the most recent pre-aggregation result.MonotonicQueueSlidingWindowAggregator When computing MAX_VALUE, MIN_VALUE, EXTREME, we only add partial aggregation results that maintain monotonicity to queue.NormalQueueSlidingWindowAggregator When calculating MIN_TIME and FIRST_VALUE (MAX_TIME and LAST_VALUE in descending order), the aggregated result always appears at the head of the queue.SlidingWindowAggregator SlidingWindowAggregator.PartialAggregationResult SlidingWindowAggregatorFactory SmoothQueueSlidingWindowAggregator The aggregation result is calculated from all pre-aggregation results in the currently maintained queue when calculating the COUNT, SUM, and AVG.