사용자 세션을 제어하는 데 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
에 던져되고있다.
이렇게되면 캐시 크기에 대한 정보를 줄 수 있습니까? 또는 테라코타 서버 시작과 비교하여 앱의 수명주기가 맞습니까? –
이 캐시에는 로그인 한 사용자가 포함되어 있으므로 크기를 100 개 미만으로 보장 할 수 있습니다. 테라코타 서버에 비해 내 앱의 라이프 사이클이 무슨 뜻인지 잘 모르겠습니다. – QuakeCore
원래의 예외 원인이 손실 되었기 때문에 ehcache-core-2.6.8.jar에 일부 디버그 메시지를 추가했습니다. – QuakeCore