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/cluster.py
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -870,9 +870,9 @@ async def put_settings(
870
870
871
871
: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,7 +928,7 @@ 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>
Copy file name to clipboardExpand all lines: elasticsearch/_async/client/fleet.py
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -138,9 +138,9 @@ async def msearch(
138
138
"""
139
139
.. raw:: html
140
140
141
-
<p>Executes several <a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/fleet-search.html">fleet searches</a> with a single API request.
142
-
The API follows the same structure as the <a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/search-multi-search.html">multi search</a> API. However, similar to the fleet search API, it
143
-
supports the wait_for_checkpoints parameter.</p>
141
+
<p>Executes several fleet searches with a single API request.</p>
142
+
<p>The API follows the same structure as the multi search (<code>_msearch</code>) API.
143
+
However, similar to the fleet search API, it supports the <code>wait_for_checkpoints</code> parameter.</p>
0 commit comments