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`
2.1 KiB
2.1 KiB
title, language
| title | language |
|---|---|
| ADMIN-SHOW-CONFIG | en |
ADMIN-SHOW-CONFIG
Name
ADMIN SHOW CONFIG
Description
This statement is used to display the configuration of the current cluster (currently only the configuration items of FE are supported)
grammar:
ADMIN SHOW FRONTEND CONFIG [LIKE "pattern"];
The columns in the results have the following meanings:
- Key: Configuration item name
- Value: Configuration item value
- Type: Configuration item type
- IsMutable: Whether it can be set by ADMIN SET CONFIG command
- MasterOnly: Is it only applicable to Master FE
- Comment: Configuration item description
Example
-
View the configuration of the current FE node
ADMIN SHOW FRONTEND CONFIG; -
Use the like predicate to search the configuration of the current Fe node
mysql> ADMIN SHOW FRONTEND CONFIG LIKE '%check_java_version%'; +--------------------+-------+---------+---------- -+------------+---------+ | Key | Value | Type | IsMutable | MasterOnly | Comment | +--------------------+-------+---------+---------- -+------------+---------+ | check_java_version | true | boolean | false | false | | +--------------------+-------+---------+---------- -+------------+---------+ 1 row in set (0.01 sec)
Keywords
ADMIN, SHOW, CONFIG