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
<p>If the asynchronous search is still running, it is cancelled.
43
+
Otherwise, the saved search results are deleted.
44
+
If the Elasticsearch security features are enabled, the deletion of a specific async search is restricted to: the authenticated user that submitted the original search request; users that have the <code>cancel_task</code> cluster privilege.</p>
:param id: A unique identifier for the async search.
48
50
"""
@@ -85,16 +87,18 @@ async def get(
85
87
] =None,
86
88
) ->ObjectApiResponse[t.Any]:
87
89
"""
88
-
Get async search results. Retrieve the results of a previously submitted asynchronous
89
-
search request. If the Elasticsearch security features are enabled, access to
90
-
the results of a specific async search is restricted to the user or API key that
91
-
submitted it.
90
+
.. raw:: html
91
+
92
+
<p>Get async search results.</p>
93
+
<p>Retrieve the results of a previously submitted asynchronous search request.
94
+
If the Elasticsearch security features are enabled, access to the results of a specific async search is restricted to the user or API key that submitted it.</p>
<p>When the primary sort of the results is an indexed field, shards get sorted based on minimum and maximum value that they hold for that field. Partial results become available following the sort criteria that was requested.</p>
343
+
<p>Warning: Asynchronous search does not support scroll or search requests that include only the suggest section.</p>
344
+
<p>By default, Elasticsearch does not allow you to store an async search response larger than 10Mb and an attempt to do this results in an error.
345
+
The maximum allowed size for a stored async search response can be set by changing the <code>search.max_async_search_response_size</code> cluster level setting.</p>
0 commit comments