| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 | [role="xpack"][testenv="platinum"][[ccr-upgrading]]== Upgrading clustersClusters that are actively using {ccr} require a careful approach to upgrades.Otherwise index following may fail during a rolling upgrade, because of thefollowing reasons:* If a new index setting or mapping type is replicated from an upgraded cluster  to a non-upgraded cluster then the non-upgraded cluster will reject that and  will fail index following.* Lucene is not forwards compatible and when index following is falling back to  file based recovery then a node in a non-upgraded cluster will reject index  files from a newer Lucene version compared to what it is using.Rolling upgrading clusters with {ccr} is different in case of uni-directionalindex following and bi-directional index following.[float]=== Uni-directional index followingIn a uni-directional setup between two clusters, one cluster contains onlyleader indices, and the other cluster contains only follower indices followingindices in the first cluster.In this setup, the cluster with follower indices should be upgradedfirst and the cluster with leader indices should be upgraded last.If clusters are upgraded in this order then index following can continueduring the upgrade without downtime.Note that a chain index following setup can also be upgraded in this way.For example if there is a cluster A that contains all leader indices,cluster B that follows indices in cluster A and cluster C that followsindices in cluster B. In this case the cluster C should be upgraded first,then cluster B and finally cluster A.[float]=== Bi-directional index followingIn a bi-directional setup between two clusters, each cluster contains bothleader and follower indices.When upgrading clusters in this setup, all index following needs to be pausedusing the {ref}/ccr-post-pause-follow.html[pause follower API] prior toupgrading both clusters. After both clusters have been upgraded then indexfollowing can be resumed using the{ref}/ccr-post-resume-follow.html[resume follower API]].
 |