Ignite WebSession集群不同步数据问题
使用Ignite搭建webSession集群,但是搭建了两台机器,相互间并没有同步数据啊。
下面是配置文件:
<!-- Provide configuration bean. --> <bean id="cacheManager" class="org.apache.ignite.cache.spring.SpringCacheManager"> <property name="configuration"> <bean class="org.apache.ignite.configuration.IgniteConfiguration"> <!-- 客户端模式设置,为true时开启客户端模式 --> <property name="clientMode" value="false"/> <property name="cacheConfiguration"> <bean class="org.apache.ignite.configuration.CacheConfiguration"> <property name="name" value="partitioned"/> <property name="cacheMode" value="REPLICATED"/> <!-- <property name="backups" value="1"/> --> </bean> </property> <property name="discoverySpi"> <!-- <bean class="org.apache.ignite.spi.discovery.tcp.TcpDiscoverySpi"> <property name="ipFinder"> <bean class="org.apache.ignite.spi.discovery.tcp.ipfinder.multicast.TcpDiscoveryMulticastIpFinder"> <property name="multicastGroup" value="224.0.0.100"/> <property name="addresses"> <list> <value>192.168.49.204:47500..47509</value> </list> </property> </bean> </property> </bean> --> <bean class="org.apache.ignite.spi.discovery.tcp.TcpDiscoverySpi"> <property name="ipFinder"> <bean class="org.apache.ignite.spi.discovery.tcp.ipfinder.vm.TcpDiscoveryVmIpFinder"> <property name="addresses"> <list> <value>192.168.49.204</value> <value>192.168.36.116:47500..47509</value> </list> </property> </bean> </property> </bean> </property> </bean> </property> </bean>
控制台会输出一些日志:
2016-11-23 14:20:56,655 INFO [org.apache.ignite.internal.IgniteKernal] - Metrics for local node (to disable set 'metricsLogFrequency' to 0) ^-- Node [id=ceb09c43, name=null, uptime=00:19:00:085] ^-- H/N/C [hosts=2, nodes=2, CPUs=8] ^-- CPU [cur=0.27%, avg=0.89%, GC=0%] ^-- Heap [used=339MB, free=80.64%, comm=704MB] ^-- Non heap [used=85MB, free=-1%, comm=86MB] ^-- Public thread pool [active=0, idle=16, qSize=0] ^-- System thread pool [active=0, idle=16, qSize=0] ^-- Outbound messages queue [size=0]
2016-11-23 14:03:06,291 INFO [org.apache.ignite.internal.processors.cluster.GridUpdateNotifier] - Update status is not available.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
什么版本,是不是默认这些事件消息关闭了,需要打开?我用1.6没什么问题