Kinetica C# API
Version 6.0.1.0
|
The execution mode of the proc. More...
Public Attributes | |
const string | DISTRIBUTED = "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. More... | |
const string | NONDISTRIBUTED = "nondistributed" |
The proc command will be invoked only once per execution, and will not have access to any input or output table data. More... | |
The execution mode of the proc.
Values: distributed, nondistributed.
A set of string constants for the parameter <member name="execution_mode">.
Definition at line 29 of file CreateProc.cs.
const string kinetica.CreateProcRequest.ExecutionMode.DISTRIBUTED = "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.
Definition at line 37 of file CreateProc.cs.
const string kinetica.CreateProcRequest.ExecutionMode.NONDISTRIBUTED = "nondistributed" |
The proc command will be invoked only once per execution, and will not have access to any input or output table data.
Definition at line 42 of file CreateProc.cs.