Skip to main content

◆ adminAlterHost() [1/2]

AdminAlterHostResponse kinetica.Kinetica.adminAlterHost (AdminAlterHostRequestrequest_)
inline

Alter properties on an existing host in the cluster.

Currently, the only property that can be altered is a hosts ability to accept failover processes.

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

Definition at line 571 of file KineticaFunctions.cs.

◆ adminAlterHost() [2/2]

AdminAlterHostResponse kinetica.Kinetica.adminAlterHost (stringhost,
IDictionary< string, string >options = null )
inline

Alter properties on an existing host in the cluster.

Currently, the only property that can be altered is a hosts ability to accept failover processes.

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.
  • ACCEPTS_FAILOVER: If set to TRUE, the host will accept processes (ranks, graph server, etc.) in the event of a failover on another node in the cluster. 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 635 of file KineticaFunctions.cs.

◆ AdminAlterHostAsync() [1/2]

async System.Threading.Tasks.Task< AdminAlterHostResponse > kinetica.Kinetica.AdminAlterHostAsync (AdminAlterHostRequestrequest_,
System.Threading.CancellationTokencancellationToken = default )
inline

Alter properties on an existing host in the cluster.

(async)

Currently, the only property that can be altered is a hosts ability to accept failover processes.

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

◆ AdminAlterHostAsync() [2/2]

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

Alter properties on an existing host in the cluster.

(async)

Currently, the only property that can be altered is a hosts ability to accept failover processes.

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.
  • ACCEPTS_FAILOVER: If set to TRUE, the host will accept processes (ranks, graph server, etc.) in the event of a failover on another node in the cluster. 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 682 of file KineticaFunctions.cs.