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
Copy file name to clipboardExpand all lines: elasticsearch/_async/client/async_search.py
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ async def delete(
44
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.
50
50
"""
@@ -94,7 +94,7 @@ async def get(
94
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>
:param id: A unique identifier for the async search.
170
170
:param keep_alive: The length of time that the async search needs to be available.
@@ -346,7 +346,7 @@ async def submit(
346
346
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>
<p>NOTE: This feature is designed for indirect use by Elasticsearch Service, Elastic Cloud Enterprise, and Elastic Cloud on Kubernetes. Direct use is not supported.</p>
<p>NOTE: This feature is designed for indirect use by Elasticsearch Service, Elastic Cloud Enterprise, and Elastic Cloud on Kubernetes. Direct use is not supported.</p>
<p>NOTE: This feature is designed for indirect use by Elasticsearch Service, Elastic Cloud Enterprise, and Elastic Cloud on Kubernetes. Direct use is not supported.</p>
:param name: The auto-follow pattern collection to delete.
49
49
:param master_timeout: The period to wait for a connection to the master node.
@@ -130,7 +130,7 @@ async def follow(
130
130
When the API returns, the follower index exists and cross-cluster replication starts replicating operations from the leader index to the follower index.</p>
:param leader_index: The name of the index in the leader cluster to follow.
@@ -259,7 +259,7 @@ async def follow_info(
259
259
For example, the results include follower index names, leader index names, replication options, and whether the follower indices are active or paused.</p>
NOTE: Follower indices that were configured automatically before updating an auto-follow pattern will remain unchanged even if they do not match against the new patterns.</p>
Copy file name to clipboardExpand all lines: elasticsearch/_async/client/cluster.py
+17-17Lines changed: 17 additions & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -54,7 +54,7 @@ async def allocation_explain(
54
54
This API can be very useful when attempting to diagnose why a shard is unassigned or why a shard continues to remain on its current node when you might expect otherwise.</p>
:param target: Limits the information returned to the specific target. Supports
571
571
a comma-separated list, such as http,ingest.
@@ -614,7 +614,7 @@ async def pending_tasks(
614
614
However, if a user-initiated task such as a create index command causes a cluster state update, the activity of this task might be reported by both task api and pending cluster tasks API.</p>
:param flat_settings: Return settings in flat format (default: false)
872
872
:param master_timeout: Explicit operation timeout for connection to master node
873
-
:param persistent:
873
+
:param persistent: The settings that persist after the cluster restarts.
874
874
:param timeout: Explicit operation timeout
875
-
:param transient:
875
+
:param transient: The settings that do not persist after the cluster restarts.
876
876
"""
877
877
__path_parts: t.Dict[str, str] = {}
878
878
__path="/_cluster/settings"
@@ -928,11 +928,11 @@ async def remote_info(
928
928
This API returns information that reflects current state on the local cluster.
929
929
The <code>connected</code> field does not necessarily reflect whether a remote cluster is down or unavailable, only whether there is currently an open connection to it.
930
930
Elasticsearch does not spontaneously try to reconnect to a disconnected remote cluster.
931
-
To trigger a reconnection, attempt a cross-cluster search, ES|QL cross-cluster search, or try the <a href="https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-indices-resolve-cluster">resolve cluster endpoint</a>.</p>
931
+
To trigger a reconnection, attempt a cross-cluster search, ES|QL cross-cluster search, or try the <code>/_resolve/cluster</code> endpoint.</p>
<p>Once the problem has been corrected, allocation can be manually retried by calling the reroute API with the <code>?retry_failed</code> URI query parameter, which will attempt a single retry round for these shards.</p>
:param metric: Limit the information returned to the specified metrics
1100
1100
:param index: A comma-separated list of index names; use `_all` or empty string
@@ -1182,7 +1182,7 @@ async def stats(
1182
1182
Get basic index metrics (shard numbers, store size, memory usage) and information about the current nodes that form the cluster (number, roles, os, jvm versions, memory usage, cpu and installed plugins).</p>
0 commit comments