[ 
https://issues.apache.org/jira/browse/HBASE-14256?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15210798#comment-15210798
 ] 

Hudson commented on HBASE-14256:
--------------------------------

SUCCESS: Integrated in HBase-1.3-IT #580 (See 
[https://builds.apache.org/job/HBase-1.3-IT/580/])
HBASE-14256 Flush task message may be confusing when region is recovered 
(jerryjch: rev 1361a25e6dad87ad41cd1502adc511a5b9263c39)
* hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java


> Flush task message may be confusing when region is recovered
> ------------------------------------------------------------
>
>                 Key: HBASE-14256
>                 URL: https://issues.apache.org/jira/browse/HBASE-14256
>             Project: HBase
>          Issue Type: Bug
>          Components: regionserver
>    Affects Versions: 2.0.0, 1.2.0
>            Reporter: Lars George
>            Assignee: Gabor Liptak
>              Labels: beginner
>             Fix For: 2.0.0, 1.3.0, 1.2.1, 1.4.0
>
>         Attachments: HBASE-14256.1.patch
>
>
> In {{HRegion.setRecovering()}} we have this code:
> {code}
>     // force a flush only if region replication is set up for this region. 
> Otherwise no need.
>       boolean forceFlush = getTableDesc().getRegionReplication() > 1;
>       // force a flush first
>       MonitoredTask status = TaskMonitor.get().createStatus(
>         "Flushing region " + this + " because recovery is finished");
>       try {
>         if (forceFlush) {
>           internalFlushcache(status);
>         }
> {code}
> So we only optionally force flush after a recovery of a region, but the 
> message always is set to "Flushing...", which might be confusing. We should 
> change the message based on {{forceFlush}}.



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

Reply via email to