Skip to main content

SHOW FRONTEND CONFIG

Description​

This statement is used to display the configuration of the current cluster (currently only the configuration items of FE are supported)

Syntax​

SHOW FRONTEND CONFIG [LIKE "<pattern>"];

Optional Parameters​

<pattern>

A string that can contain ordinary characters and wildcards.

Return Values​

Column nameDescribe
ValueConfiguration item value
TypeConfiguration item type
IsMutableWhether it can be set by ADMIN SET CONFIG command
MasterOnlyIs it only applicable to Master FE
CommentConfiguration item description

Example​

  1. View the configuration of the current FE node

    SHOW FRONTEND CONFIG;
  2. Use the like predicate to search the configuration of the current Fe node

     SHOW FRONTEND CONFIG LIKE '%check_java_version%';
    +--------------------+-------+---------+-----------+------------+---------+
    | Key | Value | Type | IsMutable | MasterOnly | Comment |
    +--------------------+-------+---------+-----------+------------+---------+
    | check_java_version | true | boolean | false | false | |
    +--------------------+-------+---------+-----------+------------+---------+