Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
kinetica.CreateProcRequest.ExecutionMode Struct Reference

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 direct access to any tables named as input or output table parameters in the call to Kinetica.executeProc(string,IDictionary{string, string},IDictionary{string, byte[]},IList{string},IDictionary{string, IList{string}},IList{string},IDictionary{string, string}). More...
 

Detailed Description

The execution mode of the proc.

Supported values:

  • 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 direct access to any tables named as input or output table parameters in the call to /execute/proc. It will, however, be able to access the database using native API calls.

The default value is DISTRIBUTED. A set of string constants for the parameter execution_mode.

Definition at line 56 of file CreateProc.cs.

Member Data Documentation

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 67 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 direct access to any tables named as input or output table parameters in the call to Kinetica.executeProc(string,IDictionary{string, string},IDictionary{string, byte[]},IList{string},IDictionary{string, IList{string}},IList{string},IDictionary{string, string}).

It will, however, be able to access the database using native API calls.

Definition at line 77 of file CreateProc.cs.


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