You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hbase.apache.org by "Peter Somogyi (Jira)" <ji...@apache.org> on 2020/10/05 14:00:00 UTC

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

     [ https://issues.apache.org/jira/browse/HBASE-25048?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Peter Somogyi reopened HBASE-25048:
-----------------------------------

Reopening to backport to branch-2.2.

> [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
>          Components: hbck2, proc-v2
>            Reporter: Yi Mei
>            Assignee: Junhong Xu
>            Priority: Major
>             Fix For: 3.0.0-alpha-1, 2.3.3, 2.4.0
>
>
> 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)