Skip to main content

◆ killProc() [1/2]

KillProcResponse kinetica.Kinetica.killProc (KillProcRequestrequest_)
inline

Kills a running proc instance.

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

Definition at line 53059 of file KineticaFunctions.cs.

◆ killProc() [2/2]

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

Kills a running proc instance.

Parameters
run_idThe run ID of a running proc instance. If a proc with a matching run ID is not found or the proc instance has already completed, no procs will be killed. If not specified, all running proc instances will be killed. The default value is ”.
optionsOptional parameters.
  • RUN_TAG: If run_id is specified, kill the proc instance that has a matching run ID and a matching run tag that was provided to executeProc. If run_id is not specified, kill the proc instance(s) where a matching run tag was provided to executeProc. The default value is ”.
  • CLEAR_EXECUTE_AT_STARTUP: If TRUE, kill and remove the instance of the proc matching the auto-start run ID that was created to run when the database is started. The auto-start run ID was returned from executeProc and can be retrieved using showProc. Supported values:The default value is FALSE.
The default value is an empty Dictionary.
Returns
Response object containing the result of the operation.

Definition at line 53132 of file KineticaFunctions.cs.

◆ KillProcAsync() [1/2]

async System.Threading.Tasks.Task< KillProcResponse > kinetica.Kinetica.KillProcAsync (KillProcRequestrequest_,
System.Threading.CancellationTokencancellationToken = default )
inline

Kills a running proc instance.

(async)

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 53074 of file KineticaFunctions.cs.

◆ KillProcAsync() [2/2]

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

Kills a running proc instance.

(async)

Parameters
run_idThe run ID of a running proc instance. If a proc with a matching run ID is not found or the proc instance has already completed, no procs will be killed. If not specified, all running proc instances will be killed. The default value is ”.
optionsOptional parameters.
  • RUN_TAG: If run_id is specified, kill the proc instance that has a matching run ID and a matching run tag that was provided to executeProc. If run_id is not specified, kill the proc instance(s) where a matching run tag was provided to executeProc. The default value is ”.
  • CLEAR_EXECUTE_AT_STARTUP: If TRUE, kill and remove the instance of the proc matching the auto-start run ID that was created to run when the database is started. The auto-start run ID was returned from executeProc and can be retrieved using showProc. Supported values:The default value is FALSE.
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 53190 of file KineticaFunctions.cs.