GPUdb C++ API  Version 6.1.0.0
gpudb::AggregateGroupByRequest Struct Reference

A set of input parameters for aggregateGroupByRaw(const AggregateGroupByRequest&) const. More...

#include <gpudb/protocol/aggregate_group_by.h>

Public Member Functions

 AggregateGroupByRequest ()
 Constructs an AggregateGroupByRequest object with default parameter values. More...
 
 AggregateGroupByRequest (const std::string &tableName_, const std::vector< std::string > &columnNames_, const int64_t offset_, const int64_t limit_, const std::map< std::string, std::string > &options_)
 Constructs an AggregateGroupByRequest object with the specified parameters. More...
 
 AggregateGroupByRequest (const std::string &tableName_, const std::vector< std::string > &columnNames_, const int64_t offset_, const int64_t limit_, const std::string &encoding_, const std::map< std::string, std::string > &options_)
 Constructs an AggregateGroupByRequest object with the specified parameters. More...
 

Public Attributes

std::string tableName
 
std::vector< std::string > columnNames
 
int64_t offset
 
int64_t limit
 
std::string encoding
 
std::map< std::string, std::string > options
 

Detailed Description

A set of input parameters for aggregateGroupByRaw(const AggregateGroupByRequest&) const.

Calculates unique combinations (groups) of values for the given columns in a given table/view/collection and computes aggregates on each unique combination. This is somewhat analogous to an SQL-style SELECT...GROUP BY.

Any column(s) can be grouped on, and all column types except unrestricted-length strings may be used for computing applicable aggregates; columns marked as store-only are unable to be used in grouping or aggregation.

The results can be paged via the offset and limit parameters. For example, to get 10 groups with the largest counts the inputs would be: limit=10, options={"sort_order":"descending", "sort_by":"value"}.

options can 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.

The response is returned as a dynamic schema. For details see: dynamic schemas documentation.

If a result_table name is specified in the options, 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), 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 of columnNames is an unrestricted-length string.

Definition at line 66 of file aggregate_group_by.h.

Constructor & Destructor Documentation

◆ AggregateGroupByRequest() [1/3]

gpudb::AggregateGroupByRequest::AggregateGroupByRequest ( )
inline

Constructs an AggregateGroupByRequest object with default parameter values.

Definition at line 73 of file aggregate_group_by.h.

◆ AggregateGroupByRequest() [2/3]

gpudb::AggregateGroupByRequest::AggregateGroupByRequest ( const std::string &  tableName_,
const std::vector< std::string > &  columnNames_,
const int64_t  offset_,
const int64_t  limit_,
const std::map< std::string, std::string > &  options_ 
)
inline

Constructs an AggregateGroupByRequest object with the specified parameters.

Parameters
[in]tableName_Name of the table on which the operation will be performed. Must be an existing table/view/collection.
[in]columnNames_List of one or more column names, expressions, and aggregate expressions.
[in]offset_A positive integer indicating the number of initial results to skip (this can be useful for paging through the results). The minimum allowed value is 0. The maximum allowed value is MAX_INT.
[in]limit_A positive integer indicating the maximum number of results to be returned Or END_OF_SET (-9999) to indicate that the max number of results should be returned.
[in]options_Optional parameters.

Definition at line 216 of file aggregate_group_by.h.

◆ AggregateGroupByRequest() [3/3]

gpudb::AggregateGroupByRequest::AggregateGroupByRequest ( const std::string &  tableName_,
const std::vector< std::string > &  columnNames_,
const int64_t  offset_,
const int64_t  limit_,
const std::string &  encoding_,
const std::map< std::string, std::string > &  options_ 
)
inline

Constructs an AggregateGroupByRequest object with the specified parameters.

Parameters
[in]tableName_Name of the table on which the operation will be performed. Must be an existing table/view/collection.
[in]columnNames_List of one or more column names, expressions, and aggregate expressions.
[in]offset_A positive integer indicating the number of initial results to skip (this can be useful for paging through the results). The minimum allowed value is 0. The maximum allowed value is MAX_INT.
[in]limit_A positive integer indicating the maximum number of results to be returned Or END_OF_SET (-9999) to indicate that the max number of results should be returned.
[in]encoding_Specifies the encoding for returned records. The default value is gpudb::aggregate_group_by_binary.
[in]options_Optional parameters.

Definition at line 370 of file aggregate_group_by.h.

Member Data Documentation

◆ columnNames

std::vector<std::string> gpudb::AggregateGroupByRequest::columnNames

Definition at line 381 of file aggregate_group_by.h.

◆ encoding

std::string gpudb::AggregateGroupByRequest::encoding

Definition at line 384 of file aggregate_group_by.h.

◆ limit

int64_t gpudb::AggregateGroupByRequest::limit

Definition at line 383 of file aggregate_group_by.h.

◆ offset

int64_t gpudb::AggregateGroupByRequest::offset

Definition at line 382 of file aggregate_group_by.h.

◆ options

std::map<std::string, std::string> gpudb::AggregateGroupByRequest::options

Definition at line 385 of file aggregate_group_by.h.

◆ tableName

std::string gpudb::AggregateGroupByRequest::tableName

Definition at line 380 of file aggregate_group_by.h.


The documentation for this struct was generated from the following file: