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 has been archived by the owner on Nov 9, 2020. It is now read-only.
Deletion requires shutting down all the replicas. We need to ensure this is done safely so that they don't come back to life.
Option 1) Gossip and a delete flag - Problem: What happens if a namespace of the same name is created concurrently with the namespace deletion process.
Option 2) Two-phase commit for atomic deletion. Problem) Expensive. All nodes must be online and reachable.
Option 3) Root Consensus group for all create and delete operations.
The text was updated successfully, but these errors were encountered:
Deletion requires shutting down all the replicas. We need to ensure this is done safely so that they don't come back to life.
Option 1) Gossip and a delete flag -
Problem: What happens if a namespace of the same name is created concurrently with the namespace deletion process.
Option 2) Two-phase commit for atomic deletion.
Problem) Expensive. All nodes must be online and reachable.
Option 3) Root Consensus group for all create and delete operations.
The text was updated successfully, but these errors were encountered: