[
https://issues.apache.org/jira/browse/HBASE-5929?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13267792#comment-13267792
]
Aravind Gottipati commented on HBASE-5929:
------------------------------------------
Here is the output from hbase shell for a similar table:
hbase(main):004:0> major_compact
'ad_campaign_daily_stumbles,81738:2009-02-08,1269765634190.1290583321'
ERROR: Unknown table
ad_campaign_daily_stumbles,81738:2009-02-08,1269765634190.1290583321!
Here is some help for this command:
Run major compaction on passed table or pass a region row
to major compact an individual region
hbase(main):005:0>
I get these region names by querying the HRegionInterface of the server, and
then proceed to compress them. This is all on the dev cluster (if you want to
replicate/test).
> HBaseAdmin.majorCompact and hbase shell randomly throw exceptions when asked
> to majorcompact regions.
> -----------------------------------------------------------------------------------------------------
>
> Key: HBASE-5929
> URL: https://issues.apache.org/jira/browse/HBASE-5929
> Project: HBase
> Issue Type: Bug
> Components: client, shell
> Affects Versions: 0.92.1
> Environment: Linux Ubuntu Lucid 64bit
> Reporter: Aravind Gottipati
> Priority: Minor
>
> I have been noticing that calls to HBaseAdmin.majorCompact throws exceptions
> randomly for some regions. I could not find a pattern to these exception.
> The code I have simply does this
> admin.majorCompact(region.getRegionNameAsString()). admin is an instance of
> HBaseAdmin and region is an instance of HRegionInfo. The exception I get is
> org.apache.hadoop.hbase.TableNotFoundException: -ROOT-,,0
> at
> org.apache.hadoop.hbase.client.HBaseAdmin.tableNameString(HBaseAdmin.java:1473)
> ~[hbase-0.92.1.jar:0.92.1]
> at
> org.apache.hadoop.hbase.client.HBaseAdmin.compact(HBaseAdmin.java:1235)
> ~[hbase-0.92.1.jar:0.92.1]
> at
> org.apache.hadoop.hbase.client.HBaseAdmin.majorCompact(HBaseAdmin.java:1209)
> ~[hbase-0.92.1.jar:0.92.1]
> at com.stumbleupon.hbaseadmin.HBaseCompact.compactAllServers(Unknown
> Source) [hbase_compact.jar:na]
> In this case it's the root region, but I get similar exceptions for other
> tables, like this.
> 2012-05-03 19:03:42,994 WARN [main] HBaseCompact: Could not compact:
> org.apache.hadoop.hbase.TableNotFoundException:
> ad_daily,49842:2009-07-10,1269763588508.1997607018
> at
> org.apache.hadoop.hbase.client.HBaseAdmin.tableNameString(HBaseAdmin.java:1473)
> ~[hbase-0.92.1.jar:0.92.1]
> at
> org.apache.hadoop.hbase.client.HBaseAdmin.compact(HBaseAdmin.java:1235)
> ~[hbase-0.92.1.jar:0.92.1]
> at
> org.apache.hadoop.hbase.client.HBaseAdmin.majorCompact(HBaseAdmin.java:1209)
> ~[hbase-0.92.1.jar:0.92.1]
> at
> org.apache.hadoop.hbase.client.HBaseAdmin.majorCompact(HBaseAdmin.java:1196)
> ~[hbase-0.92.1.jar:0.92.1]
> at com.stumbleupon.hbaseadmin.HBaseCompact.compactAllServers(Unknown
> Source) [hbase_compact.jar:na]
> at com.stumbleupon.hbaseadmin.HBaseCompact.main(Unknown Source)
> [hbase_compact.jar:na]
> I see this on hbase shell as well. However, I don't see these exceptions if
> I use admin.majorCompact(region.getRegionName()), so it looks like something
> gets lost when I use getRegionNameAsString().
> Let me know if I can provide more information.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira