为什么在使用EhCache时,CPU达到100%?

时间:2015-06-03 10:42:09

标签: hibernate caching cpu ehcache

我使用EhCache Hibernate二级缓存和查询缓存。 一切都很好,但CPU我通过JMeter获得100%的最多10个用户。 如果禁用EhCache,则CPU变得合适。 有人对此有何看法? 因此,EhCache不是提高性能,而是加载了我的CPU。

这是我的依赖:

<dependency>
        <groupId>org.hibernate</groupId>
        <artifactId>hibernate-ehcache</artifactId>
        <version>4.3.8.Final</version>
    </dependency>

ehcache.xml中

<?xml version="1.0" encoding="UTF-8"?>
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance "
         xsi:noNamespaceSchemaLocation="ehcache.xsd" updateCheck="true"
         name="cacheManager"
         monitoring="autodetect" dynamicConfig="true">

    <diskStore path="user.home/ehcacheEntriesStore" />

    <defaultCache maxEntriesLocalHeap="100" eternal="false"
                  timeToIdleSeconds="10" timeToLiveSeconds="10" diskSpoolBufferSizeMB="30"
                  maxEntriesLocalDisk="1000" diskExpiryThreadIntervalSeconds="1200"
                  memoryStoreEvictionPolicy="LRU" statistics="false">
        <persistence strategy="localTempSwap"/>
    </defaultCache>

    <cache name="serviceCache"
        maxBytesLocalHeap="500M"
        eternal="false"
        timeToIdleSeconds="300"
        overflowToDisk="true"
        maxElementsOnDisk="1000"
        memoryStoreEvictionPolicy="LRU"/>

    <cache  name="org.hibernate.cache.StandardQueryCache"
            maxEntriesLocalHeap="50000"
            eternal="false"
            timeToLiveSeconds="300">
        <persistence strategy="localTempSwap"/>
    </cache>
    <cache name="org.hibernate.cache.spi.UpdateTimestampsCache"
           maxEntriesLocalHeap="50000" eternal="true">
        <persistence strategy="localTempSwap"/>
    </cache>
</ehcache>

的persistence.xml

<properties>
    <property name="hibernate.dialect" value="org.hibernate.dialect.PostgreSQL9Dialect"/>
    <property name="hibernate.transaction.jta.platform"
              value="org.hibernate.service.jta.platform.internal.JBossAppServerJtaPlatform"/>
    <property name="hibernate.hbm2ddl.auto" value="update"/>
    <property name="hibernate.show_sql" value="true"/>

    <property name="hibernate.cache.region.factory_class"
              value="org.hibernate.cache.ehcache.SingletonEhCacheRegionFactory"/>
    <property name="hibernate.cache.use_second_level_cache" value="true"/>
    <property name="hibernate.cache.use_query_cache" value="true"/>
    <property name="net.sf.ehcache.configurationResourceName" value="ehcache.xml"/>
    <property name="hibernate.cache.default_cache_concurrency_strategy" value="transactional"/>
    <property name="hibernate.max_fetch_depth" value="4"/>
    <property name="hibernate.auto_close_session" value="true"/>
    <!--<property name="hibernate.transaction.flush_before_completion" value="true"/>-->
    <property name="hibernate.transaction.auto_close_session" value="true" />
    <property name="hibernate.c3p0.timeout" value="30" />

    <!--<property name="hibernate.generate_statistics" value="true"/>-->
    <!--<property name="hibernate.cache.use_structured_entries" value="true"/>-->

</properties

&GT;

1 个答案:

答案 0 :(得分:0)

对于Ehcache 3.x,这是一个错误。 缓存统计信息线程池正在为每个统计信息创建一个新线程。因此,线程本身的工作量很少,但是OS正在消耗大部分CPU来创建该线程。

要在以后的版本中修复,但临时解决方法是将系统属性org.ehcache.statisticsExecutor.poolSize设置为1

参考:https://github.com/ehcache/ehcache3/issues/387