Return-Path: X-Original-To: apmail-hbase-issues-archive@www.apache.org Delivered-To: apmail-hbase-issues-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 593A5730B for ; Mon, 7 Nov 2011 05:23:21 +0000 (UTC) Received: (qmail 24650 invoked by uid 500); 7 Nov 2011 05:23:21 -0000 Delivered-To: apmail-hbase-issues-archive@hbase.apache.org Received: (qmail 24467 invoked by uid 500); 7 Nov 2011 05:23:19 -0000 Mailing-List: contact issues-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list issues@hbase.apache.org Received: (qmail 24445 invoked by uid 99); 7 Nov 2011 05:23:15 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 07 Nov 2011 05:23:15 +0000 X-ASF-Spam-Status: No, hits=-2001.2 required=5.0 tests=ALL_TRUSTED,RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.116] (HELO hel.zones.apache.org) (140.211.11.116) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 07 Nov 2011 05:23:11 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id C45FC38685 for ; Mon, 7 Nov 2011 05:22:51 +0000 (UTC) Date: Mon, 7 Nov 2011 05:22:51 +0000 (UTC) From: "Ted Yu (Updated) (JIRA)" To: issues@hbase.apache.org Message-ID: <20380205.5748.1320643371805.JavaMail.tomcat@hel.zones.apache.org> In-Reply-To: <77601179.5735.1320642531640.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Updated] (HBASE-4754) FSTableDescriptors.getTableInfoPath() should be able to handle FileNotFoundException MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/HBASE-4754?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ted Yu updated HBASE-4754: -------------------------- Status: Patch Available (was: Open) > FSTableDescriptors.getTableInfoPath() should be able to handle FileNotFoundException > ------------------------------------------------------------------------------------ > > Key: HBASE-4754 > URL: https://issues.apache.org/jira/browse/HBASE-4754 > Project: HBase > Issue Type: Bug > Reporter: Ted Yu > Assignee: Ted Yu > Fix For: 0.92.0 > > Attachments: 4754.txt > > > As reported by Roman in the thread entitled 'HBase 0.92/Hadoop 0.22 test results', table creation would result in the following if hadoop 0.22 is the underlying platform: > {code} > 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(DistributedFileSystem.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(FSTableDescriptors.java:257) > at org.apache.hadoop.hbase.util.FSTableDescriptors.getTableInfoPath(FSTableDescriptors.java:243) > at org.apache.hadoop.hbase.util.FSTableDescriptors.createTableDescriptor(FSTableDescriptors.java:566) > at org.apache.hadoop.hbase.util.FSTableDescriptors.createTableDescriptor(FSTableDescriptors.java:535) > at org.apache.hadoop.hbase.util.FSTableDescriptors.createTableDescriptor(FSTableDescriptors.java:519) > at org.apache.hadoop.hbase.master.handler.CreateTableHandler.handleCreateTable(CreateTableHandler.java:140) > at org.apache.hadoop.hbase.master.handler.CreateTableHandler.process(CreateTableHandler.java:126) > at org.apache.hadoop.hbase.executor.EventHandler.run(EventHandler.java:168) > at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886) > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908) > at java.lang.Thread.run(Thread.java:619) > {code} > This was due to how DistributedFileSystem.listStatus() in 0.22 handles non-existent directory: > {code} > @Override > public FileStatus[] listStatus(Path p) throws IOException { > String src = getPathName(p); > // fetch the first batch of entries in the directory > DirectoryListing thisListing = dfs.listPaths( > src, HdfsFileStatus.EMPTY_NAME); > if (thisListing == null) { // the directory does not exist > throw new FileNotFoundException("File " + p + " does not exist."); > } > {code} > So in FSTableDescriptors.getTableInfoPath(), we should catch FileNotFoundException and treat it the same way as status being null. -- 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