topK

Returns an array of the approximately most frequent values in the specified column. The resulting array is sorted in descending order of approximate frequency of values (not by the values themselves).

Implements the Filtered Space-Saving algorithm for analyzing TopK, based on the reduce-and-combine algorithm from Parallel Space Saving.

  1. topK(N)(column)

This function doesn’t provide a guaranteed result. In certain situations, errors might occur and it might return frequent values that aren’t the most frequent values.

We recommend using the N < 10 value; performance is reduced with large N values. Maximum value of N = 65536.

Parameters

  • ‘N’ is the number of elements to return.

If the parameter is omitted, default value 10 is used.

Arguments

  • ’ x ’ – The value to calculate frequency.

Example

Take the OnTime data set and select the three most frequently occurring values in the AirlineID column.

  1. SELECT topK(3)(AirlineID) AS res
  2. FROM ontime
  1. ┌─res─────────────────┐
  2. [19393,19790,19805]
  3. └─────────────────────┘