Skip to content
Snippets Groups Projects
Commit 93e5188f authored by Quang-Minh Nguyen's avatar Quang-Minh Nguyen
Browse files

raft: Remove NodeID config

In the previous integration attempt, Raft used a static node ID as a
unique identifier. That approach was deemed ineffective. Gitaly uses
"storage" as an encapsulated functional unit. A server might serve
requests targeting multiple storage at the same time. Adding another ID
system increases the complexity and might conflict with the existing
storage system. In addition, in scenarios like a node joins/re-joins,
re-using a static node ID might need extra handling to avoid conflicts.

As a result, Raft will use an automatic node ID system based on node
joining events instead. This commit removes obsolete NodeID config.
parent 55dfaaba
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment