[Docs] Enhance rolling upgrade guide (#49686)

Add a couple of pointers for the user to check the
overall cluster health and the version of ES running
on every node.

Fixes: #49670

(cherry picked from commit 8ca11f54cd839f41632c556601e94da67e91a3d1)
This commit is contained in:
Marios Trivyzas 2019-11-28 17:00:41 +01:00
parent 1824a2fa58
commit d5842aebab
No known key found for this signature in database
GPG Key ID: 8817B46B0CF36A3F
1 changed files with 14 additions and 1 deletions

View File

@ -163,7 +163,20 @@ recovery completes.
-- --
When the node has recovered and the cluster is stable, repeat these steps 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
--------------------------------------------------
-- --