千家信息网

Ignite 本地多实例

发表于:2025-01-31 作者:千家信息网编辑
千家信息网最后更新 2025年01月31日,服务端器配置两个不同的XMLexample1.xml:example2.xml:使用TcpDiscoveryZookeeperIpFinder 可以用同一个ZOOKEEPER实例,用不同的路径区分集群
千家信息网最后更新 2025年01月31日Ignite 本地多实例

服务端器配置两个不同的XML
example1.xml:
























example2.xml:























使用TcpDiscoveryZookeeperIpFinder 可以用同一个ZOOKEEPER实例,用不同的路径区分集群
ignite-zookeeper 是一个可选模块,需要从libs/optional 下复制出来才能被IGNITE加入CLASSPATH

然后分别启动
bin\ignite.bat examples\config\example1.xml
bin\ignite.bat examples\config\example2.xml



客户端配置










....















































Ignition.setClientMode(true);
Ignition.start("applicationContext-ignite.xml");
Ignite ignite1 = Ignition.ignite("IgniteCache");
Ignite ignite2 = Ignition.ignite("IgniteCache1");

本地配置需要有多个IgniteConfiguration, 每个对应一个IGNITE集群
每个IgniteConfiguration 中的gridName不同, 对应不同的集群名称
客户端ZookeeperIpFinder的连接字串和路径和对应SERVER匹配
程序中有一个单例IGNITION 但是可以有多个IGNITE实例,每个的名字匹配IgniteConfiguration 中的gridName



注意:如果是本地启动多台SERVER,服务端需要为每台的discoverySpi 和 communicationSpi 配置LOCAL PORT
客户端需要配置communicationSpi的LOCAL PORT,而且和SERVER端不同

0