lewy-startree opened a new issue, #10742:
URL: https://github.com/apache/pinot/issues/10742
Based on behavior difference between 0.9.0 and latest version.
Query like this
```SELECT DISTINCT account_key FROM point_entry WHERE
MAP_VALUE(account_fields_keys, 'type', account_fields_values) =
'manual_billing_uncollected' and created_at >= 1680566400 LIMIT 11
option(timeoutMs=20000)```
in this case the entire query would have taken much longer than the timeout
to finish.
On 0.9.0, when timeout reached, it was able to simply return data it
gathered so far and respond to client
But on the latest version, it throw TimeoutException on client side, while
retrying the query on controller UI, it returns
```
{
"errorCode": 427,
"message": "207 servers [...] not responded"
}
```
request an option to avoid exception when query timeout is reached
--
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]