Class RedisLockRegistry
java.lang.Object
org.springframework.integration.redis.util.RedisLockRegistry
- All Implemented Interfaces:
org.springframework.beans.factory.DisposableBean
,org.springframework.integration.support.locks.ExpirableLockRegistry
,org.springframework.integration.support.locks.LockRegistry
,org.springframework.integration.support.locks.RenewableLockRegistry
public final class RedisLockRegistry
extends Object
implements org.springframework.integration.support.locks.ExpirableLockRegistry, org.springframework.beans.factory.DisposableBean, org.springframework.integration.support.locks.RenewableLockRegistry
Implementation of
ExpirableLockRegistry
providing a distributed lock using Redis.
Locks are stored under the key registryKey:lockKey
. Locks expire after
(default 60) seconds. Threads unlocking an
expired lock will get an IllegalStateException
. This should be
considered as a critical error because it is possible the protected
resources were compromised.
Locks are reentrant.
However, locks are scoped by the registry; a lock from a different registry with the same key (even if the registry uses the same 'registryKey') are different locks, and the second cannot be acquired by the same thread while the first is locked.
Note: This is not intended for low latency applications. It is intended for resource locking across multiple JVMs.
Condition
s are not supported.
- Since:
- 4.0
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enum
The mode in which this registry is going to work with locks. -
Constructor Summary
ConstructorsConstructorDescriptionRedisLockRegistry
(org.springframework.data.redis.connection.RedisConnectionFactory connectionFactory, String registryKey) Constructs a lock registry with the default (60 second) lock expiration.RedisLockRegistry
(org.springframework.data.redis.connection.RedisConnectionFactory connectionFactory, String registryKey, long expireAfter) Constructs a lock registry with the supplied lock expiration. -
Method Summary
Modifier and TypeMethodDescriptionvoid
destroy()
void
expireUnusedOlderThan
(long age) void
void
setCacheCapacity
(int cacheCapacity) Set the capacity of cached locks.void
setExecutor
(Executor executor) Set theExecutor
, where is not provided then a default of cached thread pool Executor will be used.void
setIdleBetweenTries
(Duration idleBetweenTries) Specify a @link Duration} to sleep between obtainLock attempts.void
setRedisLockType
(RedisLockRegistry.RedisLockType redisLockType) SetRedisLockRegistry.RedisLockType
mode to work in.void
setRenewalTaskScheduler
(org.springframework.scheduling.TaskScheduler renewalTaskScheduler) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.springframework.integration.support.locks.LockRegistry
executeLocked, executeLocked, executeLocked, executeLocked
-
Constructor Details
-
RedisLockRegistry
public RedisLockRegistry(org.springframework.data.redis.connection.RedisConnectionFactory connectionFactory, String registryKey) Constructs a lock registry with the default (60 second) lock expiration.- Parameters:
connectionFactory
- The connection factory.registryKey
- The key prefix for locks.
-
RedisLockRegistry
public RedisLockRegistry(org.springframework.data.redis.connection.RedisConnectionFactory connectionFactory, String registryKey, long expireAfter) Constructs a lock registry with the supplied lock expiration.- Parameters:
connectionFactory
- The connection factory.registryKey
- The key prefix for locks.expireAfter
- The expiration in milliseconds.
-
-
Method Details
-
setExecutor
Set theExecutor
, where is not provided then a default of cached thread pool Executor will be used.- Parameters:
executor
- the executor service- Since:
- 5.0.5
-
setRenewalTaskScheduler
public void setRenewalTaskScheduler(org.springframework.scheduling.TaskScheduler renewalTaskScheduler) - Specified by:
setRenewalTaskScheduler
in interfaceorg.springframework.integration.support.locks.RenewableLockRegistry
-
setCacheCapacity
public void setCacheCapacity(int cacheCapacity) Set the capacity of cached locks.- Parameters:
cacheCapacity
- The capacity of cached lock, (default 100_000).- Since:
- 5.5.6
-
setIdleBetweenTries
Specify a @link Duration} to sleep between obtainLock attempts. Defaults to 100 milliseconds.- Parameters:
idleBetweenTries
- theDuration
to sleep between obtainLock attempts.- Since:
- 6.4.0
-
setRedisLockType
SetRedisLockRegistry.RedisLockType
mode to work in. By default, theRedisLockRegistry.RedisLockType.SPIN_LOCK
is used - works in all the environment. TheRedisLockRegistry.RedisLockType.PUB_SUB_LOCK
is a preferred mode when not in Master/Replica connections - less network chatter. Set the type of unlockType, Select the lock method.- Parameters:
redisLockType
- theRedisLockRegistry.RedisLockType
to work in.- Since:
- 5.5.13
-
obtain
- Specified by:
obtain
in interfaceorg.springframework.integration.support.locks.LockRegistry
-
expireUnusedOlderThan
public void expireUnusedOlderThan(long age) - Specified by:
expireUnusedOlderThan
in interfaceorg.springframework.integration.support.locks.ExpirableLockRegistry
-
destroy
public void destroy()- Specified by:
destroy
in interfaceorg.springframework.beans.factory.DisposableBean
-
renewLock
- Specified by:
renewLock
in interfaceorg.springframework.integration.support.locks.RenewableLockRegistry
-