You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by "lewy-startree (via GitHub)" <gi...@apache.org> on 2023/05/08 15:42:17 UTC

[GitHub] [pinot] lewy-startree opened a new issue, #10742: RFE: option to avoid exception when query timeout is reached

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: commits-unsubscribe@pinot.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org


[GitHub] [pinot] abhioncbr commented on issue #10742: RFE: option to avoid exception when query timeout is reached

Posted by "abhioncbr (via GitHub)" <gi...@apache.org>.
abhioncbr commented on issue #10742:
URL: https://github.com/apache/pinot/issues/10742#issuecomment-1540186100

   I see the following changes were implemented in the following [PR](https://github.com/apache/pinot/pull/7397). I also see in java-client, we can ignore the [exception](https://github.com/apache/pinot/issues/7770). 
   
   However, not able to find any such option on the UI. 


-- 
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: commits-unsubscribe@pinot.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org