@InterfaceAudience.Private public static class TableLockManager.NullTableLockManager extends TableLockManager
TableLockManager.NullTableLockManager, TableLockManager.TableLock
DEFAULT_TABLE_LOCK_EXPIRE_TIMEOUT_MS, DEFAULT_TABLE_READ_LOCK_TIMEOUT_MS, DEFAULT_TABLE_WRITE_LOCK_TIMEOUT_MS, TABLE_LOCK_ENABLE, TABLE_LOCK_EXPIRE_TIMEOUT, TABLE_READ_LOCK_TIMEOUT_MS, TABLE_WRITE_LOCK_TIMEOUT_MS
Constructor and Description |
---|
TableLockManager.NullTableLockManager() |
Modifier and Type | Method and Description |
---|---|
TableLockManager.TableLock |
readLock(TableName tableName,
String purpose)
Returns a TableLock for locking the table for shared access among read-lock holders
|
void |
reapAllExpiredLocks()
Force releases all table locks(read and write) that have been held longer than
"hbase.table.lock.expire.ms".
|
void |
reapWriteLocks()
Force releases table write locks and lock attempts even if this thread does
not own the lock.
|
void |
tableDeleted(TableName tableName)
Called after a table has been deleted, and after the table lock is released.
|
void |
visitAllLocks(InterProcessLock.MetadataHandler handler)
Visits all table locks(read and write), and lock attempts with the given callback
MetadataHandler.
|
TableLockManager.TableLock |
writeLock(TableName tableName,
String purpose)
Returns a TableLock for locking the table for exclusive access
|
createTableLockManager, fromBytes
public TableLockManager.NullTableLockManager()
public TableLockManager.TableLock writeLock(TableName tableName, String purpose)
TableLockManager
writeLock
in class TableLockManager
tableName
- Table to lockpurpose
- Human readable reason for locking the tablepublic TableLockManager.TableLock readLock(TableName tableName, String purpose)
TableLockManager
readLock
in class TableLockManager
tableName
- Table to lockpurpose
- Human readable reason for locking the tablepublic void reapAllExpiredLocks() throws IOException
TableLockManager
reapAllExpiredLocks
in class TableLockManager
IOException
- If there is an unrecoverable errorpublic void reapWriteLocks() throws IOException
TableLockManager
reapWriteLocks
in class TableLockManager
IOException
- If there is an unrecoverable errorpublic void tableDeleted(TableName tableName) throws IOException
TableLockManager
tableDeleted
in class TableLockManager
tableName
- name of the tableIOException
- If there is an unrecoverable error releasing the lockpublic void visitAllLocks(InterProcessLock.MetadataHandler handler) throws IOException
TableLockManager
visitAllLocks
in class TableLockManager
handler
- the metadata handler to callIOException
- If there is an unrecoverable errorCopyright © 2007-2016 The Apache Software Foundation. All Rights Reserved.