snleee opened a new pull request, #8711:
URL: https://github.com/apache/pinot/pull/8711
This is the last step for #7966 to disable groovy function by default.
Release Notes: We are disabling groovy function by default due to the
potential security issues. To enable back the functionality, users can choose
to use table-level config override or broker/controller config to turn it on
globally.
```
# Enable Groovy globally on Pinot broker
pinot.broker.disable.query.groovy=false
# Enable Groovy globally on Pinot controller
controller.disable.ingestion.groovy=false
# Table override
{
"tableName": "myTable",
"tableType": "OFFLINE",
"queryConfig" : {
"disableGroovy": 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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]