public static final class AggregateKMeansRequest.Options extends Object
Modifier and Type | Field and Description | ||
---|---|---|---|
static String |
CREATE_TEMP_TABLE
If
TRUE , a unique temporary table name will be
generated in the sys_temp schema and used in place of RESULT_TABLE . |
||
static String |
FALSE |
||
static String |
MAX_ITERS
Number of times to try to hit the tolerance limit before giving up -
default is 10.
|
||
static String |
NUM_TRIES
Number of times to run the k-means algorithm with a different
randomly selected starting points - helps avoid local minimum.
|
||
static String |
RESULT_TABLE
The name of a table used to store the results, in
[schema_name.]table_name format, using standard
static String 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. | ||
static String |
TRUE |
||
static String |
TTL
|
public static final String WHITEN
public static final String MAX_ITERS
public static final String NUM_TRIES
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 RESULT_TABLE
. If RESULT_TABLE_PERSIST
is FALSE
(or unspecified), then this is always allowed
even if the caller does not have permission to create tables. The
generated name is returned in QUALIFIED_RESULT_TABLE_NAME
.
Supported values:
The default value is FALSE
.public static final String TRUE
public static final String FALSE
public static final String RESULT_TABLE
public static final String RESULT_TABLE_PERSIST
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
.public static final String TTL
RESULT_TABLE
.Copyright © 2025. All rights reserved.