Class ZookeeperLockRegistry
java.lang.Object
org.springframework.integration.zookeeper.lock.ZookeeperLockRegistry
- All Implemented Interfaces:
DisposableBean
,ExpirableLockRegistry
,LockRegistry
public class ZookeeperLockRegistry extends Object implements ExpirableLockRegistry, DisposableBean
ExpirableLockRegistry
implementation using Zookeeper, or more specifically,
Curator InterProcessMutex
.- Since:
- 4.2
- Author:
- Gary Russell, Artem Bilan, Vedran Pavic
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
ZookeeperLockRegistry.KeyToPathStrategy
Strategy to convert a lock key (e.g. -
Constructor Summary
Constructors Constructor Description ZookeeperLockRegistry(org.apache.curator.framework.CuratorFramework client)
Construct a lock registry using the defaultZookeeperLockRegistry.KeyToPathStrategy
which simple appends the key to '/SpringIntegration-LockRegistry/'.ZookeeperLockRegistry(org.apache.curator.framework.CuratorFramework client, String root)
Construct a lock registry using the defaultZookeeperLockRegistry.KeyToPathStrategy
which simple appends the key to'<root>/'
.ZookeeperLockRegistry(org.apache.curator.framework.CuratorFramework client, ZookeeperLockRegistry.KeyToPathStrategy keyToPath)
Construct a lock registry using the suppliedZookeeperLockRegistry.KeyToPathStrategy
. -
Method Summary
Modifier and Type Method Description void
destroy()
void
expireUnusedOlderThan(long age)
Remove locks last acquired more than 'age' ago that are not currently locked.Lock
obtain(Object lockKey)
Obtains the lock associated with the parameter object.void
setMutexTaskExecutor(AsyncTaskExecutor mutexTaskExecutor)
Set anAsyncTaskExecutor
to use when establishing (and testing) the connection with Zookeeper.
-
Constructor Details
-
ZookeeperLockRegistry
public ZookeeperLockRegistry(org.apache.curator.framework.CuratorFramework client)Construct a lock registry using the defaultZookeeperLockRegistry.KeyToPathStrategy
which simple appends the key to '/SpringIntegration-LockRegistry/'.- Parameters:
client
- theCuratorFramework
.
-
ZookeeperLockRegistry
Construct a lock registry using the defaultZookeeperLockRegistry.KeyToPathStrategy
which simple appends the key to'<root>/'
.- Parameters:
client
- theCuratorFramework
.root
- the path root (no trailing /).
-
ZookeeperLockRegistry
public ZookeeperLockRegistry(org.apache.curator.framework.CuratorFramework client, ZookeeperLockRegistry.KeyToPathStrategy keyToPath)Construct a lock registry using the suppliedZookeeperLockRegistry.KeyToPathStrategy
.- Parameters:
client
- theCuratorFramework
.keyToPath
- the implementation ofZookeeperLockRegistry.KeyToPathStrategy
.
-
-
Method Details
-
setMutexTaskExecutor
Set anAsyncTaskExecutor
to use when establishing (and testing) the connection with Zookeeper. This must be performed asynchronously so theLock.tryLock(long, TimeUnit)
contract can be honored. While an executor is used internally, an external executor may be required in some environments, for example those that require the use of aWorkManagerTaskExecutor
.- Parameters:
mutexTaskExecutor
- the executor.- Since:
- 4.2.10
-
obtain
Description copied from interface:LockRegistry
Obtains the lock associated with the parameter object.- Specified by:
obtain
in interfaceLockRegistry
- Parameters:
lockKey
- The object with which the lock is associated.- Returns:
- The associated lock.
-
expireUnusedOlderThan
public void expireUnusedOlderThan(long age)Remove locks last acquired more than 'age' ago that are not currently locked. Expiry is not supported if theZookeeperLockRegistry.KeyToPathStrategy
is bounded (returns a finite number of paths). With such aZookeeperLockRegistry.KeyToPathStrategy
, the overhead of tracking when a lock is obtained is avoided.- Specified by:
expireUnusedOlderThan
in interfaceExpirableLockRegistry
- Parameters:
age
- the time since the lock was last obtained.
-
destroy
public void destroy()- Specified by:
destroy
in interfaceDisposableBean
-