SHOW BACKENDS
Description
This statement is used to view the BE nodes in the cluster
SHOW BACKENDS;
illustrate:
- LastStartTime indicates the last BE start time.
- LastHeartbeat indicates the last heartbeat.
- Alive indicates whether the node is alive or not.
- If SystemDecommissioned is true, it means that the node is being safely decommissioned.
- If ClusterDecommissioned is true, it means that the node is going offline in the current cluster.
- TabletNum represents the number of shards on the node.
- DataUsedCapacity Indicates the space occupied by the actual user data.
- AvailCapacity Indicates the available space on the disk.
- TotalCapacity represents the total disk space. TotalCapacity = AvailCapacity + DataUsedCapacity + other non-user data files occupy space.
- UsedPct Indicates the percentage of disk used.
- ErrMsg is used to display the error message when the heartbeat fails.
- Status is used to display some status information of BE in JSON format, including the time information of the last time BE reported its tablet.
- HeartbeatFailureCounter: The current number of heartbeats that have failed consecutively. If the number exceeds the
max_backend_heartbeat_failure_tolerance_count
configuration, the isAlive will be set to false. - NodeRole is used to display the role of Backend node. Now there are two roles: mix and computation. Mix node represent the origin Backend node and computation Node represent the compute only node.
Keywords
SHOW, BACKENDS