You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe:
No.
Describe the feature you'd like:
After implementing this proposal(pingcap/tidb#13660), TiDB, TiKV, and PD all support to change configs dynamically online.
Now we can update configs dynamically according to pd-ctl, which is not convenient to our user, so we need to support updating configs by SQL.
After discussing, we decide to support these syntaxes:
set config {component or instance} key=val
show config where ...
For example:
set config TiDB Log.Level="info"
set config '127.0.0.1:3306' Log.Level="info"
show config where type="TiDB"
The text was updated successfully, but these errors were encountered:
Feature Request
Is your feature request related to a problem? Please describe:
No.
Describe the feature you'd like:
After implementing this proposal(pingcap/tidb#13660), TiDB, TiKV, and PD all support to change configs dynamically online.
Now we can update configs dynamically according to
pd-ctl
, which is not convenient to our user, so we need to support updating configs by SQL.After discussing, we decide to support these syntaxes:
For example:
The text was updated successfully, but these errors were encountered: