I need to configure my app to swap from the Terracotta server configuration to the diskStore when the Terracotta server is unavailable. Is there a way to do this? When I configure the terracottaConfig element on the ehcache.xml I can't start-up the application if the Terracotta server was unreachable.... This is my ehcache.xml configuration:
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="ehcache.xsd" name="gpCacheManager">
<diskStore path="java.io.tmpdir" />
<terracottaConfig rejoin="true">
<tc-config>
<servers>
<server host="XXX.XXX.XXX.XX" name="host1">
</server>
</servers>
<clients>
<logs>app/logs-%i</logs>
</clients>
<nonstop immediateTimeout="true" timeoutMillis="3000">
<timeoutBehavior type="localReads" />
</nonstop>
</tc-config>
</terracottaConfig>
<defaultCache maxElementsInMemory="10000" eternal="false"
timeToIdleSeconds="120" timeToLiveSeconds="120" overflowToDisk="false"
diskPersistent="false" diskExpiryThreadIntervalSeconds="120"
memoryStoreEvictionPolicy="LRU">
<terracotta clustered="true">
<nonstop immediateTimeout="false" timeoutMillis="3000">
<timeoutBehavior type="localReads" />
</nonstop>
</terracotta>
</defaultCache>
<cache name="oxmCache" maxElementsInMemory="10000" eternal="false"
timeToIdleSeconds="240" timeToLiveSeconds="240" overflowToDisk="false"
diskPersistent="false" diskExpiryThreadIntervalSeconds="240"
memoryStoreEvictionPolicy="LRU">
<terracotta clustered="true">
<nonstop immediateTimeout="false" timeoutMillis="3000">
<timeoutBehavior type="localReads" />
</nonstop>
</terracotta>
</cache>
</ehcache>
Thank you!