Gang Yang
Results
2
comments of
Gang Yang
``` public T runWithLock(String database, String table, Callable callable) throws Exception { long lockId = lock(database, table); try { return callable.call(); } finally { unlock(lockId); } } ``` It seems...
> i have faced the same issue, when our hive metastore database got auto upgraded and the lock on hive metastore was not released Thank you for your reply. We...