You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hbase.apache.org by "Yi Mei (Jira)" <ji...@apache.org> on 2020/09/16 09:54:00 UTC

[jira] [Created] (HBASE-25048) [HBCK2] Bypassed parent procedures are not updated in store

Yi Mei created HBASE-25048:
------------------------------

             Summary: [HBCK2] Bypassed parent procedures are not updated in store
                 Key: HBASE-25048
                 URL: https://issues.apache.org/jira/browse/HBASE-25048
             Project: HBase
          Issue Type: Bug
            Reporter: Yi Mei


See code inĀ [ProcedureExecutor|https://github.com/apache/hbase/blob/master/hbase-procedure/src/main/java/org/apache/hadoop/hbase/procedure2/ProcedureExecutor.java#L980]:
{code:java}
Procedure<TEnvironment> current = procedure;
while (current != null) {
  LOG.debug("Bypassing {}", current);
  current.bypass(getEnvironment());
  store.update(procedure);     // update current procedure
  long parentID = current.getParentProcId();
  current = getProcedure(parentID);
}
{code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)