min_n() functions

Introduction

Get the N smallest values from a column.

The min_n() functions give the same results as the regular SQL query SELECT ... ORDER BY ... LIMIT n. But unlike the SQL query, they can be composed and combined like other aggregate hyperfunctions.

To get the N largest values, use max_n(). To get the N smallest values with accompanying data, use min_n_by().

Two-step aggregation

Hide content

This group of functions uses the two-step aggregation pattern.

Rather than calculating the final result in one step, you first create an intermediate aggregate by using the aggregate function.

Then, use any of the accessors on the intermediate aggregate to calculate a final result. You can also roll up multiple intermediate aggregates with the rollup functions.

The two-step aggregation pattern has several advantages:

  1. More efficient because multiple accessors can reuse the same aggregate
  2. Easier to reason about performance, because aggregation is separate from final computation
  3. Easier to understand when calculations can be rolled up into larger intervals, especially in window functions and continuous aggregates
  4. Can perform retrospective analysis even when underlying data is dropped, because the intermediate aggregate stores extra information not available in the final result

To learn more, see the blog post on two-step aggregates.

Functions in this group

warning

This function group includes some experimental functions. Experimental functions might change or be removed in future releases. We do not recommend using them in production. Experimental functions are marked with an Experimental tag.

Aggregate

min_n

ExperimentalFind the smallest values in a set of data

Accessor

into_array

ExperimentalReturns an array of the lowest values from a MinN aggregate

into_values

ExperimentalReturns the lowest values from a MinN aggregate

Rollup

rollup

ExperimentalCombine multiple MinN aggregates

Function details

min_n()

ExperimentalExperimental TimescaleDB Toolkit functions are not suitable for production environments. They may have bugs and may cause data loss. Click to learn more.

Introduced in Toolkit v1.12.0

Hide content

`

  1. min_n(

`

  1. value BIGINT | DOUBLE PRECISION | TIMESTAMPTZ,
  2. capacity BIGINT

`

  1. ) MinN

`

Construct an aggregate that keeps track of the smallest values passed through it.

Required arguments

NameTypeDescription
valueBIGINT, DOUBLE PRECISION, TIMESTAMPTZThe values passed into the aggregate
capacityBIGINTThe number of values to retain.

Returns

ColumnTypeDescription
min_nMinNThe compiled aggregate. Note that the exact type is MinInts, MinFloats, or MinTimes depending on the input type

into_array()

ExperimentalExperimental TimescaleDB Toolkit functions are not suitable for production environments. They may have bugs and may cause data loss. Click to learn more.

Introduced in Toolkit v1.12.0

Hide content

`

  1. into_array (

`

  1. agg MinN

`

  1. ) BIGINT[] | DOUBLE PRECISION[] | TIMESTAMPTZ[]

`

Returns the N lowest values seen by the aggregate. The values are formatted as an array in increasing order.

Required arguments

NameTypeDescription
aggMinNThe aggregate to return the results from. Note that the exact type here varies based on the type of data stored.

Returns

ColumnTypeDescription
into_arrayBIGINT[], DOUBLE PRECISION[], TIMESTAMPTZ[]The lowest values seen while creating this aggregate.

Examples

Find the bottom 5 values from i * 13 % 10007 for i = 1 to 10000:

  1. SELECT toolkit_experimental.into_array(
  2. toolkit_experimental.min_n(sub.val, 5))
  3. FROM (
  4. SELECT (i * 13) % 10007 AS val
  5. FROM generate_series(1,10000) as i
  6. ) sub;
  7. into_array
  8. ---------------------------------
  9. {1,2,3,4,5}

into_values()

ExperimentalExperimental TimescaleDB Toolkit functions are not suitable for production environments. They may have bugs and may cause data loss. Click to learn more.

Introduced in Toolkit v1.12.0

Hide content

`

  1. into_values (

`

  1. agg MinN

`

  1. ) SETOF BIGINT | SETOF DOUBLE PRECISION | SETOF TIMESTAMPTZ

`

Return the N lowest values seen by the aggregate.

Required arguments

NameTypeDescription
aggMinNThe aggregate to return the results from. Note that the exact type here varies based on the type of data stored.

Returns

ColumnTypeDescription
into_valuesSETOF BIGINT, SETOF DOUBLE PRECISION, SETOF TIMESTAMPTZThe lowest values seen while creating this aggregate.

Examples

Find the bottom 5 values from i * 13 % 10007 for i = 1 to 10000:

  1. SELECT toolkit_experimental.into_array(
  2. toolkit_experimental.min_n(sub.val, 5))
  3. FROM (
  4. SELECT (i * 13) % 10007 AS val
  5. FROM generate_series(1,10000) as i
  6. ) sub;
  7. into_values
  8. ---------------------------------
  9. 1
  10. 2
  11. 3
  12. 4
  13. 5

rollup()

ExperimentalExperimental TimescaleDB Toolkit functions are not suitable for production environments. They may have bugs and may cause data loss. Click to learn more.

Introduced in Toolkit v1.12.0

Hide content

`

  1. rollup(

`

  1. agg MinN

`

  1. ) MinN

`

This aggregate combines the aggregates generated by other min_n aggregates and returns the minimum values found across all the aggregated data.

Required arguments

NameTypeDescription
aggMinNThe aggregates being combined

Returns

ColumnTypeDescription
rollupMinNAn aggregate over all of the contributing values.

Extended examples

This example assumes that you have a table of stock trades in this format:

  1. CREATE TABLE stock_sales(
  2. ts TIMESTAMPTZ,
  3. symbol TEXT,
  4. price FLOAT,
  5. volume INT
  6. );

You can query for the 10 smallest transactions each day:

  1. WITH t as (
  2. SELECT
  3. time_bucket('1 day'::interval, ts) as day,
  4. toolkit_experimental.min_n(price * volume, 10) AS daily_min
  5. FROM stock_sales
  6. GROUP BY time_bucket('1 day'::interval, ts)
  7. )
  8. SELECT
  9. day, toolkit_experimental.as_array(daily_max)
  10. FROM t;