Benak Raj
Benak Raj

Reputation: 328

Apache Ignite Fault Tolerance

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?

Upvotes: 4

Views: 784

Answers (1)

Valentin Kulichenko
Valentin Kulichenko

Reputation: 8390

  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.

Upvotes: 7

Related Questions