public static final class MergeRecordsRequest.Options extends Object
Modifier and Type | Field and Description |
---|---|
static String |
CHUNK_COLUMN_MAX_MEMORY
Indicates the target maximum data size for each column in a chunk to
be used for the merged table specified in
tableName . |
static String |
CHUNK_MAX_MEMORY
Indicates the target maximum data size for all columns in a chunk to
be used for the merged table specified in
tableName . |
static String |
CHUNK_SIZE
Indicates the number of records per chunk to be used for the merged
table specified in
tableName . |
static String |
COLLECTION_NAME
[DEPRECATED--please specify the containing schema for the merged
table as part of
tableName and use GPUdb.createSchema to create the schema if non-existent] Name of a
schema for the newly created merged table specified by tableName . |
static String |
CREATE_TEMP_TABLE
|
static String |
FALSE |
static String |
IS_REPLICATED
|
static String |
TRUE |
static String |
TTL
|
public static final String CREATE_TEMP_TABLE
TRUE
, a unique temporary table name will be
generated in the sys_temp schema and used in place of tableName
. If PERSIST
is
FALSE
, then this is always allowed even if the
caller does not have permission to create tables. The generated name
is returned in QUALIFIED_TABLE_NAME
.
Supported values:
The default value is FALSE
.public static final String TRUE
public static final String FALSE
public static final String COLLECTION_NAME
tableName
and use GPUdb.createSchema
to create the schema if non-existent] Name of a
schema for the newly created merged table specified by tableName
.public static final String IS_REPLICATED
tableName
. If true, the
table will be replicated. If false, the table will be randomly sharded.
Supported values:
The default value is FALSE
.public static final String TTL
public static final String PERSIST
TRUE
, then the table specified in tableName
will be persisted and will not expire
unless a TTL
is specified. If FALSE
, then the table will be an in-memory table and
will expire unless a TTL
is specified otherwise.
Supported values:
The default value is TRUE
.public static final String CHUNK_SIZE
tableName
.public static final String CHUNK_COLUMN_MAX_MEMORY
tableName
.public static final String CHUNK_MAX_MEMORY
tableName
.public static final String VIEW_ID
Copyright © 2025. All rights reserved.