Package org.apache.accumulo.core.fate
Class AdminUtil.FateStatus
- java.lang.Object
-
- org.apache.accumulo.core.fate.AdminUtil.FateStatus
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,List<String>>
getDanglingHeldLocks()
Get locks that are held by non existent FATE transactions.Map<String,List<String>>
getDanglingWaitingLocks()
Get locks that are waiting to be acquired by non existent FATE transactions.List<AdminUtil.TransactionStatus>
getTransactions()
-
-
-
Method Detail
-
getTransactions
public List<AdminUtil.TransactionStatus> getTransactions()
-
getDanglingHeldLocks
public Map<String,List<String>> getDanglingHeldLocks()
Get locks that are held by non existent FATE transactions. These are table or namespace locks.- Returns:
- map where keys are transaction ids and values are a list of table IDs and/or namespace IDs. The transaction IDs are in the same format as transaction IDs in the Accumulo logs.
-
getDanglingWaitingLocks
public Map<String,List<String>> getDanglingWaitingLocks()
Get locks that are waiting to be acquired by non existent FATE transactions. These are table or namespace locks.- Returns:
- map where keys are transaction ids and values are a list of table IDs and/or namespace IDs. The transaction IDs are in the same format as transaction IDs in the Accumulo logs.
-
-