7 using System.Collections.Generic;
80 public const string BINARY =
"binary";
84 public const string JSON =
"json";
278 public const string TRUE =
"true";
279 public const string FALSE =
"false";
320 public const string TTL =
"ttl";
359 public long limit {
get; set; } = -9999;
511 public IDictionary<string, string>
options {
get; set; } =
new Dictionary<string, string>();
675 IDictionary<string, string>
options = null)
677 this.table_name = table_name ??
"";
678 this.column_name = column_name ??
"";
679 this.offset =
offset ?? 0;
680 this.limit =
limit ?? -9999;
682 this.options =
options ??
new Dictionary<string, string>();
863 IDictionary<string, string>
options = null)
865 this.table_name = table_name ??
"";
866 this.column_name = column_name ??
"";
867 this.offset =
offset ?? 0;
868 this.limit =
limit ?? -9999;
870 this.options =
options ??
new Dictionary<string, string>();
901 public IDictionary<string, string>
info {
get; set; } =
new Dictionary<string, string>();
918 public IList<KineticaRecord>
data {
get; set; } =
new List<KineticaRecord>();
924 public IDictionary<string, string>
info {
get; set; } =
new Dictionary<string, string>();
const string RESULT_TABLE_FORCE_REPLICATED
Force the result table to be replicated (ignores any sharding).
string encoding
Specifies the encoding for returned records.
const string TTL
Sets the TTL of the table specified in result_table.
const string COLLECTION_NAME
Name of a collection which is to contain the table specified in result_table.
AggregateUniqueRequest(string table_name, string column_name, long?offset=null, long?limit=null, string encoding=null, IDictionary< string, string > options=null)
Constructs an AggregateUniqueRequest object with the specified parameters.
string table_name
The same table name as was passed in the parameter list.
const string CHUNK_SIZE
Indicates the number of records per chunk to be used for the result table.
string response_schema_str
Avro schema of <member name="binary_encoded_response"> or <member name="json_encoded_response">.
long limit
A positive integer indicating the maximum number of results to be returned.
bool has_more_records
Too many records. Returned a partial set.
const string RESULT_TABLE
The name of the table used to store the results.
const string RESULT_TABLE_PERSIST
If true, then the result table specified in result_table will be persisted and will not expire unless...
IDictionary< string, string > options
Optional parameters.
IList< KineticaRecord > data
Avro binary encoded response.
Specifies the encoding for returned records.
string json_encoded_response
Avro JSON encoded response.
IDictionary< string, string > info
Additional information.
byte[] binary_encoded_response
Avro binary encoded response.
A set of results returned by Kinetica.aggregateUnique(string,string,long,long,IDictionary{string, string}).
AggregateUniqueRequest()
Constructs an AggregateUniqueRequest object with default parameters.
const string RESULT_TABLE_GENERATE_PK
If true then set a primary key for the result table.
long offset
A positive integer indicating the number of initial results to skip (this can be useful for paging th...
string table_name
Name of an existing table or view on which the operation will be performed.
const string BINARY
Indicates that the returned records should be binary encoded.
const string JSON
Indicates that the returned records should be json encoded.
A set of results returned by Kinetica.aggregateUnique(string,string,long,long,IDictionary{string, string}).
const string EXPRESSION
Optional filter expression to apply to the table.
const string VIEW_ID
ID of view of which the result table will be a member.
string table_name
The same table name as was passed in the parameter list.
IDictionary< string, string > info
Additional information.
const string SORT_ORDER
String indicating how the returned values should be sorted.
bool has_more_records
Too many records. Returned a partial set.
KineticaData - class to help with Avro Encoding for Kinetica
A set of parameters for Kinetica.aggregateUnique(string,string,long,long,IDictionary{string, string}).
string column_name
Name of the column or an expression containing one or more column names on which the unique function ...
AggregateUniqueRequest(string table_name, string column_name, long?offset=null, long?limit=null, IDictionary< string, string > options=null)
Constructs an AggregateUniqueRequest object with the specified parameters.