Package com.cloudera.cdp.dw.model
Class ReplicaStatus
- java.lang.Object
-
- com.cloudera.cdp.dw.model.ReplicaStatus
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-09-14T10:47:17.249-07:00") public class ReplicaStatus extends Object
Status information on the current state of replicas in the virtual warehouse.
-
-
Constructor Summary
Constructors Constructor Description ReplicaStatus()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
Integer
getReadyCoordinatorReplicas()
Getter for readyCoordinatorReplicas.Integer
getReadyExecutorReplicas()
Getter for readyExecutorReplicas.Integer
getTotalCoordinatorReplicas()
Getter for totalCoordinatorReplicas.Integer
getTotalExecutorReplicas()
Getter for totalExecutorReplicas.int
hashCode()
void
setReadyCoordinatorReplicas(Integer readyCoordinatorReplicas)
Setter for readyCoordinatorReplicas.void
setReadyExecutorReplicas(Integer readyExecutorReplicas)
Setter for readyExecutorReplicas.void
setTotalCoordinatorReplicas(Integer totalCoordinatorReplicas)
Setter for totalCoordinatorReplicas.void
setTotalExecutorReplicas(Integer totalExecutorReplicas)
Setter for totalExecutorReplicas.String
toString()
-
-
-
Method Detail
-
getTotalExecutorReplicas
public Integer getTotalExecutorReplicas()
Getter for totalExecutorReplicas. Total number of executor replicas scheduled for the virtual warehouse. This number contains the number of executor replicas in pending state, as well as the replicas that are already running. If this number is zero, then the executor functionality is stopped.
-
setTotalExecutorReplicas
public void setTotalExecutorReplicas(Integer totalExecutorReplicas)
Setter for totalExecutorReplicas. Total number of executor replicas scheduled for the virtual warehouse. This number contains the number of executor replicas in pending state, as well as the replicas that are already running. If this number is zero, then the executor functionality is stopped.
-
getReadyExecutorReplicas
public Integer getReadyExecutorReplicas()
Getter for readyExecutorReplicas. Total number of ready executor replicas in the virtual warehouse. This number only contains the healthy executor replicas that have already started up and are ready to accept requests. If this number is less than the totalExecutorReplicas, then the virtual warehouse might still be starting up or there might be a problem scheduling these replicas.
-
setReadyExecutorReplicas
public void setReadyExecutorReplicas(Integer readyExecutorReplicas)
Setter for readyExecutorReplicas. Total number of ready executor replicas in the virtual warehouse. This number only contains the healthy executor replicas that have already started up and are ready to accept requests. If this number is less than the totalExecutorReplicas, then the virtual warehouse might still be starting up or there might be a problem scheduling these replicas.
-
getTotalCoordinatorReplicas
public Integer getTotalCoordinatorReplicas()
Getter for totalCoordinatorReplicas. Total number of coordinator replicas scheduled for the virtual warehouse. This number contains the number of coordinator replicas in pending state, as well as the replicas that are already running. If this number is zero, then the coordinator functionality is stopped.
-
setTotalCoordinatorReplicas
public void setTotalCoordinatorReplicas(Integer totalCoordinatorReplicas)
Setter for totalCoordinatorReplicas. Total number of coordinator replicas scheduled for the virtual warehouse. This number contains the number of coordinator replicas in pending state, as well as the replicas that are already running. If this number is zero, then the coordinator functionality is stopped.
-
getReadyCoordinatorReplicas
public Integer getReadyCoordinatorReplicas()
Getter for readyCoordinatorReplicas. Total number of ready coordinator replicas in the virtual warehouse. This number only contains the healthy executor replicas that have already started up and are ready to accept requests. If this number is less than the totalCoordinatorReplicas, then the virtual warehouse might still be starting up or there might be a problem scheduling these replicas.
-
setReadyCoordinatorReplicas
public void setReadyCoordinatorReplicas(Integer readyCoordinatorReplicas)
Setter for readyCoordinatorReplicas. Total number of ready coordinator replicas in the virtual warehouse. This number only contains the healthy executor replicas that have already started up and are ready to accept requests. If this number is less than the totalCoordinatorReplicas, then the virtual warehouse might still be starting up or there might be a problem scheduling these replicas.
-
-