Why use Unicast versus Multicast in Weblogic Clusters

后端 未结 5 1519
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-24 02:53

It\'s unclear from the documentation why you should use Unicast rather than Multicast in a WebLogic cluster. Anyone have experience using either and the benefits of moving t

5条回答
  •  旧巷少年郎
    2020-12-24 03:30

    Both multicast and unicast configurations have cluster masters. In addition to a cluster master, unicast has one or more leaders. The cluster leader may or may not be the cluster master.

    Multicast is a broadcast; they do not ping each other like a tcp message. In both unicast and multicast cases, the traffic is usually trivial. But, multicast is almost always the best choice if you network supports it.

    Unicast presents a simpler configuration than multicast in that you don't need multicast support. All routers/switches support TCP, but not all routers/switches support or have multicast enabled. But, unicast generates more network traffic than multicast.

提交回复
热议问题