@ManagedResource(description="File based idempotent repository")
public class FileIdempotentRepository
extends org.apache.camel.support.service.ServiceSupport
implements org.apache.camel.spi.IdempotentRepository
IdempotentRepository.
This implementation provides a 1st-level in-memory LRUCache for fast check of the most
frequently used keys. When add(String) or contains(String) methods are being used
then in case of 1st-level cache miss, the underlying file is scanned which may cost additional performance.
So try to find the right balance of the size of the 1st-level cache, the default size is 1000.
The file store has a maximum capacity of 32mb by default (you can turn this off and have unlimited size).
If the file store grows bigger than the maximum capacity, then the getDropOldestFileStore() (is default 1000)
number of entries from the file store is dropped to reduce the file store and make room for newer entries.| Constructor and Description |
|---|
FileIdempotentRepository() |
FileIdempotentRepository(File fileStore,
Map<String,Object> set) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
add(String key) |
protected void |
appendToStore(String key)
Appends the given key to the file store
|
protected void |
cleanup()
Cleanup the 1st-level cache.
|
void |
clear() |
protected void |
clearStore()
Clears the file-store (danger this deletes all entries)
|
boolean |
confirm(String key) |
boolean |
contains(String key) |
protected boolean |
containsStore(String key)
Checks the file store if the key exists
|
protected void |
doStart() |
protected void |
doStop() |
static org.apache.camel.spi.IdempotentRepository |
fileIdempotentRepository(File fileStore)
Creates a new file based repository using a
LRUCache
as 1st level cache with a default of 1000 entries in the cache. |
static org.apache.camel.spi.IdempotentRepository |
fileIdempotentRepository(File fileStore,
int cacheSize)
Creates a new file based repository using a
LRUCache
as 1st level cache. |
static org.apache.camel.spi.IdempotentRepository |
fileIdempotentRepository(File fileStore,
int cacheSize,
long maxFileStoreSize)
Creates a new file based repository using a
LRUCache
as 1st level cache. |
static org.apache.camel.spi.IdempotentRepository |
fileIdempotentRepository(File store,
Map<String,Object> cache)
Creates a new file based repository using the given
Map
as 1st level cache. |
Map<String,Object> |
getCache() |
int |
getCacheSize() |
long |
getDropOldestFileStore() |
String |
getFilePath() |
File |
getFileStore() |
long |
getMaxFileStoreSize() |
protected void |
loadStore()
Loads the given file store into the 1st level cache
|
boolean |
remove(String key) |
protected void |
removeFromStore(String key) |
void |
reset()
Reset and clears the 1st-level cache to force it to reload from file
|
void |
setCache(Map<String,Object> cache) |
void |
setCacheSize(int size)
Sets the 1st-level cache size.
|
void |
setDropOldestFileStore(long dropOldestFileStore)
Sets the number of oldest entries to drop from the file store when the maximum capacity is hit to reduce
disk space to allow room for new entries.
|
void |
setFileStore(File fileStore) |
void |
setMaxFileStoreSize(long maxFileStoreSize)
Sets the maximum file size for the file store in bytes.
|
protected void |
trunkStore()
Trunks the file store when the max store size is hit by dropping the most oldest entries.
|
build, doBuild, doFail, doInit, doLifecycleChange, doResume, doShutdown, doSuspend, fail, getStatus, init, isBuild, isInit, isNew, isRunAllowed, isShutdown, isStarted, isStarting, isStartingOrStarted, isStopped, isStopping, isStoppingOrStopped, isSuspended, isSuspending, isSuspendingOrSuspended, resume, shutdown, start, stop, suspendclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitadd, confirm, contains, removepublic static org.apache.camel.spi.IdempotentRepository fileIdempotentRepository(File fileStore)
LRUCache
as 1st level cache with a default of 1000 entries in the cache.fileStore - the file storepublic static org.apache.camel.spi.IdempotentRepository fileIdempotentRepository(File fileStore, int cacheSize)
LRUCache
as 1st level cache.fileStore - the file storecacheSize - the cache sizepublic static org.apache.camel.spi.IdempotentRepository fileIdempotentRepository(File fileStore, int cacheSize, long maxFileStoreSize)
LRUCache
as 1st level cache.fileStore - the file storecacheSize - the cache sizemaxFileStoreSize - the max size in bytes for the filestore filepublic static org.apache.camel.spi.IdempotentRepository fileIdempotentRepository(File store, Map<String,Object> cache)
Map
as 1st level cache.
Care should be taken to use a suitable underlying Map to avoid this class being a
memory leak.store - the file storecache - the cache to use as 1st level cache@ManagedOperation(description="Adds the key to the store") public boolean add(String key)
add in interface org.apache.camel.spi.IdempotentRepository@ManagedOperation(description="Does the store contain the given key") public boolean contains(String key)
contains in interface org.apache.camel.spi.IdempotentRepository@ManagedOperation(description="Remove the key from the store") public boolean remove(String key)
remove in interface org.apache.camel.spi.IdempotentRepositorypublic boolean confirm(String key)
confirm in interface org.apache.camel.spi.IdempotentRepository@ManagedOperation(description="Clear the store (danger this removes all entries)") public void clear()
clear in interface org.apache.camel.spi.IdempotentRepositorypublic File getFileStore()
public void setFileStore(File fileStore)
@ManagedAttribute(description="The file path for the store") public String getFilePath()
@ManagedAttribute(description="The maximum file size for the file store in bytes") public long getMaxFileStoreSize()
@ManagedAttribute(description="The maximum file size for the file store in bytes") public void setMaxFileStoreSize(long maxFileStoreSize)
public long getDropOldestFileStore()
@ManagedAttribute(description="Number of oldest elements to drop from file store if maximum file size reached") public void setDropOldestFileStore(long dropOldestFileStore)
public void setCacheSize(int size)
LRUCache cache implementation.@ManagedAttribute(description="The current 1st-level cache size") public int getCacheSize()
@ManagedOperation(description="Reset and reloads the file store")
public void reset()
throws IOException
IOExceptionprotected boolean containsStore(String key)
key - the keyprotected void appendToStore(String key)
key - the keyprotected void removeFromStore(String key)
protected void clearStore()
protected void trunkStore()
protected void cleanup()
protected void loadStore()
throws IOException
IOExceptionprotected void doStart()
throws Exception
doStart in class org.apache.camel.support.service.BaseServiceExceptionApache Camel