Return-Path: X-Original-To: apmail-hbase-dev-archive@www.apache.org Delivered-To: apmail-hbase-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 486387212 for ; Sat, 5 Nov 2011 23:29:15 +0000 (UTC) Received: (qmail 24146 invoked by uid 500); 5 Nov 2011 23:29:14 -0000 Delivered-To: apmail-hbase-dev-archive@hbase.apache.org Received: (qmail 24113 invoked by uid 500); 5 Nov 2011 23:29:14 -0000 Mailing-List: contact dev-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hbase.apache.org Delivered-To: mailing list dev@hbase.apache.org Received: (qmail 24104 invoked by uid 99); 5 Nov 2011 23:29:14 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 05 Nov 2011 23:29:14 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of rvs@cloudera.com designates 209.85.160.169 as permitted sender) Received: from [209.85.160.169] (HELO mail-gy0-f169.google.com) (209.85.160.169) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 05 Nov 2011 23:29:09 +0000 Received: by gyg10 with SMTP id 10so5105786gyg.14 for ; Sat, 05 Nov 2011 16:28:48 -0700 (PDT) MIME-Version: 1.0 Received: by 10.50.185.138 with SMTP id fc10mr26347284igc.33.1320535728131; Sat, 05 Nov 2011 16:28:48 -0700 (PDT) Sender: rvs@cloudera.com Received: by 10.50.181.232 with HTTP; Sat, 5 Nov 2011 16:28:48 -0700 (PDT) In-Reply-To: References: <1320362141.88673.YahooMailNeo@web65504.mail.ac4.yahoo.com> Date: Sat, 5 Nov 2011 16:28:48 -0700 X-Google-Sender-Auth: 1bvTuT6fLP6QWI3XM3V5EmH50uk Message-ID: Subject: Re: HBase 0.92/Hadoop 0.22 test results From: Roman Shaposhnik To: dev@hbase.apache.org Cc: Andrew Purtell Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable On Fri, Nov 4, 2011 at 9:02 PM, Stack wrote: > FYI, the boys fixed hbase-4745 in TRUNK/0.92 branch. Great! I've deployed a cluster from the 0.92 head and all of a sudden started to see the following issue: any attempt at table creation generates the following in the logs: 11/11/05 19:08:48 INFO handler.CreateTableHandler: Attemping to create the table b 11/11/05 19:08:48 ERROR handler.CreateTableHandler: Error trying to create the table b java.io.FileNotFoundException: File hdfs://ip-10-110-254-200.ec2.internal:17020/hbase/b does not exist. at org.apache.hadoop.hdfs.DistributedFileSystem.listStatus(DistributedFile= System.java:387) at org.apache.hadoop.fs.FileSystem.listStatus(FileSystem.java:1085) at org.apache.hadoop.fs.FileSystem.listStatus(FileSystem.java:1110) at org.apache.hadoop.hbase.util.FSTableDescriptors.getTableInfoPath(FSTabl= eDescriptors.java:257) at org.apache.hadoop.hbase.util.FSTableDescriptors.getTableInfoPath(FSTabl= eDescriptors.java:243) at org.apache.hadoop.hbase.util.FSTableDescriptors.createTableDescriptor(F= STableDescriptors.java:566) at org.apache.hadoop.hbase.util.FSTableDescriptors.createTableDescriptor(F= STableDescriptors.java:535) at org.apache.hadoop.hbase.util.FSTableDescriptors.createTableDescriptor(F= STableDescriptors.java:519) at org.apache.hadoop.hbase.master.handler.CreateTableHandler.handleCreateT= able(CreateTableHandler.java:140) at org.apache.hadoop.hbase.master.handler.CreateTableHandler.process(Creat= eTableHandler.java:126) at org.apache.hadoop.hbase.executor.EventHandler.run(EventHandler.java:168= ) at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecut= or.java:886) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.j= ava:908) at java.lang.Thread.run(Thread.java:619) Here's ZK perspective on that same table: [zk: localhost(CONNECTED) 4] get /hbase/table/b =EF=BF=BD#9079@ip-10-110-254-200.ec2.internalENABLING In general, master has no troubles writing to HDFS. I see /hbase/-ROOT-/ and /hbase/.META. and the usual stuff. On top of that it doesn't seem to be HDFS specific at all. Running HBASE in a standalone mode produces the following: 11/11/05 19:27:09 INFO handler.CreateTableHandler: Attemping to create the table h 11/11/05 19:27:09 ERROR handler.CreateTableHandler: Error trying to create the table h java.io.FileNotFoundException: File file:/tmp/hbase-hbase/hbase/h does not exist. Any ideas on what could be going wrong? Thanks, Roman.