Skip to main content

◆ adminSwitchover() [1/2]

AdminSwitchoverResponse kinetica.Kinetica.adminSwitchover (AdminSwitchoverRequestrequest_)
inline

Manually switch over one or more processes to another host.

Individual ranks or entire hosts may be moved to another host.

This method should be used for on-premise deployments only.

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

Definition at line 3005 of file KineticaFunctions.cs.

◆ adminSwitchover() [2/2]

AdminSwitchoverResponse kinetica.Kinetica.adminSwitchover (IList< string >processes,
IList< string >destinations,
IDictionary< string, string >options = null )
inline

Manually switch over one or more processes to another host.

Individual ranks or entire hosts may be moved to another host.

This method should be used for on-premise deployments only.

Parameters
processesIndicates the process identifier to switch over to another host. Options are ‘hostN’ and ‘rankN’ where ‘N’ corresponds to the number associated with a host or rank in the Network section of the gpudb.conf file; e.g., ‘host[N].address’ or ‘rank[N].host’. If ‘hostN’ is provided, all processes on that host will be moved to another host. Each entry in this array will be switched over to the corresponding host entry at the same index in destinations .
destinationsIndicates to which host to switch over each corresponding process given in processes . Each index must be specified as ‘hostN’ where ‘N’ corresponds to the number associated with a host or rank in the Network section of the gpudb.conf file; e.g., ‘host[N].address’. Each entry in this array will receive the corresponding process entry at the same index in processes .
optionsOptional parameters.
  • DRY_RUN: If set to TRUE, only validation checks will be performed. Nothing is switched over. 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 3087 of file KineticaFunctions.cs.

◆ AdminSwitchoverAsync() [1/2]

async System.Threading.Tasks.Task< AdminSwitchoverResponse > kinetica.Kinetica.AdminSwitchoverAsync (AdminSwitchoverRequestrequest_,
System.Threading.CancellationTokencancellationToken = default )
inline

Manually switch over one or more processes to another host.

(async)

Individual ranks or entire hosts may be moved to another host.

This method should be used for on-premise deployments only.

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

◆ AdminSwitchoverAsync() [2/2]

async System.Threading.Tasks.Task< AdminSwitchoverResponse > kinetica.Kinetica.AdminSwitchoverAsync (IList< string >processes,
IList< string >destinations,
IDictionary< string, string >options = null,
System.Threading.CancellationTokencancellationToken = default )
inline

Manually switch over one or more processes to another host.

(async)

Individual ranks or entire hosts may be moved to another host.

This method should be used for on-premise deployments only.

Parameters
processesIndicates the process identifier to switch over to another host. Options are ‘hostN’ and ‘rankN’ where ‘N’ corresponds to the number associated with a host or rank in the Network section of the gpudb.conf file; e.g., ‘host[N].address’ or ‘rank[N].host’. If ‘hostN’ is provided, all processes on that host will be moved to another host. Each entry in this array will be switched over to the corresponding host entry at the same index in destinations .
destinationsIndicates to which host to switch over each corresponding process given in processes . Each index must be specified as ‘hostN’ where ‘N’ corresponds to the number associated with a host or rank in the Network section of the gpudb.conf file; e.g., ‘host[N].address’. Each entry in this array will receive the corresponding process entry at the same index in processes .
optionsOptional parameters.
  • DRY_RUN: If set to TRUE, only validation checks will be performed. Nothing is switched over. 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 3151 of file KineticaFunctions.cs.