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/cat.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2494,7 +2494,7 @@ async def tasks(
2494
2494
IMPORTANT: cat APIs are only intended for human consumption using the command line or Kibana console. They are not intended for use by applications. For application consumption, use the task management API.</p>
:param master_timeout: Period to wait for a connection to the master node.
944
-
:param timeout: Period to wait for a response. If no response is received before
945
-
the timeout expires, the request fails and returns an error.
951
+
:param master_timeout: The period to wait for a connection to the master node.
952
+
If the master node is not available before the timeout expires, the request
953
+
fails and returns an error. It can also be set to `-1` to indicate that the
954
+
request should never timeout.
955
+
:param timeout: The period to wait for a response. If no response is received
956
+
before the timeout expires, the request fails and returns an error.
946
957
"""
947
958
__path_parts: t.Dict[str, str] = {}
948
959
__path="/_ccr/stats"
@@ -983,18 +994,23 @@ async def unfollow(
983
994
"""
984
995
.. raw:: html
985
996
986
-
<p>Unfollow an index.
987
-
Convert a cross-cluster replication follower index to a regular index.
997
+
<p>Unfollow an index.</p>
998
+
<p>Convert a cross-cluster replication follower index to a regular index.
988
999
The API stops the following task associated with a follower index and removes index metadata and settings associated with cross-cluster replication.
989
1000
The follower index must be paused and closed before you call the unfollow API.</p>
990
-
<p>NOTE: Currently cross-cluster replication does not support converting an existing regular index to a follower index. Converting a follower index to a regular index is an irreversible operation.</p>
1001
+
<blockquote>
1002
+
<p>info
1003
+
Currently cross-cluster replication does not support converting an existing regular index to a follower index. Converting a follower index to a regular index is an irreversible operation.</p>
Copy file name to clipboardExpand all lines: elasticsearch/_async/client/cluster.py
+10-3Lines changed: 10 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -920,9 +920,16 @@ async def remote_info(
920
920
"""
921
921
.. raw:: html
922
922
923
-
<p>Get remote cluster information.
924
-
Get all of the configured remote cluster information.
925
-
This API returns connection and endpoint information keyed by the configured remote cluster alias.</p>
923
+
<p>Get remote cluster information.</p>
924
+
<p>Get information about configured remote clusters.
925
+
The API returns connection and endpoint information keyed by the configured remote cluster alias.</p>
926
+
<blockquote>
927
+
<p>info
928
+
This API returns information that reflects current state on the local cluster.
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
+
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>
Copy file name to clipboardExpand all lines: elasticsearch/_async/client/features.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -102,7 +102,7 @@ async def reset_features(
102
102
<p>IMPORTANT: The features installed on the node you submit this request to are the features that will be reset. Run on the master node if you have any doubts about which plugins are installed on individual nodes.</p>
0 commit comments