Documentation Index
Fetch the complete documentation index at: https://private-7c7dfe99-page-updates.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Description
All Aggregate functions in ClickHouse have an implementation-specific intermediate state that can be serialized to anAggregateFunction data type and stored in a table. This is usually done by
means of a materialized view.
There are two aggregate function combinators
commonly used with the AggregateFunction type:
- The
-Stateaggregate function combinator, which when appended to an aggregate function name, producesAggregateFunctionintermediate states. - The
-Mergeaggregate function combinator, which is used to get the final result of an aggregation from the intermediate states.
Syntax
aggregate_function_name- The name of an aggregate function. If the function is parametric, then its parameters should be specified too.types_of_arguments- The types of the aggregate function arguments.
Usage
Data Insertion
To insert data into a table with columns of typeAggregateFunction, you can
use INSERT SELECT with aggregate functions and the
-State aggregate
function combinator.
For example, to insert into columns of type AggregateFunction(uniq, UInt64) and
AggregateFunction(quantiles(0.5, 0.9), UInt64) you would use the following
aggregate functions with combinators.
uniq and quantiles, uniqState and quantilesState
(with -State combinator appended) return the state, rather than the final value.
In other words, they return a value of AggregateFunction type.
In the results of the SELECT query, values of type AggregateFunction have
implementation-specific binary representations for all of the ClickHouse output
formats.
There is a special Session level setting aggregate_function_input_format that allows to build state from the input values.
It supports the following formats:
state- binary string with the serialized state (the default). If you dump data into, for example, theTabSeparatedformat with aSELECTquery, then this dump can be loaded back using theINSERTquery.value- the format will expect a single value of the argument of the aggregate function, or in the case of multiple arguments, a tuple of them; that will be deserialized to form the relevant statearray- the format will expect an Array of values, as described in the values option above; all the elements of the array will be aggregated to form the state
Data Selection
When selecting data fromAggregatingMergeTree table, use the GROUP BY clause
and the same aggregate functions as for when you inserted the data, but use the
-Merge combinator.
An aggregate function with the -Merge combinator appended to it takes a set of
states, combines them, and returns the result of the complete data aggregation.
For example, the following two queries return the same result:
Usage Example
See AggregatingMergeTree engine description.Related Content
- Blog: Using Aggregate Combinators in ClickHouse
- MergeState combinator.
- State combinator.