2016-08-21 5 views
1

사용자 세션을 제어하는 ​​데 ehcache를 사용하고 있습니다. 사용자 로그인시이 오류가 로그에 표시되는 경우가 있습니다.getKeysWithExpiryCheck() 메서드를 사용할 때 ehcache keySet 시간이 초과되었습니다.

net.sf.ehcache.constructs.nonstop.NonStopCacheException: keySet timed out 
    at net.sf.ehcache.constructs.nonstop.concurrency.NonStopCacheKeySet$NonStopCacheKeySetIterator$1.performClusterOperationTimedOut(NonStopCacheKeySet.java:103) 
    at net.sf.ehcache.constructs.nonstop.concurrency.NonStopCacheKeySet$NonStopCacheKeySetIterator$1.performClusterOperationTimedOut(NonStopCacheKeySet.java:96) 
    at net.sf.ehcache.constructs.nonstop.store.ExecutorServiceStore.executeClusterOperation(ExecutorServiceStore.java:1187) 
    at net.sf.ehcache.constructs.nonstop.store.NonstopStoreImpl.executeClusterOperation(NonstopStoreImpl.java:704) 
    at net.sf.ehcache.constructs.nonstop.concurrency.NonStopCacheKeySet$NonStopCacheKeySetIterator.<init>(NonStopCacheKeySet.java:96) 
    at net.sf.ehcache.constructs.nonstop.concurrency.NonStopCacheKeySet.iterator(NonStopCacheKeySet.java:56) 
    at net.sf.ehcache.Cache.getKeysWithExpiryCheck(v.java:1906) 
... 

official ehcache doucmentation는 말한다 : ".이 방법은 너무 오래 걸리기 때문에, 캐시 설정에 따라 사용량이 만료 된 키 확인이 필요한지 여부를 고려 ...".

그래서이 문서에서 언급 한 시간이 약 1000ms 당 200ms라고 언급했기 때문에이 오류를 막기 위해 늘리는 시간 인 ecache.xml의 시간 제한이 20000ms 이상으로 충분하다고 생각합니다. .

이것은 사용 된 ehcache.xml입니다.

<?xml version="1.0" encoding="UTF-8"?> 

<ehcache name="RelianceCache" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="ehcache.xsd"> 


    <cache name="READ_USERS_CACHE" maxElementsInMemory="0" eternal="true" overflowToDisk="false"> 
     <terracotta clustered="true" valueMode="serialization" consistency="strong"> 
      <nonstop immediateTimeout="false" timeoutMillis="20000"> 
       <timeoutBehavior type="exception" /> 
      </nonstop> 
     </terracotta> 
    </cache> 


    <terracottaConfig url="TSA_SERVERS:TSA_PORT" rejoin="true" /> 
</ehcache> 

편집 : the NonStopCacheKeySet implementation보기는 오류가 방법 NonStopCacheKeySetIterator에 던져되고있다.

+0

이렇게되면 캐시 크기에 대한 정보를 줄 수 있습니까? 또는 테라코타 서버 시작과 비교하여 앱의 수명주기가 맞습니까? –

+0

이 캐시에는 로그인 한 사용자가 포함되어 있으므로 크기를 100 개 미만으로 보장 할 수 있습니다. 테라코타 서버에 비해 내 앱의 라이프 사이클이 무슨 뜻인지 잘 모르겠습니다. – QuakeCore

+0

원래의 예외 원인이 손실 되었기 때문에 ehcache-core-2.6.8.jar에 일부 디버그 메시지를 추가했습니다. – QuakeCore

답변

0

시간을 늘리더라도 문제가 해결되지 않습니다. 100 개 항목의 경우 20 초가 특별합니다.

응용 프로그램 논리 관점에서 적절한 경우 timeoutBehavior를 timeoutBehavior="localReadsAndExceptionOnWrite"으로 변경하는 것이 좋습니다. localCacheEnabled 속성은 기본값 인 TRUE 여야합니다.

... 
    <terracotta clustered="true" localCacheEnabled="true" valueMode="serialization" consistency="strong"> 
     <nonstop immediateTimeout="false" timeoutMillis="20000"> 
      <timeoutBehavior type="localReadsAndExceptionOnWrite" /> 
     </nonstop> 
    </terracotta> 
    ... 

는 또 다른 해결책은 기본값 consistency ="eventual"에 일관성이 변경 될 수 있습니다. 이렇게하면 문제가 해결되지만 캐시에서 반환되는 임시 데이터가 오래 걸릴 수 있습니다.


문서에 "사용량이 만료 된 키 확인 필요 여부 고려 ..."라는 설명이 있습니다. 키 목록을 반복하는 대신 Cache.getKey()를 사용하도록 응용 프로그램 논리를 조정할 수 있습니까?