Kinetica C# API
Version 7.1.10.0
|
Optional parameters. More...
Public Attributes | |
const string | BAD_RECORD_TABLE_NAME = "bad_record_table_name" |
Name of a table to which records that were rejected are written. More... | |
const string | BAD_RECORD_TABLE_LIMIT = "bad_record_table_limit" |
A positive integer indicating the maximum number of records that can be written to the bad-record-table. More... | |
const string | BAD_RECORD_TABLE_LIMIT_PER_INPUT = "bad_record_table_limit_per_input" |
For subscriptions, a positive integer indicating the maximum number of records that can be written to the bad-record-table per file/payload. More... | |
const string | BATCH_SIZE = "batch_size" |
Number of records to insert per batch when inserting data. More... | |
const string | COLUMN_FORMATS = "column_formats" |
For each target column specified, applies the column-property-bound format to the source data loaded into that column. More... | |
const string | COLUMNS_TO_LOAD = "columns_to_load" |
Specifies a comma-delimited list of columns from the source data to load. More... | |
const string | COLUMNS_TO_SKIP = "columns_to_skip" |
Specifies a comma-delimited list of columns from the source data to skip. More... | |
const string | COMPRESSION_TYPE = "compression_type" |
Source data compression type Supported values:
| |
const string | NONE = "none" |
No compression. More... | |
const string | AUTO = "auto" |
Auto detect compression type More... | |
const string | GZIP = "gzip" |
gzip file compression. More... | |
const string | BZIP2 = "bzip2" |
bzip2 file compression. More... | |
const string | DATASOURCE_NAME = "datasource_name" |
Name of an existing external data source from which data file(s) specified in filepaths will be loaded More... | |
const string | DEFAULT_COLUMN_FORMATS = "default_column_formats" |
Specifies the default format to be applied to source data loaded into columns with the corresponding column property. More... | |
const string | ERROR_HANDLING = "error_handling" |
Specifies how errors should be handled upon insertion. More... | |
const string | PERMISSIVE = "permissive" |
Records with missing columns are populated with nulls if possible; otherwise, the malformed records are skipped. More... | |
const string | IGNORE_BAD_RECORDS = "ignore_bad_records" |
Malformed records are skipped. More... | |
const string | ABORT = "abort" |
Stops current insertion and aborts entire operation when an error is encountered. More... | |
const string | EXTERNAL_TABLE_TYPE = "external_table_type" |
Specifies whether the external table holds a local copy of the external data. More... | |
const string | MATERIALIZED = "materialized" |
Loads a copy of the external data into the database, refreshed on demand More... | |
const string | LOGICAL = "logical" |
External data will not be loaded into the database; the data will be retrieved from the source upon servicing each query against the external table More... | |
const string | FILE_TYPE = "file_type" |
Specifies the type of the file(s) whose records will be inserted. More... | |
const string | AVRO = "avro" |
Avro file format More... | |
const string | DELIMITED_TEXT = "delimited_text" |
Delimited text file format; e.g., CSV, TSV, PSV, etc. More... | |
const string | GDB = "gdb" |
Esri/GDB file format More... | |
const string | JSON = "json" |
Json file format More... | |
const string | PARQUET = "parquet" |
Apache Parquet file format More... | |
const string | SHAPEFILE = "shapefile" |
ShapeFile file format More... | |
const string | GDAL_CONFIGURATION_OPTIONS = "gdal_configuration_options" |
Comma separated list of gdal conf options, for the specific requets: key=value More... | |
const string | IGNORE_EXISTING_PK = "ignore_existing_pk" |
Specifies the record collision error-suppression policy for inserting into a table with a primary key, only used when not in upsert mode (upsert mode is disabled when update_on_existing_pk is false). More... | |
const string | TRUE = "true" |
Upsert new records when primary keys match existing records More... | |
const string | FALSE = "false" |
Reject new records when primary keys match existing records More... | |
const string | INGESTION_MODE = "ingestion_mode" |
Whether to do a full load, dry run, or perform a type inference on the source data. More... | |
const string | FULL = "full" |
Run a type inference on the source data (if needed) and ingest More... | |
const string | DRY_RUN = "dry_run" |
Does not load data, but walks through the source data and determines the number of valid records, taking into account the current mode of error_handling. More... | |
const string | TYPE_INFERENCE_ONLY = "type_inference_only" |
Infer the type of the source data and return, without ingesting any data. More... | |
const string | JDBC_FETCH_SIZE = "jdbc_fetch_size" |
The JDBC fetch size, which determines how many rows to fetch per round trip. More... | |
const string | KAFKA_CONSUMERS_PER_RANK = "kafka_consumers_per_rank" |
Number of Kafka consumer threads per rank (valid range 1-6). More... | |
const string | KAFKA_GROUP_ID = "kafka_group_id" |
The group id to be used when consuming data from a Kafka topic (valid only for Kafka datasource subscriptions). More... | |
const string | KAFKA_OFFSET_RESET_POLICY = "kafka_offset_reset_policy" |
Policy to determine whether the Kafka data consumption starts either at earliest offset or latest offset. More... | |
const string | EARLIEST = "earliest" |
const string | LATEST = "latest" |
const string | KAFKA_OPTIMISTIC_INGEST = "kafka_optimistic_ingest" |
Enable optimistic ingestion where Kafka topic offsets and table data are committed independently to achieve parallelism. More... | |
const string | KAFKA_SUBSCRIPTION_CANCEL_AFTER = "kafka_subscription_cancel_after" |
Sets the Kafka subscription lifespan (in minutes). More... | |
const string | KAFKA_TYPE_INFERENCE_FETCH_TIMEOUT = "kafka_type_inference_fetch_timeout" |
Maximum time to collect Kafka messages before type inferencing on the set of them. More... | |
const string | LAYER = "layer" |
Geo files layer(s) name(s): comma separated. More... | |
const string | LOADING_MODE = "loading_mode" |
Scheme for distributing the extraction and loading of data from the source data file(s). More... | |
const string | HEAD = "head" |
The head node loads all data. More... | |
const string | DISTRIBUTED_SHARED = "distributed_shared" |
The head node coordinates loading data by worker processes across all nodes from shared files available to all workers. More... | |
const string | DISTRIBUTED_LOCAL = "distributed_local" |
A single worker process on each node loads all files that are available to it. More... | |
const string | LOCAL_TIME_OFFSET = "local_time_offset" |
Apply an offset to Avro local timestamp columns. More... | |
const string | MAX_RECORDS_TO_LOAD = "max_records_to_load" |
Limit the number of records to load in this request: if this number is larger than batch_size, then the number of records loaded will be limited to the next whole number of batch_size (per working thread). More... | |
const string | NUM_TASKS_PER_RANK = "num_tasks_per_rank" |
Number of tasks for reading file per rank. More... | |
const string | POLL_INTERVAL = "poll_interval" |
If true, the number of seconds between attempts to load external files into the table. More... | |
const string | PRIMARY_KEYS = "primary_keys" |
Comma separated list of column names to set as primary keys, when not specified in the type. More... | |
const string | REFRESH_METHOD = "refresh_method" |
Method by which the table can be refreshed from its source data. More... | |
const string | MANUAL = "manual" |
Refresh only occurs when manually requested by invoking the refresh action of Kinetica.alterTable(string,string,string,IDictionary{string, string}) on this table. More... | |
const string | ON_START = "on_start" |
Refresh table on database startup and when manually requested by invoking the refresh action of Kinetica.alterTable(string,string,string,IDictionary{string, string}) on this table. More... | |
const string | SCHEMA_REGISTRY_SCHEMA_NAME = "schema_registry_schema_name" |
Name of the Avro schema in the schema registry to use when reading Avro records. More... | |
const string | SHARD_KEYS = "shard_keys" |
Comma separated list of column names to set as shard keys, when not specified in the type. More... | |
const string | SKIP_LINES = "skip_lines" |
Skip number of lines from begining of file. More... | |
const string | SUBSCRIBE = "subscribe" |
Continuously poll the data source to check for new data and load it into the table. More... | |
const string | TABLE_INSERT_MODE = "table_insert_mode" |
Insertion scheme to use when inserting records from multiple shapefiles. More... | |
const string | SINGLE = "single" |
Insert all records into a single table. More... | |
const string | TABLE_PER_FILE = "table_per_file" |
Insert records from each file into a new table corresponding to that file. More... | |
const string | TEXT_COMMENT_STRING = "text_comment_string" |
Specifies the character string that should be interpreted as a comment line prefix in the source data. More... | |
const string | TEXT_DELIMITER = "text_delimiter" |
Specifies the character delimiting field values in the source data and field names in the header (if present). More... | |
const string | TEXT_ESCAPE_CHARACTER = "text_escape_character" |
Specifies the character that is used to escape other characters in the source data. More... | |
const string | TEXT_HAS_HEADER = "text_has_header" |
Indicates whether the source data contains a header row. More... | |
const string | TEXT_HEADER_PROPERTY_DELIMITER = "text_header_property_delimiter" |
Specifies the delimiter for column properties in the header row (if present). More... | |
const string | TEXT_NULL_STRING = "text_null_string" |
Specifies the character string that should be interpreted as a null value in the source data. More... | |
const string | TEXT_QUOTE_CHARACTER = "text_quote_character" |
Specifies the character that should be interpreted as a field value quoting character in the source data. More... | |
const string | TEXT_SEARCH_COLUMNS = "text_search_columns" |
Add 'text_search' property to internally inferenced string columns. More... | |
const string | TEXT_SEARCH_MIN_COLUMN_LENGTH = "text_search_min_column_length" |
Set the minimum column size for strings to apply the 'text_search' property to. More... | |
const string | TRUNCATE_STRINGS = "truncate_strings" |
If set to true, truncate string values that are longer than the column's type size. More... | |
const string | TRUNCATE_TABLE = "truncate_table" |
If set to true, truncates the table specified by table_name prior to loading the file(s). More... | |
const string | TYPE_INFERENCE_MODE = "type_inference_mode" |
Optimize type inferencing for either speed or accuracy. More... | |
const string | ACCURACY = "accuracy" |
Scans data to get exactly-typed & sized columns for all data scanned. More... | |
const string | SPEED = "speed" |
Scans data and picks the widest possible column types so that 'all' values will fit with minimum data scanned More... | |
const string | REMOTE_QUERY = "remote_query" |
Remote SQL query from which data will be sourced More... | |
const string | REMOTE_QUERY_FILTER_COLUMN = "remote_query_filter_column" |
Name of column to be used for splitting remote_query into multiple sub-queries using the data distribution of given column More... | |
const string | REMOTE_QUERY_INCREASING_COLUMN = "remote_query_increasing_column" |
Column on subscribed remote query result that will increase for new records (e.g., TIMESTAMP). More... | |
const string | REMOTE_QUERY_PARTITION_COLUMN = "remote_query_partition_column" |
Alias name for remote_query_filter_column. More... | |
const string | UPDATE_ON_EXISTING_PK = "update_on_existing_pk" |
Specifies the record collision policy for inserting into a table with a primary key. More... | |
Optional parameters.
The default value is an empty Dictionary. A set of string constants for the parameter options.
Definition at line 1355 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.ABORT = "abort" |
Stops current insertion and aborts entire operation when an error is encountered.
Primary key collisions are considered abortable errors in this mode.
Definition at line 1562 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.ACCURACY = "accuracy" |
Scans data to get exactly-typed & sized columns for all data scanned.
Definition at line 2193 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.AUTO = "auto" |
Auto detect compression type
Definition at line 1475 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.AVRO = "avro" |
Avro file format
Definition at line 1636 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.BAD_RECORD_TABLE_LIMIT = "bad_record_table_limit" |
A positive integer indicating the maximum number of records that can be written to the bad-record-table.
The default value is '10000'.
Definition at line 1370 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.BAD_RECORD_TABLE_LIMIT_PER_INPUT = "bad_record_table_limit_per_input" |
For subscriptions, a positive integer indicating the maximum number of records that can be written to the bad-record-table per file/payload.
Default value will be bad_record_table_limit and total size of the table per rank is limited to bad_record_table_limit.
Definition at line 1379 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.BAD_RECORD_TABLE_NAME = "bad_record_table_name" |
Name of a table to which records that were rejected are written.
The bad-record-table has the following columns: line_number (long), line_rejected (string), error_message (string). When error_handling is abort, bad records table is not populated.
Definition at line 1364 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.BATCH_SIZE = "batch_size" |
Number of records to insert per batch when inserting data.
The default value is '50000'.
Definition at line 1383 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.BZIP2 = "bzip2" |
bzip2 file compression.
Definition at line 1481 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.COLUMN_FORMATS = "column_formats" |
For each target column specified, applies the column-property-bound format to the source data loaded into that column.
Each column format will contain a mapping of one or more of its column properties to an appropriate format for each property. Currently supported column properties include date, time, & datetime. The parameter value must be formatted as a JSON string of maps of column names to maps of column properties to their corresponding column formats, e.g., '{ "order_date" : { "date" : "%Y.%m.%d" }, "order_time" : { "time" : "%H:%M:%S" } }'.
See default_column_formats for valid format syntax.
Definition at line 1401 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.COLUMNS_TO_LOAD = "columns_to_load" |
Specifies a comma-delimited list of columns from the source data to load.
If more than one file is being loaded, this list applies to all files.
Column numbers can be specified discretely or as a range. For example, a value of '5,7,1..3' will insert values from the fifth column in the source data into the first column in the target table, from the seventh column in the source data into the second column in the target table, and from the first through third columns in the source data into the third through fifth columns in the target table.
If the source data contains a header, column names matching the file header names may be provided instead of column numbers. If the target table doesn't exist, the table will be created with the columns in this order. If the target table does exist with columns in a different order than the source data, this list can be used to match the order of the target table. For example, a value of 'C, B, A' will create a three column table with column C, followed by column B, followed by column A; or will insert those fields in that order into a table created with columns in that order. If the target table exists, the column names must match the source data field names for a name-mapping to be successful.
Mutually exclusive with columns_to_skip.
Definition at line 1435 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.COLUMNS_TO_SKIP = "columns_to_skip" |
Specifies a comma-delimited list of columns from the source data to skip.
Mutually exclusive with columns_to_load.
Definition at line 1441 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.COMPRESSION_TYPE = "compression_type" |
const string kinetica.CreateTableExternalRequest.Options.DATASOURCE_NAME = "datasource_name" |
Name of an existing external data source from which data file(s) specified in filepaths will be loaded
Definition at line 1486 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.DEFAULT_COLUMN_FORMATS = "default_column_formats" |
Specifies the default format to be applied to source data loaded into columns with the corresponding column property.
Currently supported column properties include date, time, & datetime. This default column-property-bound format can be overridden by specifying a column property & format for a given target column in column_formats. For each specified annotation, the format will apply to all columns with that annotation unless a custom column_formats for that annotation is specified.
The parameter value must be formatted as a JSON string that is a map of column properties to their respective column formats, e.g., '{ "date" : "%Y.%m.%d", "time" : "%H:%M:%S" }'. Column formats are specified as a string of control characters and plain text. The supported control characters are 'Y', 'm', 'd', 'H', 'M', 'S', and 's', which follow the Linux 'strptime()' specification, as well as 's', which specifies seconds and fractional seconds (though the fractional component will be truncated past milliseconds).
Formats for the 'date' annotation must include the 'Y', 'm', and 'd' control characters. Formats for the 'time' annotation must include the 'H', 'M', and either 'S' or 's' (but not both) control characters. Formats for the 'datetime' annotation meet both the 'date' and 'time' control character requirements. For example, '{"datetime" : "%m/%d/%Y %H:%M:%S" }' would be used to interpret text as "05/04/2000 12:12:11"
Definition at line 1521 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.DELIMITED_TEXT = "delimited_text" |
Delimited text file format; e.g., CSV, TSV, PSV, etc.
Definition at line 1640 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.DISTRIBUTED_LOCAL = "distributed_local" |
A single worker process on each node loads all files that are available to it.
This option works best when each worker loads files from its own file system, to maximize performance. In order to avoid data duplication, either each worker performing the load needs to have visibility to a set of files unique to it (no file is visible to more than one node) or the target table needs to have a primary key (which will allow the worker to automatically deduplicate data).
NOTE:
If the target table doesn't exist, the table structure will be determined by the head node. If the head node has no files local to it, it will be unable to determine the structure and the request will fail.
If the head node is configured to have no worker processes, no data strictly accessible to the head node will be loaded.
Definition at line 1908 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.DISTRIBUTED_SHARED = "distributed_shared" |
The head node coordinates loading data by worker processes across all nodes from shared files available to all workers.
NOTE:
Instead of existing on a shared source, the files can be duplicated on a source local to each host to improve performance, though the files must appear as the same data set from the perspective of all hosts performing the load.
Definition at line 1884 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.DRY_RUN = "dry_run" |
Does not load data, but walks through the source data and determines the number of valid records, taking into account the current mode of error_handling.
Definition at line 1742 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.EARLIEST = "earliest" |
Definition at line 1778 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.ERROR_HANDLING = "error_handling" |
Specifies how errors should be handled upon insertion.
Supported values:
The default value is ABORT.
Definition at line 1549 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.EXTERNAL_TABLE_TYPE = "external_table_type" |
Specifies whether the external table holds a local copy of the external data.
Supported values:
The default value is MATERIALIZED.
Definition at line 1584 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.FALSE = "false" |
Reject new records when primary keys match existing records
Definition at line 1703 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.FILE_TYPE = "file_type" |
Specifies the type of the file(s) whose records will be inserted.
Supported values:
The default value is DELIMITED_TEXT.
Definition at line 1633 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.FULL = "full" |
Run a type inference on the source data (if needed) and ingest
Definition at line 1737 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.GDAL_CONFIGURATION_OPTIONS = "gdal_configuration_options" |
Comma separated list of gdal conf options, for the specific requets: key=value
Definition at line 1656 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.GDB = "gdb" |
Esri/GDB file format
Definition at line 1643 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.GZIP = "gzip" |
gzip file compression.
Definition at line 1478 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.HEAD = "head" |
The head node loads all data.
All files must be available to the head node.
Definition at line 1871 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.IGNORE_BAD_RECORDS = "ignore_bad_records" |
Malformed records are skipped.
Definition at line 1557 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.IGNORE_EXISTING_PK = "ignore_existing_pk" |
Specifies the record collision error-suppression policy for inserting into a table with a primary key, only used when not in upsert mode (upsert mode is disabled when update_on_existing_pk is false).
If set to true, any record being inserted that is rejected for having primary key values that match those of an existing table record will be ignored with no error generated. If false, the rejection of any record for having primary key values matching an existing record will result in an error being reported, as determined by error_handling. If the specified table does not have a primary key or if upsert mode is in effect (update_on_existing_pk is true), then this option has no effect. Supported values:
The default value is FALSE.
Definition at line 1695 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.INGESTION_MODE = "ingestion_mode" |
Whether to do a full load, dry run, or perform a type inference on the source data.
Supported values:
The default value is FULL.
Definition at line 1733 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.JDBC_FETCH_SIZE = "jdbc_fetch_size" |
The JDBC fetch size, which determines how many rows to fetch per round trip.
The default value is '50000'.
Definition at line 1751 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.JSON = "json" |
Json file format
Definition at line 1646 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.KAFKA_CONSUMERS_PER_RANK = "kafka_consumers_per_rank" |
Number of Kafka consumer threads per rank (valid range 1-6).
The default value is '1'.
Definition at line 1755 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.KAFKA_GROUP_ID = "kafka_group_id" |
The group id to be used when consuming data from a Kafka topic (valid only for Kafka datasource subscriptions).
Definition at line 1760 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.KAFKA_OFFSET_RESET_POLICY = "kafka_offset_reset_policy" |
Policy to determine whether the Kafka data consumption starts either at earliest offset or latest offset.
Supported values:
The default value is EARLIEST.
Definition at line 1777 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.KAFKA_OPTIMISTIC_INGEST = "kafka_optimistic_ingest" |
Enable optimistic ingestion where Kafka topic offsets and table data are committed independently to achieve parallelism.
Supported values:
The default value is FALSE.
Definition at line 1797 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.KAFKA_SUBSCRIPTION_CANCEL_AFTER = "kafka_subscription_cancel_after" |
Sets the Kafka subscription lifespan (in minutes).
Expired subscription will be cancelled automatically.
Definition at line 1801 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.KAFKA_TYPE_INFERENCE_FETCH_TIMEOUT = "kafka_type_inference_fetch_timeout" |
Maximum time to collect Kafka messages before type inferencing on the set of them.
Definition at line 1805 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.LATEST = "latest" |
Definition at line 1779 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.LAYER = "layer" |
Geo files layer(s) name(s): comma separated.
Definition at line 1808 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.LOADING_MODE = "loading_mode" |
Scheme for distributing the extraction and loading of data from the source data file(s).
This option applies only when loading files that are local to the database Supported values:
The default value is HEAD.
Definition at line 1867 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.LOCAL_TIME_OFFSET = "local_time_offset" |
Apply an offset to Avro local timestamp columns.
Definition at line 1912 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.LOGICAL = "logical" |
External data will not be loaded into the database; the data will be retrieved from the source upon servicing each query against the external table
Definition at line 1593 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.MANUAL = "manual" |
Refresh only occurs when manually requested by invoking the refresh action of Kinetica.alterTable(string,string,string,IDictionary{string, string}) on this table.
Definition at line 1968 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.MATERIALIZED = "materialized" |
Loads a copy of the external data into the database, refreshed on demand
Definition at line 1588 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.MAX_RECORDS_TO_LOAD = "max_records_to_load" |
Limit the number of records to load in this request: if this number is larger than batch_size, then the number of records loaded will be limited to the next whole number of batch_size (per working thread).
Definition at line 1920 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.NONE = "none" |
No compression.
Definition at line 1472 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.NUM_TASKS_PER_RANK = "num_tasks_per_rank" |
Number of tasks for reading file per rank.
Default will be system configuration parameter, external_file_reader_num_tasks.
Definition at line 1925 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.ON_START = "on_start" |
Refresh table on database startup and when manually requested by invoking the refresh action of Kinetica.alterTable(string,string,string,IDictionary{string, string}) on this table.
Definition at line 1974 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.PARQUET = "parquet" |
Apache Parquet file format
Definition at line 1649 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.PERMISSIVE = "permissive" |
Records with missing columns are populated with nulls if possible; otherwise, the malformed records are skipped.
Definition at line 1554 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.POLL_INTERVAL = "poll_interval" |
If true, the number of seconds between attempts to load external files into the table.
If zero, polling will be continuous as long as data is found. If no data is found, the interval will steadily increase to a maximum of 60 seconds. The default value is '0'.
Definition at line 1933 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.PRIMARY_KEYS = "primary_keys" |
Comma separated list of column names to set as primary keys, when not specified in the type.
Definition at line 1937 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.REFRESH_METHOD = "refresh_method" |
Method by which the table can be refreshed from its source data.
Supported values:
The default value is MANUAL.
Definition at line 1962 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.REMOTE_QUERY = "remote_query" |
Remote SQL query from which data will be sourced
Definition at line 2202 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.REMOTE_QUERY_FILTER_COLUMN = "remote_query_filter_column" |
Name of column to be used for splitting remote_query into multiple sub-queries using the data distribution of given column
Definition at line 2207 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.REMOTE_QUERY_INCREASING_COLUMN = "remote_query_increasing_column" |
Column on subscribed remote query result that will increase for new records (e.g., TIMESTAMP).
Definition at line 2211 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.REMOTE_QUERY_PARTITION_COLUMN = "remote_query_partition_column" |
Alias name for remote_query_filter_column.
Definition at line 2215 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.SCHEMA_REGISTRY_SCHEMA_NAME = "schema_registry_schema_name" |
Name of the Avro schema in the schema registry to use when reading Avro records.
Definition at line 1978 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.SHAPEFILE = "shapefile" |
ShapeFile file format
Definition at line 1652 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.SHARD_KEYS = "shard_keys" |
Comma separated list of column names to set as shard keys, when not specified in the type.
Definition at line 1982 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.SINGLE = "single" |
Insert all records into a single table.
Definition at line 2026 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.SKIP_LINES = "skip_lines" |
Skip number of lines from begining of file.
Definition at line 1985 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.SPEED = "speed" |
Scans data and picks the widest possible column types so that 'all' values will fit with minimum data scanned
Definition at line 2198 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.SUBSCRIBE = "subscribe" |
Continuously poll the data source to check for new data and load it into the table.
Supported values:
The default value is FALSE.
Definition at line 2002 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.TABLE_INSERT_MODE = "table_insert_mode" |
Insertion scheme to use when inserting records from multiple shapefiles.
Supported values:
The default value is SINGLE.
Definition at line 2023 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.TABLE_PER_FILE = "table_per_file" |
Insert records from each file into a new table corresponding to that file.
Definition at line 2030 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.TEXT_COMMENT_STRING = "text_comment_string" |
Specifies the character string that should be interpreted as a comment line prefix in the source data.
All lines in the data starting with the provided string are ignored.
For delimited_text file_type only. The default value is '#'.
Definition at line 2039 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.TEXT_DELIMITER = "text_delimiter" |
Specifies the character delimiting field values in the source data and field names in the header (if present).
For delimited_text file_type only. The default value is ','.
Definition at line 2047 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.TEXT_ESCAPE_CHARACTER = "text_escape_character" |
Specifies the character that is used to escape other characters in the source data.
An 'a', 'b', 'f', 'n', 'r', 't', or 'v' preceded by an escape character will be interpreted as the ASCII bell, backspace, form feed, line feed, carriage return, horizontal tab, & vertical tab, respectively. For example, the escape character followed by an 'n' will be interpreted as a newline within a field value.
The escape character can also be used to escape the quoting character, and will be treated as an escape character whether it is within a quoted field value or not.
For delimited_text file_type only.
Definition at line 2067 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.TEXT_HAS_HEADER = "text_has_header" |
Indicates whether the source data contains a header row.
For delimited_text file_type only. Supported values:
The default value is TRUE.
Definition at line 2086 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.TEXT_HEADER_PROPERTY_DELIMITER = "text_header_property_delimiter" |
Specifies the delimiter for column properties in the header row (if present).
Cannot be set to same value as text_delimiter.
For delimited_text file_type only. The default value is '|'.
Definition at line 2096 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.TEXT_NULL_STRING = "text_null_string" |
Specifies the character string that should be interpreted as a null value in the source data.
For delimited_text file_type only. The default value is '\N'.
Definition at line 2104 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.TEXT_QUOTE_CHARACTER = "text_quote_character" |
Specifies the character that should be interpreted as a field value quoting character in the source data.
The character must appear at beginning and end of field value to take effect. Delimiters within quoted fields are treated as literals and not delimiters. Within a quoted field, two consecutive quote characters will be interpreted as a single literal quote character, effectively escaping it. To not have a quote character, specify an empty string.
For delimited_text file_type only. The default value is '"'.
Definition at line 2119 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.TEXT_SEARCH_COLUMNS = "text_search_columns" |
Add 'text_search' property to internally inferenced string columns.
Comma seperated list of column names or '*' for all columns. To add 'text_search' property only to string columns greater than or equal to a minimum size, also set the text_search_min_column_length
Definition at line 2128 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.TEXT_SEARCH_MIN_COLUMN_LENGTH = "text_search_min_column_length" |
Set the minimum column size for strings to apply the 'text_search' property to.
Used only when text_search_columns has a value.
Definition at line 2133 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.TRUE = "true" |
Upsert new records when primary keys match existing records
Definition at line 1699 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.TRUNCATE_STRINGS = "truncate_strings" |
If set to true, truncate string values that are longer than the column's type size.
Supported values:
The default value is FALSE.
Definition at line 2150 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.TRUNCATE_TABLE = "truncate_table" |
If set to true, truncates the table specified by table_name prior to loading the file(s).
Supported values:
The default value is FALSE.
Definition at line 2167 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.TYPE_INFERENCE_MODE = "type_inference_mode" |
Optimize type inferencing for either speed or accuracy.
Supported values:
The default value is SPEED.
Definition at line 2189 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.TYPE_INFERENCE_ONLY = "type_inference_only" |
Infer the type of the source data and return, without ingesting any data.
The inferred type is returned in the response.
Definition at line 1747 of file CreateTableExternal.cs.
const string kinetica.CreateTableExternalRequest.Options.UPDATE_ON_EXISTING_PK = "update_on_existing_pk" |
Specifies the record collision policy for inserting into a table with a primary key.
If set to true, any existing table record with primary key values that match those of a record being inserted will be replaced by that new record (the new data will be 'upserted'). If set to false, any existing table record with primary key values that match those of a record being inserted will remain unchanged, while the new record will be rejected and the error handled as determined by ignore_existing_pk & error_handling. If the specified table does not have a primary key, then this option has no effect. Supported values:
The default value is FALSE.
Definition at line 2249 of file CreateTableExternal.cs.