mirror of
https://github.com/postgres/postgres.git
synced 2025-08-30 06:01:21 +03:00
Create infrastructure for moving-aggregate optimization.
Until now, when executing an aggregate function as a window function within a window with moving frame start (that is, any frame start mode except UNBOUNDED PRECEDING), we had to recalculate the aggregate from scratch each time the frame head moved. This patch allows an aggregate definition to include an alternate "moving aggregate" implementation that includes an inverse transition function for removing rows from the aggregate's running state. As long as this can be done successfully, runtime is proportional to the total number of input rows, rather than to the number of input rows times the average frame length. This commit includes the core infrastructure, documentation, and regression tests using user-defined aggregates. Follow-on commits will update some of the built-in aggregates to use this feature. David Rowley and Florian Pflug, reviewed by Dean Rasheed; additional hacking by me
This commit is contained in:
@@ -27,6 +27,12 @@ CREATE AGGREGATE <replaceable class="parameter">name</replaceable> ( [ <replacea
|
||||
[ , SSPACE = <replaceable class="PARAMETER">state_data_size</replaceable> ]
|
||||
[ , FINALFUNC = <replaceable class="PARAMETER">ffunc</replaceable> ]
|
||||
[ , INITCOND = <replaceable class="PARAMETER">initial_condition</replaceable> ]
|
||||
[ , MSFUNC = <replaceable class="PARAMETER">msfunc</replaceable> ]
|
||||
[ , MINVFUNC = <replaceable class="PARAMETER">minvfunc</replaceable> ]
|
||||
[ , MSTYPE = <replaceable class="PARAMETER">mstate_data_type</replaceable> ]
|
||||
[ , MSSPACE = <replaceable class="PARAMETER">mstate_data_size</replaceable> ]
|
||||
[ , MFINALFUNC = <replaceable class="PARAMETER">mffunc</replaceable> ]
|
||||
[ , MINITCOND = <replaceable class="PARAMETER">minitial_condition</replaceable> ]
|
||||
[ , SORTOP = <replaceable class="PARAMETER">sort_operator</replaceable> ]
|
||||
)
|
||||
|
||||
@@ -49,6 +55,12 @@ CREATE AGGREGATE <replaceable class="PARAMETER">name</replaceable> (
|
||||
[ , SSPACE = <replaceable class="PARAMETER">state_data_size</replaceable> ]
|
||||
[ , FINALFUNC = <replaceable class="PARAMETER">ffunc</replaceable> ]
|
||||
[ , INITCOND = <replaceable class="PARAMETER">initial_condition</replaceable> ]
|
||||
[ , MSFUNC = <replaceable class="PARAMETER">sfunc</replaceable> ]
|
||||
[ , MINVFUNC = <replaceable class="PARAMETER">invfunc</replaceable> ]
|
||||
[ , MSTYPE = <replaceable class="PARAMETER">state_data_type</replaceable> ]
|
||||
[ , MSSPACE = <replaceable class="PARAMETER">state_data_size</replaceable> ]
|
||||
[ , MFINALFUNC = <replaceable class="PARAMETER">ffunc</replaceable> ]
|
||||
[ , MINITCOND = <replaceable class="PARAMETER">initial_condition</replaceable> ]
|
||||
[ , SORTOP = <replaceable class="PARAMETER">sort_operator</replaceable> ]
|
||||
)
|
||||
</synopsis>
|
||||
@@ -84,7 +96,7 @@ CREATE AGGREGATE <replaceable class="PARAMETER">name</replaceable> (
|
||||
</para>
|
||||
|
||||
<para>
|
||||
An aggregate function is made from one or two ordinary
|
||||
A simple aggregate function is made from one or two ordinary
|
||||
functions:
|
||||
a state transition function
|
||||
<replaceable class="PARAMETER">sfunc</replaceable>,
|
||||
@@ -126,7 +138,7 @@ CREATE AGGREGATE <replaceable class="PARAMETER">name</replaceable> (
|
||||
values are ignored (the function is not called and the previous state value
|
||||
is retained). If the initial state value is null, then at the first row
|
||||
with all-nonnull input values, the first argument value replaces the state
|
||||
value, and the transition function is invoked at subsequent rows with
|
||||
value, and the transition function is invoked at each subsequent row with
|
||||
all-nonnull input values.
|
||||
This is handy for implementing aggregates like <function>max</function>.
|
||||
Note that this behavior is only available when
|
||||
@@ -154,6 +166,18 @@ CREATE AGGREGATE <replaceable class="PARAMETER">name</replaceable> (
|
||||
input rows.
|
||||
</para>
|
||||
|
||||
<para>
|
||||
An aggregate can optionally support <firstterm>moving-aggregate mode</>,
|
||||
as described in <xref linkend="xaggr-moving-aggregates">. This requires
|
||||
specifying the <literal>MSFUNC</>, <literal>MINVFUNC</>,
|
||||
and <literal>MSTYPE</> parameters, and optionally
|
||||
the <literal>MSPACE</>, <literal>MFINALFUNC</>,
|
||||
and <literal>MINITCOND</> parameters. Except for <literal>MINVFUNC</>,
|
||||
these parameters work like the corresponding simple-aggregate parameters
|
||||
without <literal>M</>; they define a separate implementation of the
|
||||
aggregate that includes an inverse transition function.
|
||||
</para>
|
||||
|
||||
<para>
|
||||
The syntax with <literal>ORDER BY</literal> in the parameter list creates
|
||||
a special type of aggregate called an <firstterm>ordered-set
|
||||
@@ -197,8 +221,8 @@ SELECT col FROM tab ORDER BY col USING sortop LIMIT 1;
|
||||
<para>
|
||||
To be able to create an aggregate function, you must
|
||||
have <literal>USAGE</literal> privilege on the argument types, the state
|
||||
type, and the return type, as well as <literal>EXECUTE</literal> privilege
|
||||
on the transition and final functions.
|
||||
type(s), and the return type, as well as <literal>EXECUTE</literal>
|
||||
privilege on the transition and final functions.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
@@ -359,6 +383,79 @@ SELECT col FROM tab ORDER BY col USING sortop LIMIT 1;
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry>
|
||||
<term><replaceable class="PARAMETER">msfunc</replaceable></term>
|
||||
<listitem>
|
||||
<para>
|
||||
The name of the forward state transition function to be called for each
|
||||
input row in moving-aggregate mode. This is exactly like the regular
|
||||
transition function, except that its first argument and result are of
|
||||
type <replaceable>mstate_data_type</>, which might be different
|
||||
from <replaceable>state_data_type</>.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry>
|
||||
<term><replaceable class="PARAMETER">minvfunc</replaceable></term>
|
||||
<listitem>
|
||||
<para>
|
||||
The name of the inverse state transition function to be used in
|
||||
moving-aggregate mode. This function has the same argument and
|
||||
result types as <replaceable>msfunc</>, but it is used to remove
|
||||
a value from the current aggregate state, rather than add a value to
|
||||
it. The inverse transition function must have the same strictness
|
||||
attribute as the forward state transition function.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry>
|
||||
<term><replaceable class="PARAMETER">mstate_data_type</replaceable></term>
|
||||
<listitem>
|
||||
<para>
|
||||
The data type for the aggregate's state value, when using
|
||||
moving-aggregate mode.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry>
|
||||
<term><replaceable class="PARAMETER">mstate_data_size</replaceable></term>
|
||||
<listitem>
|
||||
<para>
|
||||
The approximate average size (in bytes) of the aggregate's state
|
||||
value, when using moving-aggregate mode. This works the same as
|
||||
<replaceable>state_data_size</>.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry>
|
||||
<term><replaceable class="PARAMETER">mffunc</replaceable></term>
|
||||
<listitem>
|
||||
<para>
|
||||
The name of the final function called to compute the aggregate's
|
||||
result after all input rows have been traversed, when using
|
||||
moving-aggregate mode. This works the same as <replaceable>ffunc</>,
|
||||
except that its input type is <replaceable>mstate_data_type</>.
|
||||
The aggregate result type determined by <replaceable>mffunc</>
|
||||
and <replaceable>mstate_data_type</> must match that determined by the
|
||||
aggregate's regular implementation.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry>
|
||||
<term><replaceable class="PARAMETER">minitial_condition</replaceable></term>
|
||||
<listitem>
|
||||
<para>
|
||||
The initial setting for the state value, when using moving-aggregate
|
||||
mode. This works the same as <replaceable>initial_condition</>.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry>
|
||||
<term><replaceable class="PARAMETER">sort_operator</replaceable></term>
|
||||
<listitem>
|
||||
@@ -397,6 +494,49 @@ SELECT col FROM tab ORDER BY col USING sortop LIMIT 1;
|
||||
<refsect1>
|
||||
<title>Notes</title>
|
||||
|
||||
<para>
|
||||
If an aggregate supports moving-aggregate mode, it will improve
|
||||
calculation efficiency when the aggregate is used as a window function
|
||||
for a window with moving frame start (that is, a frame start mode other
|
||||
than <literal>UNBOUNDED PRECEDING</>). Conceptually, the forward
|
||||
transition function adds input values to the aggregate's state when
|
||||
they enter the window frame from the bottom, and the inverse transition
|
||||
function removes them again when they leave the frame at the top. So,
|
||||
when values are removed, they are always removed in the same order they
|
||||
were added. Whenever the inverse transition function is invoked, it will
|
||||
thus receive the earliest added but not yet removed argument value(s).
|
||||
The inverse transition function can assume that at least one row will
|
||||
remain in the current state after it removes the oldest row. (When this
|
||||
would not be the case, the window function mechanism simply starts a
|
||||
fresh aggregation, rather than using the inverse transition function.)
|
||||
</para>
|
||||
|
||||
<para>
|
||||
The forward transition function for moving-aggregate mode is not
|
||||
allowed to return NULL as the new state value. If the inverse
|
||||
transition function returns NULL, this is taken as an indication that
|
||||
the inverse function cannot reverse the state calculation for this
|
||||
particular input, and so the aggregate calculation will be redone from
|
||||
scratch for the current frame starting position. This convention
|
||||
allows moving-aggregate mode to be used in situations where there are
|
||||
some infrequent cases that are impractical to reverse out of the
|
||||
running state value.
|
||||
</para>
|
||||
|
||||
<para>
|
||||
If no moving-aggregate implementation is supplied,
|
||||
the aggregate can still be used with moving frames,
|
||||
but <productname>PostgreSQL</productname> will recompute the whole
|
||||
aggregation whenever the start of the frame moves.
|
||||
Note that whether or not the aggregate supports moving-aggregate
|
||||
mode, <productname>PostgreSQL</productname> can handle a moving frame
|
||||
end without recalculation; this is done by continuing to add new values
|
||||
to the aggregate's state. It is assumed that the final function does
|
||||
not damage the aggregate's state value, so that the aggregation can be
|
||||
continued even after an aggregate result value has been obtained for
|
||||
one set of frame boundaries.
|
||||
</para>
|
||||
|
||||
<para>
|
||||
The syntax for ordered-set aggregates allows <literal>VARIADIC</>
|
||||
to be specified for both the last direct parameter and the last
|
||||
@@ -415,6 +555,11 @@ SELECT col FROM tab ORDER BY col USING sortop LIMIT 1;
|
||||
ones; any preceding parameters represent additional direct arguments
|
||||
that are not constrained to match the aggregated arguments.
|
||||
</para>
|
||||
|
||||
<para>
|
||||
Currently, ordered-set aggregates do not need to support
|
||||
moving-aggregate mode, since they cannot be used as window functions.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1>
|
||||
|
Reference in New Issue
Block a user