fx19880617 opened a new pull request #5073: Adding Pinot Cluster Config API in 
controller and corresponding PinotAdmin Commands
URL: https://github.com/apache/incubator-pinot/pull/5073
 
 
   - Adding a PinotClusterConfig API resource
   - Adding PinotAdmin SubCommands:`GetClusterConfigs` and 
`UpdateClusterConfig`.
   
   Sample Usage:
   ```
   ➜ bin/pinot-admin.sh GetClusterConfigs
   Executing command: GetClusterConfigsCommand -controllerHost 127.0.0.1 
-controllerPort 9000
   allowParticipantAutoJoin=true
   pinot.broker.enable.query.limit.override=false
   enable.case.insensitive.pql=false
   ```
   
   ```
   ➜ bin/pinot-admin.sh UpdateClusterConfig -config 
pinot.broker.enable.query.limit.override=true
   Executing command: UpdateClusterConfig -controllerHost 127.0.0.1 
-controllerPort 9000 -config pinot.broker.enable.query.limit.override=true
   Result: {"status":"Updated cluster config."}
   ```
   
   ```
   ➜ bin/pinot-admin.sh GetClusterConfigs
   Executing command: GetClusterConfigsCommand -controllerHost 127.0.0.1 
-controllerPort 9000
   allowParticipantAutoJoin=true
   pinot.broker.enable.query.limit.override=true
   enable.case.insensitive.pql=false
   ```

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to