Class NativeFSLockFactory
- java.lang.Object
-
- org.apache.lucene.store.LockFactory
-
- org.apache.lucene.store.FSLockFactory
-
- org.apache.lucene.store.NativeFSLockFactory
-
public class NativeFSLockFactory extends FSLockFactory
Implements
LockFactoryusing native OS file locks. Note that because this LockFactory relies on java.nio.* APIs for locking, any problems with those APIs will cause locking to fail. Specifically, on certain NFS environments the java.nio.* locks will fail (the lock can incorrectly be double acquired) whereasSimpleFSLockFactoryworked perfectly in those same environments. For NFS based access to an index, it's recommended that you trySimpleFSLockFactoryfirst and work around the one limitation that a lock file could be left when the JVM exits abnormally.The primary benefit of
NativeFSLockFactoryis that lock files will be properly removed (by the OS) if the JVM has an abnormal exit.Note that, unlike
SimpleFSLockFactory, the existence of leftover lock files in the filesystem on exiting the JVM is fine because the OS will free the locks held against these files even though the files still remain.If you suspect that this or any other LockFactory is not working properly in your environment, you can easily test it by using
VerifyingLockFactory,LockVerifyServerandLockStressTest.- See Also:
LockFactory
-
-
Constructor Summary
Constructors Constructor Description NativeFSLockFactory()Create a NativeFSLockFactory instance, with null (unset) lock directory.NativeFSLockFactory(java.io.File lockDir)Create a NativeFSLockFactory instance, storing lock files into the specified lockDir:NativeFSLockFactory(java.lang.String lockDirName)Create a NativeFSLockFactory instance, storing lock files into the specified lockDirName:
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclearLock(java.lang.String lockName)Attempt to clear (forcefully unlock and remove) the specified lock.LockmakeLock(java.lang.String lockName)Return a new Lock instance identified by lockName.-
Methods inherited from class org.apache.lucene.store.FSLockFactory
getLockDir, toString
-
Methods inherited from class org.apache.lucene.store.LockFactory
getLockPrefix, setLockPrefix
-
-
-
-
Constructor Detail
-
NativeFSLockFactory
public NativeFSLockFactory()
Create a NativeFSLockFactory instance, with null (unset) lock directory. When you pass this factory to aFSDirectorysubclass, the lock directory is automatically set to the directory itself. Be sure to create one instance for each directory your create!
-
NativeFSLockFactory
public NativeFSLockFactory(java.lang.String lockDirName)
Create a NativeFSLockFactory instance, storing lock files into the specified lockDirName:- Parameters:
lockDirName- where lock files are created.
-
NativeFSLockFactory
public NativeFSLockFactory(java.io.File lockDir)
Create a NativeFSLockFactory instance, storing lock files into the specified lockDir:- Parameters:
lockDir- where lock files are created.
-
-
Method Detail
-
makeLock
public Lock makeLock(java.lang.String lockName)
Description copied from class:LockFactoryReturn a new Lock instance identified by lockName.- Specified by:
makeLockin classLockFactory- Parameters:
lockName- name of the lock to be created.
-
clearLock
public void clearLock(java.lang.String lockName) throws java.io.IOExceptionDescription copied from class:LockFactoryAttempt to clear (forcefully unlock and remove) the specified lock. Only call this at a time when you are certain this lock is no longer in use.- Specified by:
clearLockin classLockFactory- Parameters:
lockName- name of the lock to be cleared.- Throws:
java.io.IOException
-
-