Kinetica C# API
Version 6.0.1.0
|
Optional parameters. More...
Public Attributes | |
const string | CACHE_INPUT = "cache_input" |
A comma-delimited list of table names from <member name="input_table_names"> from which input data will be cached for use in subsequent calls to /execute/proc with the use_cached_input option. More... | |
const string | USE_CACHED_INPUT = "use_cached_input" |
A comma-delimited list of run IDs (as returned from prior calls to /execute/proc) of running or completed proc instances from which input data cached using the cache_input option will be used. More... | |
Optional parameters.
A set of string constants for the parameter <member name="options">.
Definition at line 50 of file ExecuteProc.cs.
const string kinetica.ExecuteProcRequest.Options.CACHE_INPUT = "cache_input" |
A comma-delimited list of table names from <member name="input_table_names"> from which input data will be cached for use in subsequent calls to /execute/proc with the use_cached_input option.
Cached input data will be retained until the proc status is cleared with the /show/proc/status option of /show/proc/status and all proc instances using the cached data have completed.
Definition at line 60 of file ExecuteProc.cs.
const string kinetica.ExecuteProcRequest.Options.USE_CACHED_INPUT = "use_cached_input" |
A comma-delimited list of run IDs (as returned from prior calls to /execute/proc) of running or completed proc instances from which input data cached using the cache_input option will be used.
Cached input data will not be used for any tables specified in <member name="input_table_names">, but data from all other tables cached for the specified run IDs will be passed to the proc. If the same table was cached for multiple specified run IDs, the cached data from the first run ID specified in the list that includes that table will be used.
Definition at line 72 of file ExecuteProc.cs.