Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions datafusion/core/tests/fuzz_cases/aggregate_fuzz.rs
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,12 @@ async fn run_aggregate_test(input1: Vec<RecordBatch>, group_by_columns: Vec<&str
schema.clone(),
)
.unwrap(),
) as Arc<dyn ExecutionPlan>;
);
assert_ne!(
aggregate_exec_running.input_order_mode(),
&InputOrderMode::Linear,
"running aggregate should observe ordered input for group_by: {group_by:?}"
);

let aggregate_exec_usual = Arc::new(
AggregateExec::try_new(
Expand All @@ -362,7 +367,7 @@ async fn run_aggregate_test(input1: Vec<RecordBatch>, group_by_columns: Vec<&str
schema.clone(),
)
.unwrap(),
) as Arc<dyn ExecutionPlan>;
);

let task_ctx = ctx.task_ctx();
let collected_usual = collect(aggregate_exec_usual.clone(), task_ctx.clone())
Expand All @@ -373,9 +378,6 @@ async fn run_aggregate_test(input1: Vec<RecordBatch>, group_by_columns: Vec<&str
.await
.unwrap();
assert!(collected_running.len() > 2);
// Running should produce more chunk than the usual AggregateExec.
// Otherwise it means that we cannot generate result in running mode.
assert!(collected_running.len() > collected_usual.len());

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is asserting: we run the same query on OrderedAggregateStream and AggregateStream, the first one should return more number of batches.

This is implementation dependent, and later it will compare the whole result row-by-row, so it's safe to delete

// compare
let usual_formatted = pretty_format_batches(&collected_usual).unwrap().to_string();
let running_formatted = pretty_format_batches(&collected_running)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,8 @@ pub(super) struct HashAggregateAccumulator {
accumulator: Box<dyn GroupsAccumulator>,
}

pub(super) type AggregateAccumulator = HashAggregateAccumulator;

/// Evaluated aggregate arguments and filter for one input batch.
///
/// For example, `AVG(x + 1) FILTER (WHERE x > 0)` evaluates both `x + 1`
Expand Down Expand Up @@ -303,7 +305,7 @@ pub(super) enum AggregateHashTableState {
}

impl HashAggregateAccumulator {
fn new(
pub(super) fn new(
aggregate_expr: Arc<AggregateFunctionExpr>,
arguments: Vec<Arc<dyn PhysicalExpr>>,
filter: Option<Arc<dyn PhysicalExpr>>,
Expand Down Expand Up @@ -335,7 +337,10 @@ impl HashAggregateAccumulator {
/// and `x > 0`.
///
/// These arrays can be passed directly to [`GroupsAccumulator`] next.
fn evaluate_acc_args(&self, batch: &RecordBatch) -> Result<EvaluatedAccumulatorArgs> {
pub(super) fn evaluate_acc_args(
&self,
batch: &RecordBatch,
) -> Result<EvaluatedAccumulatorArgs> {
let arguments = self
.arguments
.iter()
Expand All @@ -358,6 +363,10 @@ impl HashAggregateAccumulator {
Ok(EvaluatedAccumulatorArgs { arguments, filter })
}

pub(super) fn size(&self) -> usize {
self.accumulator.size()
}

pub(super) fn update_batch(
&mut self,
values: &EvaluatedAccumulatorArgs,
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,214 @@
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.

//! Common utilities for aggregate tables used in aggregations that inputs are ordered
//! by the groups.

use std::marker::PhantomData;
use std::sync::Arc;

use arrow::datatypes::SchemaRef;
use arrow::record_batch::RecordBatch;
use datafusion_common::Result;
use datafusion_execution::memory_pool::proxy::VecAllocExt;
use datafusion_expr::EmitTo;

use crate::InputOrderMode;
use crate::PhysicalExpr;
use crate::aggregates::group_values::{GroupByMetrics, GroupValues, new_group_values};
use crate::aggregates::order::GroupOrdering;
use crate::aggregates::row_hash::create_group_accumulator;
use crate::aggregates::{
AggregateExec, AggregateMode, PhysicalGroupBy, aggregate_expressions,
evaluate_group_by,
};

use super::common::{AggregateAccumulator, EvaluatedAggregateBatch};

/// Marker for raw rows -> partial state aggregation on ordered input.
pub(in crate::aggregates) struct OrderedPartialMarker;
/// Marker for partial state -> final value aggregation on ordered input.
pub(in crate::aggregates) struct OrderedFinalMarker;

/// Aggregate table shared by the ordered partial and final paths.
///
/// The table consumes input batches while `GroupOrdering` tracks which groups
/// are proven complete. Completed groups can be emitted before the input stream
/// ends, which keeps memory bounded by the active ordered key range.
///
/// # Marker Type
///
/// `OrderedAggrMode` selects the aggregate semantics. For example,
/// `OrderedAggregateTable::<OrderedPartialMarker>::new(...)` consumes raw rows
/// and emits partial states, while
/// `OrderedAggregateTable::<OrderedFinalMarker>::new_with_input_order(...)`
/// consumes partial states and emits final values.
///
/// Shared methods live on `impl<T>`; partial/final behavior lives on
/// marker-specific impls.
pub(in crate::aggregates) struct OrderedAggregateTable<OrderedAggrMode> {
/// Output schema: group columns followed by aggregate state or final values.
pub(super) output_schema: SchemaRef,

/// Grouping and accumulator-specific timing metrics.
pub(super) group_by_metrics: GroupByMetrics,

/// Group keys, ordering state, and accumulator states.
pub(super) buffer: OrderedAggregateTableBuffer,

_mode: PhantomData<OrderedAggrMode>,
}

/// Buffer for the ordered aggregate table's group keys and accumulator states.
///
/// It accumulates input during aggregation and emits output rows as soon as the
/// input ordering proves those groups are complete.
///
/// [`GroupOrdering`] tracks when and how to do early emit.
/// [`GroupValues`] stores the physical group-key layout, while
/// [`datafusion_expr::GroupsAccumulator`] stores per-group aggregate state.
pub(super) struct OrderedAggregateTableBuffer {
/// GROUP BY expressions evaluated against input batches.
pub(super) group_by: Arc<PhysicalGroupBy>,

/// Tracks how far ordered input allows this table to drain safely.
pub(super) group_ordering: GroupOrdering,

/// Interned group keys, in the same group-id order used by accumulators.
pub(super) group_values: Box<dyn GroupValues>,

/// Scratch group id vector for the current input batch.
pub(super) group_indices: Vec<usize>,

/// One item per aggregate expression.
///
/// Example: `COUNT(x), SUM(y)` creates two items. Each item owns the input
/// expressions, optional filter, and accumulator state for all groups.
pub(super) accumulators: Vec<AggregateAccumulator>,
}

/// Methods shared by all aggregate modes
impl<AggrMode> OrderedAggregateTable<AggrMode> {
pub(super) fn new_for_mode(
agg: &AggregateExec,
partition: usize,
input_schema: &SchemaRef,
output_schema: SchemaRef,
input_order_mode: &InputOrderMode,
aggregate_mode: &AggregateMode,
filters: Vec<Option<Arc<dyn PhysicalExpr>>>,
) -> Result<Self> {
let group_ordering = GroupOrdering::try_new(input_order_mode)?;
let group_schema = agg.group_by.group_schema(input_schema)?;
let group_values = new_group_values(group_schema, &group_ordering)?;
let aggregate_arguments = aggregate_expressions(
&agg.aggr_expr,
aggregate_mode,
agg.group_by.num_group_exprs(),
)?;
let accumulators = agg
.aggr_expr
.iter()
.zip(aggregate_arguments)
.zip(filters)
.map(|((agg_expr, arguments), filter)| {
let accumulator = create_group_accumulator(agg_expr)?;
Ok(AggregateAccumulator::new(
Arc::clone(agg_expr),
arguments,
filter,
accumulator,
))
})
.collect::<Result<_>>()?;

Ok(Self {
output_schema,
group_by_metrics: GroupByMetrics::new(&agg.metrics, partition),
buffer: OrderedAggregateTableBuffer {
group_by: Arc::clone(&agg.group_by),
group_ordering,
group_values,
group_indices: vec![],
accumulators,
},
_mode: PhantomData,
})
}

/// Evaluates all group by keys and accumulator args.
///
/// e.g., `select k+1, sum(v*v) from t group by (k+1)`, this function
/// evaluates `k+1`, `v*v`.
pub(super) fn evaluate_batch(
&self,
batch: &RecordBatch,
) -> Result<EvaluatedAggregateBatch> {
let timer = self.group_by_metrics.time_calculating_group_ids.timer();
let grouping_set_args = evaluate_group_by(&self.buffer.group_by, batch)?;
drop(timer);

let timer = self.group_by_metrics.aggregate_arguments_time.timer();
let accumulator_args = self
.buffer
.accumulators
.iter()
.map(|acc| acc.evaluate_acc_args(batch))
.collect::<Result<Vec<_>>>()?;
drop(timer);

Ok(EvaluatedAggregateBatch {
grouping_set_args,
accumulator_args,
})
}

/// Called after the input stream is exhausted and the last batch has been
/// aggregated.
///
/// Updates the internal `GroupOrdering` so it can continue emitting until
/// the buffer is empty.
pub(in crate::aggregates) fn input_done(&mut self) {
self.buffer.group_ordering.input_done();
}

/// Check if there is zero groups accumulated so far.
pub(in crate::aggregates) fn is_empty(&self) -> bool {
self.buffer.group_values.is_empty()
}

/// All internal buffer's memory size.
pub(in crate::aggregates) fn memory_size(&self) -> usize {
self.buffer
.accumulators
.iter()
.map(|acc| acc.size())
.sum::<usize>()
+ self.buffer.group_values.size()
+ self.buffer.group_ordering.size()
+ self.buffer.group_indices.allocated_size()
}
}

pub(super) fn remove_emitted_groups(group_ordering: &mut GroupOrdering, emit_to: EmitTo) {
match emit_to {
EmitTo::First(n) => group_ordering.remove_groups(n),
// `EmitTo::All` is only used after `input_done`, when all buffered groups
// are known complete and the ordering state is no longer needed.
EmitTo::All => {}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,13 @@ use super::common::{
AggregateHashTable, AggregateHashTableState, FinalMarker, emit_to_for_batch_size,
};

/// Methods specific to the aggregate hash table used in the final aggregation stage.
/// Implementation specific to final aggregation, where the table stores partial
/// aggregate states and the input rows are also partial states.
///
/// Example: `AVG(x) GROUP BY k`
///
/// - Aggregate table stores: `k, sum(x), count(x)`
/// - Input rows: `k, sum(x), count(x)`
impl AggregateHashTable<FinalMarker> {
pub(in crate::aggregates) fn new(
agg: &AggregateExec,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,15 @@
// under the License.

mod common;
mod common_ordered;
mod final_table;
mod ordered_final_table;
mod ordered_partial_table;
mod partial_table;

pub(super) use common::{
AggregateHashTable, FinalMarker, PartialMarker, PartialSkipMarker,
};
pub(super) use common_ordered::{
OrderedAggregateTable, OrderedFinalMarker, OrderedPartialMarker,
};
Loading
Loading