ankitsultana commented on issue #10606:
URL: https://github.com/apache/pinot/issues/10606#issuecomment-1509407442
There'll be events emitted in both brokers and servers.
Our goal is to make it very flexible: some users may only be interested in
broker events, some may be interested in both broker and server events, so
we'll have separate interfaces for these and users can plug in howsoever they
wish.
The interface can take in the query-info in a dedicated POJO, which can make
it easy to add more details later without having to worry about backwards
incompatibility. e.g. `BrokerQueryEventInfo::trigger(QueryInfo)`.
`QueryInfo` here may be something like:
```
QueryInfo {
private String _sqlQuery;
private long _requestId;
...
```
--
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]