使用 GridGain 连接到网格集群
我知道 GridGain 通过多播开箱即用地连接到其他客户端,但是有没有办法将 GridGain 配置为接受本地网络之外的连接?还有没有办法为通信启用加密?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我知道 GridGain 通过多播开箱即用地连接到其他客户端,但是有没有办法将 GridGain 配置为接受本地网络之外的连接?还有没有办法为通信启用加密?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
Discovery SPI 和 通信 SPI 允许您插入替代的发现和通信机制。
有关更多详细信息,请参阅综合 API 文档 (GridGain 3)。
这在不支持多播的 Amazon EC2 上是必需的。这是一篇讨论此设置的文章。
The Disovery SPI and Communication SPI allows you to plug alternative discovery and communication mechanisms.
For more detail, refer to the comprehensive API documentation (GridGain 3).
This is necessary on Amazon EC2, which doesn't support multicast. Here's an article discussing this setup.
组播只能在特定的网段内正常工作(在某些情况下,出于安全原因甚至不允许这样做)。因此,如果您想将本地网络之外的节点连接到网格,您必须求助于其他传输方式,例如 JMS 或 mail (如果性能是一个问题,您可以使用单播/静态 IP 和 JGroups)。
我认为 JMS 和邮件传输都可以进行加密,具体取决于您的消息代理和邮件设置。
Multicast only works well within a certain network segment (and in some cases this isn't even allowed for security reasons). So if you want to connect nodes to your grid that are outside your local network you have to resort to other transports such as JMS or mail (if performance is an issue you might get it away with unicast/static ip's and JGroups).
I think that encryption is possible with both the JMS and mail transport, depending on your message broker and mail setup.