sjb
sjb

Reputation: 33

Update Redis from v3.2.12 to v6

I need to upgrade our redis cluster(s) from v3.2.12 to latest (v6). What would be the easiest route for upgrading?

We run Redis as well as Sentinel on each node.

3 node cluster -> 1 master, 2 slaves

Thank you very much

Upvotes: 2

Views: 5083

Answers (1)

Rohit Kumar
Rohit Kumar

Reputation: 719

The upgrade is pretty standard. i would suggest to upgrade in this order.

  1. First upgrade the sentinel nodes which are currently are slaves/replica nodes.
  2. After upgrade is completed, it will sync from master node, note that a node can sync from version 3 to version 6 node but not vice-versa.( You can't go back to earlier version)
  3. Use sentinel to Failover to upgraded node.
  4. Upgrade the old master node.

Upvotes: 3

Related Questions