Files
doris/docs/en/sql-manual/sql-reference/Show-Statements/SHOW-BACKENDS.md
Mingyu Chen 74a482ca7f [fix] fix docs build bug (#9293)
After this PR #9272, the `docs/build_help_zip.sh` will run failed.
This PR fix this issue.
But the help module still has some parse problem, I will fix it in next PR.

This CL mainly changes:
1. fix `docs/build_help_zip.sh` error
2. remove `sql-reference-v2` to `sql-reference`
3. modify build extension github action to run `docs/build_help_zip.sh`
2022-04-28 22:19:04 +08:00

2.1 KiB

title, language
title language
SHOW-BACKENDS en

SHOW-BACKENDS

Name

SHOW BACKENDS

Description

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

 SHOW BACKENDS;

illustrate:

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

SHOW, BACKENDS

Best Practice