Files
doris/docs/en/sql-manual/sql-reference/Show-Statements/SHOW-FRONTENDS.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

1.6 KiB

title, language
title language
SHOW-FRONTENDS en

SHOW-FRONTENDS

Name

SHOW FRONTENDS

Description

This statement is used to view FE nodes

grammar:

SHOW FRONTENDS;

illustrate:

  1. name indicates the name of the FE node in bdbje.
  2. If Join is true, it means that the node has joined the cluster before. But it does not mean that it is still in the cluster (may have lost contact
  3. Alive indicates whether the node is alive or not.
  4. ReplayedJournalId indicates the maximum metadata journal id that has been replayed by the node.
  5. LastHeartbeat is the last heartbeat.
  6. IsHelper indicates whether the node is a helper node in bdbje.
  7. ErrMsg is used to display the error message when the heartbeat fails.

Example

Keywords

SHOW, FRONTENDS

Best Practice