SHOW-BACKENDS

Name

SHOW BACKENDS

Description

This statement is used to view the BE nodes in the cluster

  1. SHOW BACKENDS;

illustrate:

  1. 1. LastStartTime indicates the last BE start time.
  2. 2. LastHeartbeat indicates the last heartbeat.
  3. 3. Alive indicates whether the node is alive or not.
  4. 4. If SystemDecommissioned is true, it means that the node is being safely decommissioned.
  5. 5. If ClusterDecommissioned is true, it means that the node is going offline in the current cluster.
  6. 6. TabletNum represents the number of shards on the node.
  7. 7. DataUsedCapacity Indicates the space occupied by the actual user data.
  8. 8. AvailCapacity Indicates the available space on the disk.
  9. 9. TotalCapacity represents the total disk space. TotalCapacity = AvailCapacity + DataUsedCapacity + other non-user data files occupy space.
  10. 10. UsedPct Indicates the percentage of disk used.
  11. 11. ErrMsg is used to display the error message when the heartbeat fails.
  12. 12. 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.

Example

Keywords

  1. SHOW, BACKENDS

Best Practice