Kinetica C# API
Version 6.2.0.1
|
A set of parameters for Kinetica.aggregateUnique(string,string,long,long,IDictionary<string, string>). More...
Classes | |
struct | Encoding |
Specifies the encoding for returned records. More... | |
struct | Options |
Optional parameters. More... | |
Public Member Functions | |
AggregateUniqueRequest () | |
Constructs an AggregateUniqueRequest object with default parameters. More... | |
AggregateUniqueRequest (string table_name, string column_name, long offset, long? limit=null, IDictionary< string, string > options=null) | |
Constructs an AggregateUniqueRequest object with the specified parameters. More... | |
AggregateUniqueRequest (string table_name, string column_name, long offset, long? limit=null, string encoding=null, IDictionary< string, string > options=null) | |
Constructs an AggregateUniqueRequest object with the specified parameters. More... | |
Public Member Functions inherited from kinetica.KineticaData | |
KineticaData (KineticaType type) | |
Constructor from Kinetica Type More... | |
KineticaData (System.Type type=null) | |
Default constructor, with optional System.Type More... | |
object | Get (int fieldPos) |
Retrieve a specific property from this object More... | |
void | Put (int fieldPos, object fieldValue) |
Write a specific property to this object More... | |
Properties | |
string | table_name [get, set] |
Name of an existing table/collection on which the operation will be performed. More... | |
string | column_name [get, set] |
Name of the column or an expression containing one or more column names on which the unique function would be applied. More... | |
long | offset [get, set] |
A positive integer indicating the number of initial results to skip (this can be useful for paging through the results). More... | |
long | limit [get, set] |
A positive integer indicating the maximum number of results to be returned. More... | |
string | encoding = 10000 [get, set] |
Specifies the encoding for returned records. More... | |
IDictionary< string, string > | options = Encoding.BINARY [get, set] |
Optional parameters. More... | |
Properties inherited from kinetica.KineticaData | |
Schema | Schema [get] |
Avro Schema for this class More... | |
Additional Inherited Members | |
Static Public Member Functions inherited from kinetica.KineticaData | |
static RecordSchema | SchemaFromType (System.Type t, KineticaType ktype=null) |
Create an Avro Schema from a System.Type and a KineticaType. More... | |
A set of parameters for Kinetica.aggregateUnique(string,string,long,long,IDictionary<string, string>).
Returns all the unique values from a particular column (specified by column_name) of a particular table or collection (specified by table_name). If column_name is a numeric column the values will be in <member name="binary_encoded_response">. Otherwise if column_name is a string column the values will be in <member name="json_encoded_response">. The results can be paged via the offset and limit parameters.
Columns marked as store-only are unable to be used with this function.
To get the first 10 unique values sorted in descending order options would be::
{"limit":"10","sort_order":"descending"}.
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 name must adhere to standard naming conventions; any column expression will need to be aliased. If the source table's shard key is used as the column_name, 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 if table_name is a collection or when the value of column_name is an unrestricted-length string.
Definition at line 53 of file AggregateUnique.cs.
|
inline |
Constructs an AggregateUniqueRequest object with default parameters.
Definition at line 523 of file AggregateUnique.cs.
|
inline |
Constructs an AggregateUniqueRequest object with the specified parameters.
table_name | Name of an existing table/collection on which the operation will be performed. |
column_name | Name of the column or an expression containing one or more column names on which the unique function would be applied. |
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. |
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. The default value is 10000. |
options | Optional parameters.
|
Definition at line 676 of file AggregateUnique.cs.
|
inline |
Constructs an AggregateUniqueRequest object with the specified parameters.
table_name | Name of an existing table/collection on which the operation will be performed. |
column_name | Name of the column or an expression containing one or more column names on which the unique function would be applied. |
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. |
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. The default value is 10000. |
encoding | Specifies the encoding for returned records. Supported values:
|
options | Optional parameters.
|
Definition at line 861 of file AggregateUnique.cs.
|
getset |
Name of the column or an expression containing one or more column names on which the unique function would be applied.
Definition at line 349 of file AggregateUnique.cs.
|
getset |
Specifies the encoding for returned records.
Supported values:
The default value is BINARY.
Definition at line 382 of file AggregateUnique.cs.
|
getset |
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. The default value is 10000.
Definition at line 361 of file AggregateUnique.cs.
|
getset |
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.
Definition at line 355 of file AggregateUnique.cs.
|
getset |
Optional parameters.
The default value is an empty Dictionary.
Definition at line 518 of file AggregateUnique.cs.
|
getset |
Name of an existing table/collection on which the operation will be performed.
Definition at line 344 of file AggregateUnique.cs.