[
https://issues.apache.org/jira/browse/HBASE-10443?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13888693#comment-13888693
]
Andrew Purtell commented on HBASE-10443:
----------------------------------------
The patch is fine.
We don't need a book update.
{noformat}
+ if(family.shouldCompressTags()) {
+ LOG.warn("Compress tags in HFiles disabled in 0.98.0");
+ }
{noformat}
Don't put in version specific messages. Instead, do something like this:
{noformat}
+ if(family.shouldCompressTags()) {
+ LOG.warn("HFile tag compression attribute ignored for '" +
family.getNameAsString() + "', see HBASE-10443");
+ }
{noformat}
Can be fixed up at commit time.
> IndexOutOfBoundExceptions when processing compressed tags in HFile
> ------------------------------------------------------------------
>
> Key: HBASE-10443
> URL: https://issues.apache.org/jira/browse/HBASE-10443
> Project: HBase
> Issue Type: Bug
> Affects Versions: 0.98.0
> Reporter: ramkrishna.s.vasudevan
> Assignee: ramkrishna.s.vasudevan
> Priority: Blocker
> Fix For: 0.98.0
>
> Attachments: HBASE-10443.patch
>
>
> As HBASE-10438 got closed, we still need to fix the Index out of bound
> exception that occurs. If we have a proper fix will fix this, if the bug was
> a false alarm would close this.
--
This message was sent by Atlassian JIRA
(v6.1.5#6160)