You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 7, 2023. It is now read-only.
Make DatabaseManager more fault tolerant in Cluster (typedb#178)
## What is the goal of this PR?
We've introduced a couple of fault tolerance improvements into the Grakn Cluster version of DatabaseManager:
- `contains` and `all` will now try to retrieve information from every node, instead of failing if the first node is down
- `create` and `delete` will now be applied to every working node, even if some nodes are down.
For now, this means `create` will no longer throw if the database already exists, and `delete` will no longer throw if the database doesn't exist.
## What are the changes implemented in this PR?
- `contains` and `all` will now try to retrieve information from every node, instead of failing if the first node is down
- `create` and `delete` will now be applied to every working node, even if some nodes are down.
0 commit comments