[
https://issues.apache.org/jira/browse/HBASE-11794?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14108165#comment-14108165
]
Hudson commented on HBASE-11794:
--------------------------------
FAILURE: Integrated in HBase-0.98-on-Hadoop-1.1 #440 (See
[https://builds.apache.org/job/HBase-0.98-on-Hadoop-1.1/440/])
HBASE-11794 StripeStoreFlusher causes NullPointerException (jeongmin kim)
(apurtell: rev b99e2b3e65e8fbed5b3d66ae0d3e0c5d40b82923)
*
hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/StripeStoreFlusher.java
> StripeStoreFlusher causes NullPointerException
> ----------------------------------------------
>
> Key: HBASE-11794
> URL: https://issues.apache.org/jira/browse/HBASE-11794
> Project: HBase
> Issue Type: Bug
> Components: Compaction
> Affects Versions: 0.98.3, 0.98.4, 0.98.5
> Reporter: jeongmin kim
> Assignee: jeongmin kim
> Priority: Critical
> Fix For: 0.99.0, 2.0.0, 0.98.6
>
> Attachments: HBASE_11794-v2.patch, HBASE_11794.patch
>
>
> StoreFlusher.flushSnapshot() mustn't return null value.
> But StripeStoreFlusher.flushSnapshot() does.
> It cause NullPointerException at
> org.apache.hadoop.hbase.regionserver.HStore.flushCache(HStore.java:802)
> and this makes regions dead after exhaustive retries and no recovery
> available from it.
> the code (StripeStoreFlusher:64) has to be changed
> ===============
> from
> List<Path> result = null
> to
> List<Path> result = new ArrayList<Path>();
> ===============
> to return a empty list not null value.
>
--
This message was sent by Atlassian JIRA
(v6.2#6252)