Skip to main content

A set of string constants for the parameter RawInsertRecordsRequest.options. More…

Static Public Attributes

const string UPDATE_ON_EXISTING_PK = “update_on_existing_pk”
 Specifies the record collision policy for inserting into a table with a primary key.
 
const string TRUE = “true”
 A boolean constant for the RawInsertRecordsRequest.Options options.
 
const string FALSE = “false”
 A boolean constant for the RawInsertRecordsRequest.Options options.
 
const string ENABLE_INPLACE_UPDATES = “enable_inplace_updates”
 Applies only when upserting (when UPDATE_ON_EXISTING_PK is TRUE).
 
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).
 
const string PK_CONFLICT_PREDICATE_HIGHER = “pk_conflict_predicate_higher”
 The record with higher value for the column resolves the primary-key insert conflict.
 
const string PK_CONFLICT_PREDICATE_LOWER = “pk_conflict_predicate_lower”
 The record with lower value for the column resolves the primary-key insert conflict.
 
const string RETURN_RECORD_IDS = “return_record_ids”
 If TRUE then return the internal record id along for each inserted record.
 
const string TRUNCATE_STRINGS = “truncate_strings”
 If set to TRUE, any strings which are too long for their target charN string columns will be truncated to fit.
 
const string RETURN_INDIVIDUAL_ERRORS = “return_individual_errors”
 If set to TRUE, success will always be returned, and any errors found will be included in the info map.
 
const string ALLOW_PARTIAL_BATCH = “allow_partial_batch”
 If set to TRUE, all correct records will be inserted and incorrect records will be rejected and reported.
 
const string DRY_RUN = “dry_run”
 If set to TRUE, no data will be saved and any errors will be returned.
 
const string REQUEST_SCHEMA_STR = “request_schema_str”
 Type schema of RawInsertRecordsRequest.list (when RawInsertRecordsRequest.list_encoding is BINARY), in [[“column_name”,“column_type”]] format.
 
const string TRANSFORMATIONS = “transformations”
 Comma-separated expressions, one per target table column.
 

Detailed Description

A set of string constants for the parameter RawInsertRecordsRequest.options.

Optional parameters.

Definition at line 66 of file InsertRecords.cs.

Member Data Documentation

◆ ALLOW_PARTIAL_BATCH

const string kinetica.RawInsertRecordsRequest.Options.ALLOW_PARTIAL_BATCH = “allow_partial_batch”
static

If set to TRUE, all correct records will be inserted and incorrect records will be rejected and reported.

Otherwise, the entire batch will be rejected if any records are incorrect. Supported values:

The default value is FALSE.

Definition at line 295 of file InsertRecords.cs.

◆ DRY_RUN

const string kinetica.RawInsertRecordsRequest.Options.DRY_RUN = “dry_run”
static

If set to TRUE, no data will be saved and any errors will be returned.

Supported values:

The default value is FALSE.

Definition at line 316 of file InsertRecords.cs.

◆ ENABLE_INPLACE_UPDATES

const string kinetica.RawInsertRecordsRequest.Options.ENABLE_INPLACE_UPDATES = “enable_inplace_updates”
static

Applies only when upserting (when UPDATE_ON_EXISTING_PK is TRUE).

If set to TRUE, an existing record matched by primary key is modified in place. If set to FALSE, it is updated by deleting the existing record and inserting a replacement (delete and insert), which prevents the change from being reflected in dependent materialized views until they are refreshed. Supported values:

The default value is TRUE.

Definition at line 144 of file InsertRecords.cs.

◆ FALSE

const string kinetica.RawInsertRecordsRequest.Options.FALSE = “false”
static

A boolean constant for the RawInsertRecordsRequest.Options options.

Definition at line 115 of file InsertRecords.cs.

◆ IGNORE_EXISTING_PK

const string kinetica.RawInsertRecordsRequest.Options.IGNORE_EXISTING_PK = “ignore_existing_pk”
static

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 ALLOW_PARTIAL_BATCH and RETURN_INDIVIDUAL_ERRORS. 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:

  • TRUE: Ignore new records whose primary key values collide with those of existing records.
  • FALSE: Treat as errors any new records whose primary key values collide with those of existing records.

