aggregateGroupByRaw
public RawAggregateGroupByResponse aggregateGroupByRaw(AggregateGroupByRequest request) throws GPUdbException Calculates unique combinations (groups) of values for the given columns in a given table or view and computes aggregates on each unique combination. This is somewhat analogous to an SQL-style SELECT…GROUP BY.For aggregation details and examples, see Aggregation. For limitations, see Aggregation Limitations.
Any column(s) can be grouped on, and all column types except unrestricted-length strings may be used for computing applicable aggregates.
The results can be paged via the
offsetandlimitparameters. For example, to get 10 groups with the largest counts the inputs would be: limit=10, options=“sort_order”:“descending”, “sort_by”:“value”.optionscan be used to customize behavior of this call e.g. filtering or sorting the results.To group by columns ‘x’ and ‘y’ and compute the number of objects within each group, use: column_names=[‘x’,‘y’,‘count(*)’].
To also compute the sum of ‘z’ over each group, use: column_names=[‘x’,‘y’,‘count(*)’,‘sum(z)’].
Available aggregation functions are: count(*), sum, min, max, avg, mean, stddev, stddev_pop, stddev_samp, var, var_pop, var_samp, arg_min, arg_max and count_distinct.
Available grouping functions are Rollup, Cube, and Grouping Sets
This service also provides support for Pivot operations.
Filtering on aggregates is supported via expressions using aggregation functions supplied to
HAVING.The response is returned as a dynamic schema. For details see: dynamic schemas documentation.
If a
RESULT_TABLEname is specified in theoptions, the results are stored in a new table with that name—no results are returned in the response. Both the table name and resulting column names must adhere to standard naming conventions; column/aggregation expressions will need to be aliased. If the source table’s shard key is used as the grouping column(s) and all result records are selected (offsetis 0 andlimitis -9999), the result table will be sharded, in all other cases it will be replicated. Sorting will properly function only if the result table is replicated or if there is only one processing node and should not be relied upon in other cases. Not available when any of the values ofcolumnNamesis an unrestricted-length string.Parameters:request-Requestobject containing the parameters for the operation.Returns:Responseobject containing the results of the operation.Throws:GPUdbException- if an error occurs during the operation.