如何将多个 Java 应用程序连接到同一个 Ignite 集群?

How to connect multiple Java applications to same Ignite cluster?

我有三个 Java 应用程序将连接到同一个 Ignite 节点(运行在特定 VM 上)以访问同一个缓存存储。

是否有关于如何运行 Java 应用程序外部的节点(可能是从命令提示符)并将我的 Java 应用程序连接到它的分步过程?

您的 Java 应用程序应充当集群中的客户端节点。有关 client/sever 模式的更多信息,请参阅配置中的 documentation. Server node(s) could be started from command line, it's described here. Information about running with a custom configuration could be found there as well. You need to set up discovery in order to make the entire thing work. It should be done on every node (incl. client nodes). I'd recommend you to use static IP 查找器。