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:
- 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"