We're currently using the pinot java client for queries. With the introduction of #7397, we're seeing more query exceptions since the java client currently raises an exception when there are any exceptions in the response:
|
if (response.hasExceptions()) { |
|
throw new PinotClientException("Query had processing exceptions: \n" + response.getExceptions()); |
|
} |
Can we make this behavior configurable on the client?