File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
explore-analyze/query-filter/languages Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -312,7 +312,7 @@ Which returns:
312312{
313313 "is_running": false,
314314 "took": 55,
315- "is_partial": false,
315+ "is_partial": true, <3>
316316 "columns": [
317317 ...
318318 ],
@@ -321,9 +321,9 @@ Which returns:
321321 ],
322322 "_clusters": {
323323 "total": 2,
324- "successful": 2 ,
324+ "successful": 1 ,
325325 "running": 0,
326- "skipped": 0,
326+ "skipped": 1, <1>
327327 "partial": 0,
328328 "failed": 0,
329329 "details": {
@@ -356,6 +356,7 @@ Which returns:
356356
3573571 . This cluster is marked as * skipped* , since there were no matching indices on that cluster.
3583582 . Indicates that no shards were searched (due to not having any matching indices).
359+ 3 . Since one of the clusters is skipped, the search result is marked as partial.
359360
360361
361362
You can’t perform that action at this time.
0 commit comments