我目前正在尝试在 n 台计算机上创建一个由 N 个节点组成的集群。但是(我不是网络专家),在我的办公网络中,组播只允许在特定的 multicasr 组和端口上。
我没有在 crate config 中找到如何指定组 ip,Hazelcast 可以做到这一点。
任何想法 ?多播比单播酷多了。
谢谢。
由于 Crate 使用 Elasticsearch 进行发现(以及许多其他事情),因此配置多播组的方式与在 Elasticsearch 中相同。
将以下内容添加到您的crate.yml
:
discovery.zen.ping.multicast.group: <YOUR_GROUP>
另请参阅https://www.elastic.co/guide/en/elasticsearch/reference/current/modules-discovery-zen.html#multicast
看看 MulticastConfig。
Config config = new Config();
config.getNetworkConfig().getJoin().getMulticastConfig()
.setMulticastGroup(multicastGroup)
.setMulticastPort(multicastPort);
HazelcastInstance hz = Hazelcast.newHazelcastInstance(config);