java - Hazelcast 执行速度较慢

标签 java performance ehcache hazelcast hazelcast-imap

我们正在尝试在我们的应用程序中使用 Hazelcast 作为分布式缓存。这是我们的配置:

<hazelcast xsi:schemaLocation="http://www.hazelcast.com/schema/config hazelcast-config-3.7.xsd" xmlns="http://www.hazelcast.com/schema/config"  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
   <group>
      <name>sample_dev</name>
      <password>dev@123</password>
   </group>
   <management-center enabled="false">http://localhost:8080/mancenter</management-center>
   <properties>
      <property name="hazelcast.logging.type">slf4j</property>
      <property name="hazelcast.socket.bind.any">false</property>
   </properties>
   <serialization>
      <serializers>
         <global-serializer override-java-serialization="true">com.prasanth.common.KryoSerializer</global-serializer>
      </serializers>
   </serialization>
   <network>
      <join>
         <multicast enabled="false"/>
         <tcp-ip enabled="true">
            <member-list>
               <member>127.0.0.1:5701</member>
            </member-list>
         </tcp-ip>
      </join>
      <interfaces enabled="false">
         <interface>192.168.3.*</interface>
      </interfaces>
   </network>
   <map name="com.prasanth.cache.CachedAsset">
      <in-memory-format>BINARY</in-memory-format>
      <backup-count>1</backup-count>
      <async-backup-count>1</async-backup-count>
      <time-to-live-seconds>86400</time-to-live-seconds>
      <max-idle-seconds>1200</max-idle-seconds>
      <eviction-policy>LRU</eviction-policy>
      <max-size policy="PER_NODE">4500</max-size>
      <merge-policy>com.hazelcast.map.merge.LatestUpdateMapMergePolicy</merge-policy>
      <!--<read-backup-data>true</read-backup-data>-->
      <near-cache>
         <in-memory-format>OBJECT</in-memory-format>
         <cache-local-entries>true</cache-local-entries>
         <time-to-live-seconds>86400</time-to-live-seconds>
         <max-idle-seconds>1200</max-idle-seconds>
         <invalidate-on-change>true</invalidate-on-change>
      </near-cache>
   </map>
</hazelcast>

从文档中,我可以看到每次调用 Hazelcast 时,都会涉及反序列化。因此,为了优化调用,我们使用 Kryo 作为默认序列化器并实现了近缓存。我们必须将每个大小为 500KB 的对象放入 map 中,内存中可以有大约 400-500 个这样的 Activity 对象。我们在应用程序中经常使用缓存。

之前我们使用 EhCache 和为缓存实现配置的 JGroups。操作相当快。但是,当我们尝试使用 Hazelcast 时,我发现运行时间存在一些相当大的差异。我可以理解 Hazelcast 不仅仅是一个缓存实现。但只是想知道为什么与 EhCache(使用 jgroups)相比操作变得非常慢。我们所做的配置有问题吗?请推荐!

另请注意,我是在单节点机器上对此进行测试。

最佳答案

所有分布式缓存解决方案都会产生与序列化相关的成本。由于您希望数据位于 JVM 之外,因此没有其他办法。

使用 JGroups 进行复制的 Ehcache 可能通过异步执行复制来隐藏此成本,但您在此设置中实际上一致性保证。

分布式解决方案,无论是使用 Ehcache 还是 Hazelcast,都将提供一致性保证。但这会因一致性强制执行而增加成本。

关于java - Hazelcast 执行速度较慢,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42764205/

相关文章:

hibernate - 使用 Hibernate + Spring 缓存 - 一些问题

xml - 如何在ehcache配置文件中注入(inject)属性?

java - 一个对象的存在,以及在这种情况下会发生什么

java - file.delete() 即使文件可写也返回 false

WCF 协议(protocol)异常

具有最快 "Exists"查找的 C++ 容器( vector/数组/等)

Ubuntu 中的 Java 打印

javascript - 在android webview中删除网页的某些部分然后显示它

mysql - 用于在子查询中求和的备用 mysql 查询

java - Hibernate查询缓存问题