Skip to main content

◆ showProcStatus() [1/2]

ShowProcStatusResponse kinetica.Kinetica.showProcStatus (ShowProcStatusRequestrequest_)
inline

Shows the statuses of running or completed proc instances.

Results are grouped by run ID (as returned from executeProc) and data segment ID (each invocation of the proc command on a data segment is assigned a data segment ID).

Parameters
request_Request object containing the parameters for the operation.
Returns
Response object containing the result of the operation.

Definition at line 60561 of file KineticaFunctions.cs.

◆ showProcStatus() [2/2]

ShowProcStatusResponse kinetica.Kinetica.showProcStatus (stringrun_id = "",
IDictionary< string, string >options = null )
inline

Shows the statuses of running or completed proc instances.

Results are grouped by run ID (as returned from executeProc) and data segment ID (each invocation of the proc command on a data segment is assigned a data segment ID).

Parameters
run_idThe run ID of a specific proc instance for which the status will be returned. If a proc with a matching run ID is not found, the response will be empty. If not specified, the statuses of all executed proc instances will be returned. The default value is ”.
optionsOptional parameters.
  • CLEAR_COMPLETE: If set to TRUE, if a proc instance has completed (either successfully or unsuccessfully) then its status will be cleared and no longer returned in subsequent calls. Supported values:The default value is FALSE.
  • RUN_TAG: If run_id is specified, return the status for a proc instance that has a matching run ID and a matching run tag that was provided to executeProc. If run_id is not specified, return statuses for all proc instances where a matching run tag was provided to executeProc. The default value is ”.
The default value is an empty Dictionary.
Returns
Response object containing the result of the operation.

Definition at line 60646 of file KineticaFunctions.cs.

◆ ShowProcStatusAsync() [1/2]

async System.Threading.Tasks.Task< ShowProcStatusResponse > kinetica.Kinetica.ShowProcStatusAsync (ShowProcStatusRequestrequest_,
System.Threading.CancellationTokencancellationToken = default )
inline

Shows the statuses of running or completed proc instances.

(async)

Results are grouped by run ID (as returned from executeProc) and data segment ID (each invocation of the proc command on a data segment is assigned a data segment ID).

Parameters
request_Request object containing the parameters for the operation.
cancellationTokenCancellation token to cancel the operation.
Returns
Task that returns the response object containing the result of the operation.

Definition at line 60581 of file KineticaFunctions.cs.

◆ ShowProcStatusAsync() [2/2]

async System.Threading.Tasks.Task< ShowProcStatusResponse > kinetica.Kinetica.ShowProcStatusAsync (stringrun_id = "",
IDictionary< string, string >options = null,
System.Threading.CancellationTokencancellationToken = default )
inline

Shows the statuses of running or completed proc instances.

(async)

Results are grouped by run ID (as returned from executeProc) and data segment ID (each invocation of the proc command on a data segment is assigned a data segment ID).

Parameters
run_idThe run ID of a specific proc instance for which the status will be returned. If a proc with a matching run ID is not found, the response will be empty. If not specified, the statuses of all executed proc instances will be returned. The default value is ”.
optionsOptional parameters.
  • CLEAR_COMPLETE: If set to TRUE, if a proc instance has completed (either successfully or unsuccessfully) then its status will be cleared and no longer returned in subsequent calls. Supported values:The default value is FALSE.
  • RUN_TAG: If run_id is specified, return the status for a proc instance that has a matching run ID and a matching run tag that was provided to executeProc. If run_id is not specified, return statuses for all proc instances where a matching run tag was provided to executeProc. The default value is ”.
The default value is an empty Dictionary.
cancellationTokenCancellation token to cancel the operation.
Returns
Task that returns the response object containing the result of the operation.

Definition at line 60711 of file KineticaFunctions.cs.