Kinetica C# API  Version 6.2.0.1
kinetica.AggregateUnpivotRequest.Options Struct Reference

Optional parameters. More...

Public Attributes

const string COLLECTION_NAME = "collection_name"
 Name of a collection which is to contain the table specified in result_table. More...
 
const string RESULT_TABLE = "result_table"
 The name of the table used to store the results. More...
 
const string RESULT_TABLE_PERSIST = "result_table_persist"
 If true, then the result table specified in result_table will be persisted and will not expire unless a ttl is specified. More...
 
const string TRUE = "true"
 
const string FALSE = "false"
 
const string EXPRESSION = "expression"
 Filter expression to apply to the table prior to unpivot processing. More...
 
const string ORDER_BY = "order_by"
 Comma-separated list of the columns to be sorted by; e.g. More...
 
const string CHUNK_SIZE = "chunk_size"
 Indicates the chunk size to be used for the result table. More...
 
const string LIMIT = "limit"
 The number of records to keep. More...
 
const string TTL = "ttl"
 Sets the TTL of the table specified in result_table. More...
 
const string VIEW_ID = "view_id"
 view this result table is part of. More...
 
const string MATERIALIZE_ON_GPU = "materialize_on_gpu"
 If true then the output columns will be cached on the GPU. More...
 
const string CREATE_INDEXES = "create_indexes"
 Comma-separated list of columns on which to create indexes on the table specified in result_table. More...
 
const string RESULT_TABLE_FORCE_REPLICATED = "result_table_force_replicated"
 Force the result table to be replicated (ignores any sharding). More...
 

Detailed Description

Optional parameters.

  • COLLECTION_NAME: Name of a collection which is to contain the table specified in result_table. If the collection provided is non-existent, the collection will be automatically created. If empty, then the table will be a top-level table.
  • RESULT_TABLE: The name of the table used to store the results. Has the same naming restrictions as tables. If present, no results are returned in the response.
  • RESULT_TABLE_PERSIST: If true, then the result table specified in result_table will be persisted and will not expire unless a ttl is specified. If false, then the result table will be an in-memory table and will expire unless a ttl is specified otherwise. Supported values: The default value is FALSE.
  • EXPRESSION: Filter expression to apply to the table prior to unpivot processing.
  • 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 input table. If any alias is given for any column name, the alias must be used, rather than the original column name. The default value is ''.
  • CHUNK_SIZE: Indicates the chunk size to be used for the result table. Must be used in combination with the result_table option.
  • LIMIT: The number of records to keep. The default value is ''.
  • TTL: Sets the TTL of the table specified in result_table.
  • VIEW_ID: view this result table is part of. The default value is ''.
  • MATERIALIZE_ON_GPU: If true then the output columns will be cached on the GPU. Supported values: The default value is FALSE.
  • CREATE_INDEXES: Comma-separated list of columns on which to create indexes on the table specified in result_table. The columns specified must be present in output column names. If any alias is given for any column name, the alias must be used, rather than the original column name.
  • RESULT_TABLE_FORCE_REPLICATED: Force the result table to be replicated (ignores any sharding). Must be used in combination with the result_table option. Supported values: The default value is FALSE.

The default value is an empty Dictionary. A set of string constants for the parameter options.

Definition at line 204 of file AggregateUnpivot.cs.

Member Data Documentation

◆ CHUNK_SIZE

const string kinetica.AggregateUnpivotRequest.Options.CHUNK_SIZE = "chunk_size"

Indicates the chunk size to be used for the result table.

Must be used in combination with the result_table option.

Definition at line 255 of file AggregateUnpivot.cs.

◆ COLLECTION_NAME

const string kinetica.AggregateUnpivotRequest.Options.COLLECTION_NAME = "collection_name"

Name of a collection which is to contain the table specified in result_table.

If the collection provided is non-existent, the collection will be automatically created. If empty, then the table will be a top-level table.

Definition at line 211 of file AggregateUnpivot.cs.

◆ CREATE_INDEXES

const string kinetica.AggregateUnpivotRequest.Options.CREATE_INDEXES = "create_indexes"

Comma-separated list of columns on which to create indexes on the table specified in result_table.

The columns specified must be present in output column names. If any alias is given for any column name, the alias must be used, rather than the original column name.

Definition at line 292 of file AggregateUnpivot.cs.

◆ EXPRESSION

const string kinetica.AggregateUnpivotRequest.Options.EXPRESSION = "expression"

Filter expression to apply to the table prior to unpivot processing.

Definition at line 243 of file AggregateUnpivot.cs.

◆ FALSE

const string kinetica.AggregateUnpivotRequest.Options.FALSE = "false"

Definition at line 239 of file AggregateUnpivot.cs.

◆ LIMIT

const string kinetica.AggregateUnpivotRequest.Options.LIMIT = "limit"

The number of records to keep.

The default value is ''.

Definition at line 259 of file AggregateUnpivot.cs.

◆ MATERIALIZE_ON_GPU

const string kinetica.AggregateUnpivotRequest.Options.MATERIALIZE_ON_GPU = "materialize_on_gpu"

If true then the output columns will be cached on the GPU.

Supported values:

The default value is FALSE.

Definition at line 285 of file AggregateUnpivot.cs.

◆ ORDER_BY

const string kinetica.AggregateUnpivotRequest.Options.ORDER_BY = "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 input table. If any alias is given for any column name, the alias must be used, rather than the original column name. The default value is ''.

Definition at line 250 of file AggregateUnpivot.cs.

◆ RESULT_TABLE

const string kinetica.AggregateUnpivotRequest.Options.RESULT_TABLE = "result_table"

The name of the table used to store the results.

Has the same naming restrictions as tables. If present, no results are returned in the response.

Definition at line 217 of file AggregateUnpivot.cs.

◆ RESULT_TABLE_FORCE_REPLICATED

const string kinetica.AggregateUnpivotRequest.Options.RESULT_TABLE_FORCE_REPLICATED = "result_table_force_replicated"

Force the result table to be replicated (ignores any sharding).

Must be used in combination with the result_table option. Supported values:

The default value is FALSE.

Definition at line 310 of file AggregateUnpivot.cs.

◆ RESULT_TABLE_PERSIST

const string kinetica.AggregateUnpivotRequest.Options.RESULT_TABLE_PERSIST = "result_table_persist"

If true, then the result table specified in result_table will be persisted and will not expire unless a ttl is specified.

If false, then the result table will be an in-memory table and will expire unless a ttl is specified otherwise. Supported values:

The default value is FALSE.

Definition at line 237 of file AggregateUnpivot.cs.

◆ TRUE

const string kinetica.AggregateUnpivotRequest.Options.TRUE = "true"

Definition at line 238 of file AggregateUnpivot.cs.

◆ TTL

const string kinetica.AggregateUnpivotRequest.Options.TTL = "ttl"

Sets the TTL of the table specified in result_table.

Definition at line 264 of file AggregateUnpivot.cs.

◆ VIEW_ID

const string kinetica.AggregateUnpivotRequest.Options.VIEW_ID = "view_id"

view this result table is part of.

The default value is ''.

Definition at line 268 of file AggregateUnpivot.cs.


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