Creating User-Defined Aggregate Functions (UDAFs) for DataFrames in Python

You can use Snowpark Python APIs to create and call user-defined aggregate functions (UDAFs). A UDAF takes one or more rows as input and produces a single row of output. It operates on values across multiple rows to perform mathematical calculations such as sum, average, counting, finding minimum or maximum values, standard deviation, and estimation, as well as some non-mathematical operations.

To create and register a UDAF with Snowpark, you need to:

  • Implement a UDAF handler.

    The handler contains the UDAF’s logic. A UDAF handler must implement functions that Snowflake will invoke at runtime when the UDAF is called. For more information, see Implementing a handler.

  • Register the UDAF and its handler in the Snowflake database.

    Once you’ve registered the UDAF, you can call it from SQL or by using the Snowpark API. You can use the Snowpark API to register the UDAF and its handler. For more information about registering, see Registering a UDAF.

Implementing a handler

As described in Interface for aggregate function handler, a UDAF handler class must implement methods that Snowflake invokes when the UDAF is called. You can use the class you write as a handler whether you’re registering the UDAF with the Snowpark API or creating it with SQL using the CREATE FUNCTION statement.

Your UDAF handler class implements methods listed in the following table, which Snowflake invokes at run time. See examples in this topic.

Method

Requirement

Description

__init__

Required

Initializes the internal state of an aggregate.

aggregate_state

Required

Returns the internal state of an aggregate.

accumulate

Required

Accumulates the state of the aggregate based on the new input row.

merge

Required

Combines two intermediate aggregated states.

finish

Required

Produces the final result based on the aggregated state.

Registering a UDAF

Once you’ve implemented a UDAF handler, you can use the Snowpark API to register the UDAF on the Snowflake database. Registering the UDAF creates the UDAF so that it can be called.

You can register the UDAF as a named or anonymous function, as you can for a scalar UDF. For related information about registering a scalar UDF, see Creating an Anonymous UDF and Creating and Registering a Named UDF. When you register a UDAF, you specify parameter values that Snowflake needs to create the UDAF.

You can register the function using the following functions and methods:

Examples

Create a UDAF with a return value and a single parameter

Python code in the following handler example supports a sum_int UDAF that receives a single integer argument, adds the value across rows and returns the result.

Register the function

>>> import snowflake.snowpark as snowpark
>>> from snowflake.snowpark.types import IntegerType
>>> from snowflake.snowpark.functions import udaf
>>> def main(session: snowpark.Session):
>>> class PythonSumUDAF:
...   def __init__(self):
...     # This aggregate state is a primitive Python data type.
...     self._partial_sum = 0
...
...   @property
...   def aggregate_state(self):
...     return self._partial_sum
...
...   def accumulate(self, input_value):
...     self._partial_sum += input_value
...
...   def merge(self, other_partial_sum):
...     self._partial_sum += other_partial_sum
...
...   def finish(self):
...     return self._partial_sum
>>> sum_udaf = udaf(PythonSumUDAF, name="sum_int", replace=True, return_type=IntegerType(), input_types=[IntegerType()])
Copy

Call the function

Python code in the following example invokes the sum_int UDAF with a DataFrame.

>>> df = session.create_dataframe([[1, 3], [1, 4], [2, 5], [2, 6]]).to_df("a", "b")
>>> result = df.agg(sum_udaf("a")).collect()
>>> print(result.collect())
Copy

Create a UDAF with a return value and two parameters

Register the function

Python code in the following handler example supports a sum_int UDAF that receives two integer arguments, adds the argument values together across rows and returns the result.

>>> import snowflake.snowpark as snowpark
>>> from snowflake.snowpark.types import IntegerType
>>> from snowflake.snowpark.functions import udaf
>>> def main(session: snowpark.Session):
>>>   class PythonSumUDAF:
...     def __init__(self):
...       self._partial_sum = 0
...
...     @property
...    def aggregate_state(self):
...      return self._partial_sum
...
...    def accumulate(self, input_value, input_value2):
...      self._partial_sum += input_value + input_value2
...
...    def merge(self, other_partial_sum):
...      self._partial_sum += other_partial_sum
...
...    def finish(self):
...      return self._partial_sum
>>> sum_udaf = udaf(PythonSumUDAF, name="sum_int", replace=True, return_type=IntegerType(), input_types=[IntegerType(), IntegerType()])
Copy

Call the function

Python code in the following example invokes the sum_int UDAF with a DataFrame.

>>> df = session.create_dataframe([[1, 3], [1, 4], [2, 5], [2, 6]]).to_df("a", "b")
>>> result = df.agg(sum_udaf("a", "b"))
>>> print(result.collect())
Copy