Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Apache Ignite Fault Tolerance

Tags:

ignite

I have few questions about Ignite Cache in Partitioned mode

1)When a node goes down in a Ignite cluster, If the failed node is primary for a key, does the backup of this become new primary?.

2)What happens to the backup copies in the failed node? will they be recreated in the cluster?.

3)If I set CacheRebalanceMode in cache configuration will it be applicable for node failure as well or only in case of node addition?

like image 835
Benak Raj Avatar asked Mar 13 '23 20:03

Benak Raj


1 Answers

  1. Yes, this is right. Former backup will become a new primary and new backup will receive the copy in background.
  2. Yes, if backup is lost, new node will assigned for this role. It will receive the copy in background.
  3. In synchronous rebalance mode a node will not complete start process and user will not be able to use the API until the data is rebalanced. This doesn't affect the rebalancing process in case of failures.
like image 187
Valentin Kulichenko Avatar answered May 16 '23 06:05

Valentin Kulichenko