You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For ES query fired at an index having say 5 shards, if correct results are returned from 4 shards and an exception thrown from one shard, the ES JSON response for _shards section may look something like below:
ISearchResponse<T> does expose how many shards succeeded and how many failed but does not expose the failure reason. <error message> may be something like IndexOutOfBoundsException[Index: 1, Size: 1].
Am I missing something here or is this really not supported by Nest1.0? If later, is there any plan to support this?
The text was updated successfully, but these errors were encountered:
For ES query fired at an index having say 5 shards, if correct results are returned from 4 shards and an exception thrown from one shard, the ES JSON response for
_shards
section may look something like below:ISearchResponse<T>
does expose how many shards succeeded and how many failed but does not expose the failure reason.<error message>
may be something likeIndexOutOfBoundsException[Index: 1, Size: 1]
.Am I missing something here or is this really not supported by Nest1.0? If later, is there any plan to support this?
The text was updated successfully, but these errors were encountered: