[
https://issues.apache.org/jira/browse/HBASE-12375?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14190532#comment-14190532
]
Hudson commented on HBASE-12375:
--------------------------------
FAILURE: Integrated in HBase-1.0 #390 (See
[https://builds.apache.org/job/HBase-1.0/390/])
HBASE-12375 LoadIncrementalHFiles fails to load data in table when CF name
starts with '_' (stack: rev d8874fbc21525a5af2db3d8b9edd6e67fa1b5572)
*
hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/LoadIncrementalHFiles.java
*
hbase-server/src/test/java/org/apache/hadoop/hbase/mapreduce/TestLoadIncrementalHFiles.java
> LoadIncrementalHFiles fails to load data in table when CF name starts with '_'
> ------------------------------------------------------------------------------
>
> Key: HBASE-12375
> URL: https://issues.apache.org/jira/browse/HBASE-12375
> Project: HBase
> Issue Type: Bug
> Affects Versions: 0.98.5
> Reporter: Ashish Singhi
> Assignee: Ashish Singhi
> Priority: Minor
> Fix For: 2.0.0, 0.98.9, 0.99.2
>
> Attachments: HBASE-12375-0.98.patch, HBASE-12375-v2.patch,
> HBASE-12375.patch
>
>
> We do not restrict user from creating a table having column family starting
> with '_'.
> So when user creates a table in such a way then LoadIncrementalHFiles will
> skip those family data to load into the table.
> {code}
> // Skip _logs, etc
> if (familyDir.getName().startsWith("_")) continue;
> {code}
> I think we should remove that check as I do not see any _logs directory being
> created by the bulkload tool in the output directory.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)