我在两个jvm中使用两个点火缓存节点运行一个示例。每个jvm运行一个点燃节点。节点映射到同一个缓存。
点燃-config.xml中
<bean class="org.apache.ignite.configuration.IgniteConfiguration">
...
<property name="cacheConfiguration">
<bean class="org.apache.ignite.configuration.CacheConfiguration">
<!-- Set a cache name. -->
<property name="name" value="cacheName"/>
<!-- Set cache mode. -->
<property name="cacheMode" value="PARTITIONED"/>
<!-- Number of backup nodes. -->
<property name="backups" value="1"/>
...
</bean>
</property>
</bean>
&#13;
测试步骤:
结果:备份节点并没有像我期望的那样拥有10件。为什么?
答案 0 :(得分:0)
我不确定为什么ignitevisorcmd.sh
报告密钥丢失了。我建议你在杀死节点后通过查询来直接查看缓存。或者如Valentin建议,您可以尝试使用IgniteCache.size()