You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hbase.apache.org by "Jingcheng Du (JIRA)" <ji...@apache.org> on 2016/05/12 09:58:12 UTC

[jira] [Created] (HBASE-15819) Cleanup unused lock in MultiVersionConsistencyControl in branch-1.0 and 1.1

Jingcheng Du created HBASE-15819:
------------------------------------

             Summary: Cleanup unused lock in MultiVersionConsistencyControl in branch-1.0 and 1.1
                 Key: HBASE-15819
                 URL: https://issues.apache.org/jira/browse/HBASE-15819
             Project: HBase
          Issue Type: Bug
          Components: regionserver
            Reporter: Jingcheng Du
            Assignee: Jingcheng Du


In MultiVersionConsistencyControl of branch-1.0 and branch-1.1, there is a unused lock readWaiters, it is only referenced by {{boolean advanceMemstore(WriteEntry e)}},
{code}
    if (nextReadValue > 0) {
      synchronized (readWaiters) {
        readWaiters.notifyAll();
      }
    }
{code}.
Thus the readerWaiters.notifyAll() is not necessary, and could be cleaned up from the code.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)