Skip to content

Commit

Permalink
[Docs] Enhance rolling upgrade guide (elastic#49686)
Browse files Browse the repository at this point in the history
Add a couple of pointers for the user to check the
overall cluster health and the version of ES running
on every node.

Fixes: elastic#49670
  • Loading branch information
matriv authored Nov 28, 2019
1 parent cab99c0 commit 8ca11f5
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion docs/reference/upgrade/rolling_upgrade.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,20 @@ recovery completes.
--

When the node has recovered and the cluster is stable, repeat these steps
for each node that needs to be updated.
for each node that needs to be updated. You can monitor the health of the cluster
with a <<cat-health,`_cat/health`>> request:

[source,console]
--------------------------------------------------
GET /_cat/health?v
--------------------------------------------------

And check which nodes have been upgraded with a <<cat-nodes,`_cat/nodes`>> request:

[source,console]
--------------------------------------------------
GET /_cat/nodes?h=ip,name,version&v
--------------------------------------------------

--

Expand Down

0 comments on commit 8ca11f5

Please sign in to comment.