This is an automated email from the ASF dual-hosted git repository.
zhangduo pushed a commit to branch branch-2
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/branch-2 by this push:
new 8b5f467 HBASE-23694 After RegionProcedureStore completes migration of
WALProcedureStore, still running WALProcedureStore.syncThread keeps trying to
delete now inexistent log files. (#1048)
8b5f467 is described below
commit 8b5f46771658fe030bdfb5db72709c4ca476bcbf
Author: Wellington Ramos Chevreuil <[email protected]>
AuthorDate: Thu Jan 16 06:12:37 2020 +0000
HBASE-23694 After RegionProcedureStore completes migration of
WALProcedureStore, still running WALProcedureStore.syncThread keeps trying to
delete now inexistent log files. (#1048)
Signed-off-by: Duo Zhang <[email protected]>
---
.../hadoop/hbase/procedure2/store/region/RegionProcedureStore.java | 1 +
1 file changed, 1 insertion(+)
diff --git
a/hbase-server/src/main/java/org/apache/hadoop/hbase/procedure2/store/region/RegionProcedureStore.java
b/hbase-server/src/main/java/org/apache/hadoop/hbase/procedure2/store/region/RegionProcedureStore.java
index 52d8566..0456c92 100644
---
a/hbase-server/src/main/java/org/apache/hadoop/hbase/procedure2/store/region/RegionProcedureStore.java
+++
b/hbase-server/src/main/java/org/apache/hadoop/hbase/procedure2/store/region/RegionProcedureStore.java
@@ -364,6 +364,7 @@ public class RegionProcedureStore extends
ProcedureStoreBase {
throw new IOException("Failed to delete the WALProcedureStore migrated
proc wal directory " +
procWALDir);
}
+ store.stop(true);
LOG.info("Migration of WALProcedureStore finished");
}