public static final class CreateProcRequest.ExecutionMode extends Object
DISTRIBUTED
: Input table data will be divided into data segments that
are distributed across all nodes in the cluster, and the proc command
will be invoked once per data segment in parallel. Output table data
from each invocation will be saved to the same node as the corresponding
input data.
NONDISTRIBUTED
: The proc command will be invoked only once per
execution, and will not have access to any input or output table data.
DISTRIBUTED
.
A set of string constants for the parameter executionMode
.Modifier and Type | Field and Description |
---|---|
static String |
DISTRIBUTED
Input table data will be divided into data segments that are
distributed across all nodes in the cluster, and the proc command
will be invoked once per data segment in parallel.
|
static String |
NONDISTRIBUTED
The proc command will be invoked only once per execution, and will
not have access to any input or output table data.
|
public static final String DISTRIBUTED
public static final String NONDISTRIBUTED
Copyright © 2020. All rights reserved.