Kinetica C# API
Version 6.1.0.0
|
A set of parameters for Kinetica.getRecordsByColumn(string,IList<string>,long,long,IDictionary<string, string>). More...
Classes | |
struct | Encoding |
Specifies the encoding for returned records; either 'binary' or 'json'. More... | |
struct | Options |
| |
Public Member Functions | |
GetRecordsByColumnRequest () | |
Constructs a GetRecordsByColumnRequest object with default parameters. More... | |
GetRecordsByColumnRequest (string table_name, IList< string > column_names, long offset, long limit, IDictionary< string, string > options=null) | |
Constructs a GetRecordsByColumnRequest object with the specified parameters. More... | |
GetRecordsByColumnRequest (string table_name, IList< string > column_names, long offset, long limit, string encoding=null, IDictionary< string, string > options=null) | |
Constructs a GetRecordsByColumnRequest object with the specified parameters. More... | |
![]() | |
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 the table on which this operation will be performed. More... | |
IList< string > | column_names [get, set] |
The list of column values to retrieve. More... | |
long | offset = new List<string>() [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 (if not provided the default is 10000), or END_OF_SET (-9999) to indicate that the maximum number of results allowed by the server should be returned. More... | |
string | encoding [get, set] |
Specifies the encoding for returned records; either 'binary' or 'json'. More... | |
IDictionary< string, string > | options = Encoding.BINARY [get, set] |
| |
![]() | |
Schema | Schema [get] |
Avro Schema for this class More... | |
Additional Inherited Members | |
![]() | |
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.getRecordsByColumn(string,IList<string>,long,long,IDictionary<string, string>).
For a given table, retrieves the values from the requested column(s). Maps of column name to the array of values as well as the column data type are returned. This endpoint supports pagination with the offset and limit parameters.
When using pagination, if the table (or the underlying table in the case of a view) is modified (records are inserted, updated, or deleted) during a call to the endpoint, the records or values retrieved may differ between calls based on the type of the update, e.g., the contiguity across pages cannot be relied upon.
The response is returned as a dynamic schema. For details see: dynamic schemas documentation.
Definition at line 32 of file GetRecordsByColumn.cs.
|
inline |
Constructs a GetRecordsByColumnRequest object with default parameters.
Definition at line 235 of file GetRecordsByColumn.cs.
|
inline |
Constructs a GetRecordsByColumnRequest object with the specified parameters.
table_name | Name of the table on which this operation will be performed. The table cannot be a parent set. |
column_names | The list of column values to retrieve. |
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 (if not provided the default is 10000), or END_OF_SET (-9999) to indicate that the maximum number of results allowed by the server should be returned. |
options |
|
Definition at line 299 of file GetRecordsByColumn.cs.
|
inline |
Constructs a GetRecordsByColumnRequest object with the specified parameters.
table_name | Name of the table on which this operation will be performed. The table cannot be a parent set. |
column_names | The list of column values to retrieve. |
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 (if not provided the default is 10000), or END_OF_SET (-9999) to indicate that the maximum number of results allowed by the server should be returned. |
encoding | Specifies the encoding for returned records; either 'binary' or 'json'. Supported values: The default value is BINARY. |
options |
|
Definition at line 392 of file GetRecordsByColumn.cs.
|
getset |
The list of column values to retrieve.
Definition at line 152 of file GetRecordsByColumn.cs.
|
getset |
Specifies the encoding for returned records; either 'binary' or 'json'.
Supported values:
The default value is BINARY.
Definition at line 182 of file GetRecordsByColumn.cs.
|
getset |
A positive integer indicating the maximum number of results to be returned (if not provided the default is 10000), or END_OF_SET (-9999) to indicate that the maximum number of results allowed by the server should be returned.
Definition at line 164 of file GetRecordsByColumn.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 158 of file GetRecordsByColumn.cs.
|
getset |
SORT_BY: Optional column that the data should be sorted by. Empty by default (i.e. no sorting is applied). SORT_ORDER: String indicating how the returned values should be sorted - ascending or descending. If sort_order is provided, sort_by has to be provided. Supported values:
The default value is ASCENDING. ORDER_BY: Comma-separated list of the columns to be sorted by; e.g. 'timestamp asc, x desc'. The columns specified must be present in . If any alias is given for any column name, the alias must be used, rather than the original column name.
Definition at line 230 of file GetRecordsByColumn.cs.
|
getset |
Name of the table on which this operation will be performed.
The table cannot be a parent set.
Definition at line 149 of file GetRecordsByColumn.cs.