The default value is FALSE.

Definition at line 192 of file InsertRecords.cs.

◆ PK_CONFLICT_PREDICATE_HIGHER

const string kinetica.RawInsertRecordsRequest.Options.PK_CONFLICT_PREDICATE_HIGHER = “pk_conflict_predicate_higher”
static

The record with higher value for the column resolves the primary-key insert conflict.

The default value is ”.

Definition at line 197 of file InsertRecords.cs.

◆ PK_CONFLICT_PREDICATE_LOWER

const string kinetica.RawInsertRecordsRequest.Options.PK_CONFLICT_PREDICATE_LOWER = “pk_conflict_predicate_lower”
static

The record with lower value for the column resolves the primary-key insert conflict.

The default value is ”.

Definition at line 202 of file InsertRecords.cs.

◆ REQUEST_SCHEMA_STR

const string kinetica.RawInsertRecordsRequest.Options.REQUEST_SCHEMA_STR = “request_schema_str”
static

Type schema of RawInsertRecordsRequest.list (when RawInsertRecordsRequest.list_encoding is BINARY), in [[“column_name”,“column_type”]] format.

When non-empty and different from the table’s schema, the server remaps the incoming records to the table’s full schema. Columns present in the table but absent from this schema are filled using their default values, NULL (if nullable), or an error is returned. If empty, records must match the table’s full schema. The default value is ”.

Definition at line 329 of file InsertRecords.cs.

◆ RETURN_INDIVIDUAL_ERRORS

const string kinetica.RawInsertRecordsRequest.Options.RETURN_INDIVIDUAL_ERRORS = “return_individual_errors”
static

If set to TRUE, success will always be returned, and any errors found will be included in the info map.

The “bad_record_indices” entry is a comma-separated list of bad records (0-based). If so, there will also be an “error_N” entry for each record with an error, where N is the index (0-based). Supported values:

The default value is FALSE.

Definition at line 271 of file InsertRecords.cs.

◆ RETURN_RECORD_IDS

const string kinetica.RawInsertRecordsRequest.Options.RETURN_RECORD_IDS = “return_record_ids”
static

If TRUE then return the internal record id along for each inserted record.

Supported values:

The default value is FALSE.

Definition at line 223 of file InsertRecords.cs.

◆ TRANSFORMATIONS

const string kinetica.RawInsertRecordsRequest.Options.TRANSFORMATIONS = “transformations”
static

Comma-separated expressions, one per target table column.

Each expression is evaluated per record. Empty entries (two consecutive commas) mean no transformation for that column – the value is resolved from the input record, table default, NULL, or an error. Expressions may reference input columns by name or by position (1forthefirstinputcolumn,1 for the first input column, 2 for the second, etc.). The default value is ”.

Definition at line 339 of file InsertRecords.cs.

◆ TRUE

const string kinetica.RawInsertRecordsRequest.Options.TRUE = “true”
static

A boolean constant for the RawInsertRecordsRequest.Options options.

Definition at line 111 of file InsertRecords.cs.

◆ TRUNCATE_STRINGS

const string kinetica.RawInsertRecordsRequest.Options.TRUNCATE_STRINGS = “truncate_strings”
static

If set to TRUE, any strings which are too long for their target charN string columns will be truncated to fit.

Supported values:

The default value is FALSE.

Definition at line 245 of file InsertRecords.cs.

◆ UPDATE_ON_EXISTING_PK

const string kinetica.RawInsertRecordsRequest.Options.UPDATE_ON_EXISTING_PK = “update_on_existing_pk”
static

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, ALLOW_PARTIAL_BATCH, and RETURN_INDIVIDUAL_ERRORS. If the specified table does not have a primary key, then this option has no effect. Supported values:

  • TRUE: Upsert new records when primary keys match existing records.
  • FALSE: Reject new records when primary keys match existing records.

The default value is FALSE.

Definition at line 107 of file InsertRecords.cs.


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