Skip to main content

◆ adminRemoveHost() [1/2]

AdminRemoveHostResponse kinetica.Kinetica.adminRemoveHost (AdminRemoveHostRequestrequest_)
inline

Removes a host from an existing cluster.

If the host to be removed has any ranks running on it, the ranks must be removed using adminRemoveRanks or manually switched over to a new host using adminSwitchover prior to host removal. If the host to be removed has the graph server or SQL planner running on it, these must be manually switched over to a new host using adminSwitchover.

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

◆ adminRemoveHost() [2/2]

AdminRemoveHostResponse kinetica.Kinetica.adminRemoveHost (stringhost,
IDictionary< string, string >options = null )
inline

Removes a host from an existing cluster.

If the host to be removed has any ranks running on it, the ranks must be removed using adminRemoveRanks or manually switched over to a new host using adminSwitchover prior to host removal. If the host to be removed has the graph server or SQL planner running on it, these must be manually switched over to a new host using adminSwitchover.

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

Parameters
hostIdentifies the host this applies to. Can be the host address, or formatted as ‘hostN’ where N is the host number as specified in gpudb.conf.
optionsOptional parameters.
  • DRY_RUN: If set to TRUE, only validation checks will be performed. No host is removed. 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 1863 of file KineticaFunctions.cs.

◆ AdminRemoveHostAsync() [1/2]

async System.Threading.Tasks.Task< AdminRemoveHostResponse > kinetica.Kinetica.AdminRemoveHostAsync (AdminRemoveHostRequestrequest_,
System.Threading.CancellationTokencancellationToken = default )
inline

Removes a host from an existing cluster.

(async)

If the host to be removed has any ranks running on it, the ranks must be removed using adminRemoveRanks or manually switched over to a new host using adminSwitchover prior to host removal. If the host to be removed has the graph server or SQL planner running on it, these must be manually switched over to a new host using adminSwitchover.

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

◆ AdminRemoveHostAsync() [2/2]

async System.Threading.Tasks.Task< AdminRemoveHostResponse > kinetica.Kinetica.AdminRemoveHostAsync (stringhost,
IDictionary< string, string >options = null,
System.Threading.CancellationTokencancellationToken = default )
inline

Removes a host from an existing cluster.

(async)

If the host to be removed has any ranks running on it, the ranks must be removed using adminRemoveRanks or manually switched over to a new host using adminSwitchover prior to host removal. If the host to be removed has the graph server or SQL planner running on it, these must be manually switched over to a new host using adminSwitchover.

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

Parameters
hostIdentifies the host this applies to. Can be the host address, or formatted as ‘hostN’ where N is the host number as specified in gpudb.conf.
optionsOptional parameters.
  • DRY_RUN: If set to TRUE, only validation checks will be performed. No host is removed. 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 1917 of file KineticaFunctions.cs.