Using Raft cluster in an IIS application #115
Unanswered
simontherry
asked this question in
Q&A
Replies: 1 comment 1 reply
-
@simontherry , the simple answer is to use different domain names. Using the same IIS for hosting multiple nodes violates the key aspect of Raft - nodes must be hosted independently (at least in containers). For instance, if your host with IIS crashed, multiple nodes become unavailable which impacts the entire cluster and the majority. If nodes are running on the same machine, you can use P.S.: The issue converted to discussion. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When using the RAFT HTTP implementation, adding a node is done through cluster.AddMemberAsync, which requires a HTTP endpoint object as input. How does it work when you are running multiple webservices in the same IIS where some of them use this RAFT implementation? Does each of the applications require a different port to be opened? Can they share the 80/443 port?
Beta Was this translation helpful? Give feedback.
All reactions