Return-Path: Delivered-To: apmail-hadoop-hbase-user-archive@locus.apache.org Received: (qmail 73411 invoked from network); 4 Jul 2008 08:36:03 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 4 Jul 2008 08:36:03 -0000 Received: (qmail 57270 invoked by uid 500); 4 Jul 2008 08:36:04 -0000 Delivered-To: apmail-hadoop-hbase-user-archive@hadoop.apache.org Received: (qmail 57254 invoked by uid 500); 4 Jul 2008 08:36:04 -0000 Mailing-List: contact hbase-user-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: hbase-user@hadoop.apache.org Delivered-To: mailing list hbase-user@hadoop.apache.org Received: (qmail 57243 invoked by uid 99); 4 Jul 2008 08:36:04 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 04 Jul 2008 01:36:04 -0700 X-ASF-Spam-Status: No, hits=-1.0 required=10.0 tests=RCVD_IN_DNSWL_LOW,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of gcjhhu-hbase-user@m.gmane.org designates 80.91.229.2 as permitted sender) Received: from [80.91.229.2] (HELO ciao.gmane.org) (80.91.229.2) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 04 Jul 2008 08:35:12 +0000 Received: from list by ciao.gmane.org with local (Exim 4.43) id 1KEglO-0003Ig-RB for hbase-user@hadoop.apache.org; Fri, 04 Jul 2008 08:35:30 +0000 Received: from adsl-75-12-144-141.dsl.ltrkar.sbcglobal.net ([75.12.144.141]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 04 Jul 2008 08:35:30 +0000 Received: from sales by adsl-75-12-144-141.dsl.ltrkar.sbcglobal.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 04 Jul 2008 08:35:30 +0000 X-Injected-Via-Gmane: http://gmane.org/ To: hbase-user@hadoop.apache.org From: "Billy Pearson" Subject: TableNotFoundException ? on the end of my table name Date: Fri, 4 Jul 2008 03:35:19 -0500 Lines: 39 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: adsl-75-12-144-141.dsl.ltrkar.sbcglobal.net X-MSMail-Priority: Normal X-Newsreader: Microsoft Windows Mail 6.0.6001.18000 X-MimeOLE: Produced By Microsoft MimeOLE V6.0.6001.18000 Sender: news X-Virus-Checked: Checked by ClamAV on apache.org I run a job on a old table webdata that I have had before I updated to latest trunk and everything runs fine then I made a new table just like this one with the name webdata_test and this is what I get in the task logs: 2008-07-04 02:30:06,318 WARN org.apache.hadoop.mapred.TaskTracker: Error running child org.apache.hadoop.hbase.TableNotFoundException: Table 'webdata_test?' was not found. at org.apache.hadoop.hbase.client.HConnectionManager$TableServers.locateRegionInMeta(HConnectionManager.java:534) at org.apache.hadoop.hbase.client.HConnectionManager$TableServers.locateRegion(HConnectionManager.java:470) at org.apache.hadoop.hbase.client.HConnectionManager$TableServers.locateRegion(HConnectionManager.java:430) at org.apache.hadoop.hbase.client.HTable.(HTable.java:124) at org.apache.hadoop.hbase.client.HTable.(HTable.java:97) at com.compspy.mapred.RecordImport$MapClass.getTable(RecordImport.java:50) at com.compspy.mapred.RecordImport$MapClass.map(RecordImport.java:76) at org.apache.hadoop.mapred.MapRunner.run(MapRunner.java:47) at org.apache.hadoop.mapred.MapTask.run(MapTask.java:219) at org.apache.hadoop.mapred.TaskTracker$Child.main(TaskTracker.java:2124) It has a ? on the end of the name and I can not find out why I tryed this with several new tables and all turn out the same error above execpt the old table webdata my job does this HTable table = new HTable(c, new Text("webdata")); no problem but any new table I make I get the above error like when I do this HTable table = new HTable(c, new Text("webdata_test")); I scaned meta with the shell and the name appears correctly there from what I can tell. I have been createing the tables with the shell. Any suggestions on where the ? is comming from?