Docker swarm multiple managers and workers Vs

前端 未结 1 393
无人共我
无人共我 2021-01-02 22:20

I have a 3 node docker swarm cluster. We might want to have 2 managers. I know at one time there is only one leader. Since it is a 3 node cluster, I am trying to find some l

相关标签:
1条回答
  • 2021-01-02 22:46

    A Docker swarm with two managers is not recommended.

    Why?

    Docker swarm implements a RAFT consensus:

    Raft tolerates up to (N-1)/2 failures and requires a majority or quorum of (N/2)+1 members to agree on values proposed to the cluster. This means that in a cluster of 5 Managers running Raft, if 3 nodes are unavailable, the system will not process any more requests to schedule additional tasks

    So with 2 managers, if one is down, the other will not be able to schedule additional tasks (no cluster upgrades, no new services, etc...).

    The docs is also clear about the number of managers you should have for high availability :

    Size your deployment

    To make the cluster tolerant to more failures, add additional replica nodes to your cluster.

    Manager nodes Failures tolerated
        1                 0
        3                 1
        5                 2
        7                 3
    

    So in brief, as the doc states here:

    Adding more managers does NOT mean increased scalability or higher performance. In general, the opposite is true.

    0 讨论(0)
提交回复
热议问题