7 using System.Collections.Generic;
316 public const string TRUE =
"true";
317 public const string FALSE =
"false";
439 public const string RANGE =
"RANGE";
449 public const string LIST =
"LIST";
454 public const string HASH =
"HASH";
498 public const string TTL =
"ttl";
792 public IDictionary<string, string>
options {
get; set; } =
new Dictionary<string, string>();
1060 IDictionary<string, string>
options = null)
1062 this.table_name = table_name ??
"";
1063 this.type_id = type_id ??
"";
1064 this.options =
options ??
new Dictionary<string, string>();
1090 public IDictionary<string, string>
info {
get; set; } =
new Dictionary<string, string>();
const string TTL
For a table, sets the TTL of the table specified in table_name.
const string NO_ERROR_IF_EXISTS
If true, prevents an error from occurring if the table already exists and is of the given type...
string type_id
ID of a currently registered type.
const string PARTITION_KEYS
Comma-separated list of partition keys, which are the columns or column expressions by which records ...
const string FOREIGN_KEYS
Semicolon-separated list of foreign keys, of the format '(source_column_name [, ...]) references target_table_name(primary_key_column_name [, ...]) [as foreign_key_name]'.
const string PARTITION_TYPE
Partitioning scheme to use.
const string IS_RESULT_TABLE
For a table, indicates whether the table is an in-memory table.
IDictionary< string, string > options
Optional parameters.
const string LIST
Use list partitioning.
const string IS_REPLICATED
For a table, affects the distribution scheme for the table's data.
const string INTERVAL
Use interval partitioning.
const string FOREIGN_SHARD_KEY
Foreign shard key of the format 'source_column references shard_by_column from target_table(primary_k...
const string PARTITION_DEFINITIONS
Comma-separated list of partition definitions, whose format depends on the choice of partition_type...
const string DISALLOW_HOMOGENEOUS_TABLES
No longer supported; value will be ignored.
const string RANGE
Use range partitioning.
IDictionary< string, string > info
Additional information.
const string CHUNK_SIZE
Indicates the number of records per chunk to be used for this table.
string table_name
Value of .
const string COLLECTION_NAME
Name of a collection which is to contain the newly created table.
A set of parameters for Kinetica.createTable(string,string,IDictionary{string, string}).
string table_name
Name of the table to be created.
const string IS_AUTOMATIC_PARTITION
If true, a new partition will be created for values which don't fall into an existing partition...
CreateTableRequest()
Constructs a CreateTableRequest object with default parameters.
const string HASH
Use hash partitioning.
bool is_collection
Indicates if the created entity is a collection.
const string IS_COLLECTION
Indicates whether the new table to be created will be a collection.
A set of results returned by Kinetica.createTable(string,string,IDictionary{string, string}).
KineticaData - class to help with Avro Encoding for Kinetica
CreateTableRequest(string table_name, string type_id, IDictionary< string, string > options=null)
Constructs a CreateTableRequest object with the specified parameters.
const string STRATEGY_DEFINITION
The tier strategy for the table and its columns.