Return-Path: Delivered-To: apmail-hadoop-hbase-user-archive@locus.apache.org Received: (qmail 9805 invoked from network); 4 Jul 2008 10:45:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 4 Jul 2008 10:45:13 -0000 Received: (qmail 27556 invoked by uid 500); 4 Jul 2008 10:45:13 -0000 Delivered-To: apmail-hadoop-hbase-user-archive@hadoop.apache.org Received: (qmail 27543 invoked by uid 500); 4 Jul 2008 10:45:13 -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 27532 invoked by uid 99); 4 Jul 2008 10:45:12 -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 03:45:12 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of jdcryans@gmail.com designates 209.85.146.177 as permitted sender) Received: from [209.85.146.177] (HELO wa-out-1112.google.com) (209.85.146.177) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 04 Jul 2008 10:44:22 +0000 Received: by wa-out-1112.google.com with SMTP id m33so808624wag.9 for ; Fri, 04 Jul 2008 03:44:43 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:in-reply-to:mime-version:content-type:references; bh=t6w64Pl5E6DrjPvyoaf21VNHdk5bjuoQH9hG1tE76p8=; b=rIQznw0zTGimg5BxSLhk/odPXNn/IgBGsR92yoI6sDsGiBo9vDqgZwpceXWSneJS7x IeZPp0Q00ekudYCX/6GkCrwH/ysPWgnlMXp3iKQxq3joANtAVoSbBeThABsJEdPLnvLh eAcSB/nHpF7GCaatZ945TQrC8qWwht20YlP5E= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version :content-type:references; b=A2/SnX89pYkug8GF7ANXuHFSPGOYoVouochg4AJZCjqzbDhNV0FTUBfBUfQQvMhVXl AL9jnmjxk87U54v318+Yi1tov8cnyr2B7RojhT7s6E4Al79Z1mPQBaUAo8TcsZoQMCeX 3+8ZXI1Jd2SIHNaNjvjGttT4ujndc3XHQJgbQ= Received: by 10.114.66.2 with SMTP id o2mr3246469waa.83.1215168282272; Fri, 04 Jul 2008 03:44:42 -0700 (PDT) Received: by 10.114.59.5 with HTTP; Fri, 4 Jul 2008 03:44:42 -0700 (PDT) Message-ID: <31a243e70807040344t5839289dmaf3704623864d560@mail.gmail.com> Date: Fri, 4 Jul 2008 06:44:42 -0400 From: "Jean-Daniel Cryans" To: hbase-user@hadoop.apache.org Subject: Re: TableNotFoundException ? on the end of my table name In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_13846_29022097.1215168282279" References: X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_13846_29022097.1215168282279 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline It really seems shell-related. Can you confirm this on your setup by creating a new table using the Java API or thrift or anything else but the shell? Thx J-D On Fri, Jul 4, 2008 at 4:35 AM, Billy Pearson wrote: > 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? > > ------=_Part_13846_29022097.1215168282279--