[
https://issues.apache.org/jira/browse/HBASE-12924?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14341769#comment-14341769
]
Hudson commented on HBASE-12924:
--------------------------------
FAILURE: Integrated in HBase-TRUNK #6185 (See
[https://builds.apache.org/job/HBase-TRUNK/6185/])
HBASE-12924 HRegionServer#MovedRegionsCleaner Chore does not start (eclark: rev
daf6858a7ae0aabc7c94cf6feee784337b768c89)
*
hbase-server/src/test/java/org/apache/hadoop/hbase/TestMovedRegionsCleaner.java
*
hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegionServer.java
> HRegionServer#MovedRegionsCleaner Chore does not start
> ------------------------------------------------------
>
> Key: HBASE-12924
> URL: https://issues.apache.org/jira/browse/HBASE-12924
> Project: HBase
> Issue Type: Bug
> Reporter: Jonathan Lawlor
> Assignee: Sameet Agarwal
> Priority: Minor
> Fix For: 2.0.0, 1.1.0
>
> Attachments: first-task-v2.patch, first-task-v3.patch,
> first-task-v4.patch, first-task.patch
>
>
> This issue is very similar to the one described in HBASE-11354. The method
> createAndStart in MovedRegionsCleaner creates an instance of the chore but
> never starts the underlying thread:
> {code}
> static MovedRegionsCleaner createAndStart(HRegionServer rs){
> Stoppable stoppable = new Stoppable() {
> private volatile boolean isStopped = false;
> @Override public void stop(String why) { isStopped = true;}
> @Override public boolean isStopped() {return isStopped;}
> };
> return new MovedRegionsCleaner(rs, stoppable);
> }
> {code}
> Nobody has noticed this issue so far so the Chore may not be that important
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)