Database cluster and load balancing

后端 未结 4 997
生来不讨喜
生来不讨喜 2020-12-12 09:45

What is database clustering? If you allow the same database to be on 2 different servers how do they keep the data between synchronized. And how does this differ from load b

4条回答
  •  一向
    一向 (楼主)
    2020-12-12 10:32

    Clustering uses shared storage of some kind (a drive cage or a SAN, for example), and puts two database front-ends on it. The front end servers share an IP address and cluster network name that clients use to connect, and they decide between themselves who is currently in charge of serving client requests.

    If you're asking about a particular database server, add that to your question and we can add details on their implementation, but at its core, that's what clustering is.

提交回复
热议问题