wuchong opened a new issue, #2270:
URL: https://github.com/apache/fluss/issues/2270

   ### Search before asking
   
   - [x] I searched in the [issues](https://github.com/apache/fluss/issues) and 
found nothing similar.
   
   
   ### Motivation
   
   Currently, `sys.set_cluster_config` only support to set a single config key 
at one time. However, in some cases, we may need to set multiple config keys in 
an atomic way, so we need to extend it to support such use case. 
   
   ```sql
   CALL sys.set_cluster_config('kv.rocksdb.shared-rate-limiter.bytes-per-sec', 
'200MB');
   ```
   
   ### Solution
   
   Maybe we can have a new CALL procedure `sys.set_cluster_configs` to accept 
variable arguement:
   
   ```sql
   CALL sys.set_cluster_config(
     'kv.rocksdb.shared-rate-limiter.bytes-per-sec=200MB', 
     'kv.snapshot.interval=3min');
   ```
   
   But this requires the procedure to parse the `=` and separate them into keys 
and values. 
   
   
   ### Anything else?
   
   _No response_
   
   ### Willingness to contribute
   
   - [ ] I'm willing to submit a PR!


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to