Ignite群集的工作原理

时间:2018-05-10 08:03:39

标签: spring-boot microservices ignite

我是新手阿帕奇点燃。 我的要求是用点火缓存替换coherence缓存。

根据我的理解,使分布式缓存使用下面的缓存配置。

<bean class="org.apache.ignite.spi.discovery.tcp.ipfinder.multicast.TcpDiscoveryMulticastIpFinder">
  <property name="addresses">
    <list>
          <!-- In distributed environment, replace with actual host IP address. -->
          <value>1xx.xxx.xx.xxx</value>
          <value>1xx.xxx.xx.xxx</value>
          <value>1xx.xxx.xx.xxx</value>
          <value>1xx.xxx.xx.xxx</value>
          <value>myapplicationport</value>
    </list>
 </property>
</bean>
具有相同配置的

将spring boot与ignite集成开发了一个微服务并部署在所有4个服务器中。 只能在一台服务器上看到我的微服务启动并运行,而在其他服务器中,点火停止了。

即使我试过没有提供端口只有IP地址。

情况2: 仅部署在具有一个ip in cache配置的服务器中,缓存在部署2天后停止。 应该怎样做才能使缓存始终处于运行状态。 因为我们还计划将DB模式迁移到缓存中。 请帮助解决这个问题

0 个答案:

没有答案