Return-Path: Delivered-To: apmail-hbase-dev-archive@www.apache.org Received: (qmail 13219 invoked from network); 6 Jul 2010 01:26:31 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 6 Jul 2010 01:26:31 -0000 Received: (qmail 23420 invoked by uid 500); 6 Jul 2010 01:26:31 -0000 Delivered-To: apmail-hbase-dev-archive@hbase.apache.org Received: (qmail 23380 invoked by uid 500); 6 Jul 2010 01:26:30 -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 23370 invoked by uid 99); 6 Jul 2010 01:26:30 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Jul 2010 01:26:30 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=FREEMAIL_FROM,HTML_MESSAGE,NORMAL_HTTP_TO_IP,RCVD_IN_DNSWL_NONE,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL,WEIRD_PORT X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of yuzhihong@gmail.com designates 209.85.212.41 as permitted sender) Received: from [209.85.212.41] (HELO mail-vw0-f41.google.com) (209.85.212.41) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Jul 2010 01:26:23 +0000 Received: by vws1 with SMTP id 1so7788763vws.14 for ; Mon, 05 Jul 2010 18:25:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:content-type; bh=oKw1DzmVG+tmk3QqHdh4OPcpMNWJklU9HMVbVM/iaLg=; b=Cc1POKR9lYYzOYgXvIP5TfwkAo0REmdXcdEoMUEYmO1txpY/mJ8crd5pA5eQp7BBhl C3Vn6jQT47ATA9ypo9SoKiuCUEEpyeSJp2JLfbLTIH9Yz+JN93c77lbiJduSPlUJMP7h cQoa+NkYwMB7oGAKQN42YAg8x2tzl2hWpX124= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=O1eN6g5NVkpuM/2sTPmTK9bz1YmZ06jyzXIJ5cj9CFWHxYHWG7RV3nPpYpnT1rLjNL XQIw+4PqM485u8GupJOUKK7vssIK+ESXJZBW6R4NmfZGx4rM9hd5pUKXIuBxqTYM0grE zlJfadPw/OjTjDYFgIBIcgGX/YPQijh82C9M8= MIME-Version: 1.0 Received: by 10.229.232.67 with SMTP id jt3mr2067452qcb.187.1278379501420; Mon, 05 Jul 2010 18:25:01 -0700 (PDT) Received: by 10.229.189.134 with HTTP; Mon, 5 Jul 2010 18:25:01 -0700 (PDT) In-Reply-To: References: Date: Mon, 5 Jul 2010 18:25:01 -0700 Message-ID: Subject: Re: compiling HBaseFsck.java for 0.20.5 From: Ted Yu To: dev@hbase.apache.org Content-Type: multipart/alternative; boundary=0016364ecb6412002e048aadecb5 X-Virus-Checked: Checked by ClamAV on apache.org --0016364ecb6412002e048aadecb5 Content-Type: text/plain; charset=ISO-8859-1 I assume the conf directory is that of HBase. I use this command previously: bin/hbase hbck I tried this today: bin/hbase org.apache.hadoop.hbase.client.HBaseFsck Result is the same. I do see conf in the classpath: 10/07/05 18:12:32 INFO zookeeper.ZooKeeper: Client environment:java.class.path=/home/hadoop/mmp/234_x/hbase/conf:... ... rootDir: hdfs://sjc9-flash-grid04.carrieriq.com:9000/hbase hdfs:// sjc9-flash-grid04.carrieriq.com:9000/hbase Version: 0.20.5 10/07/05 18:12:32 DEBUG zookeeper.ZooKeeperWrapper: Read ZNode /hbase/root-region-server got 10.32.56.159:60020 10/07/05 18:12:32 DEBUG client.HConnectionManager$TableServers: Found ROOT at 10.32.56.159:60020 10/07/05 18:12:32 DEBUG client.HConnectionManager$TableServers: Cached location for .META.,,1 is 10.32.56.159:60020 Number of Tables: 0 Number of live region servers:2 Number of dead region servers:0 Exception in thread "main" java.lang.IllegalArgumentException: Wrong FS: hdfs://sjc9-flash-grid04.carrieriq.com:9000/hbase, expected: file:/// at org.apache.hadoop.fs.FileSystem.checkPath(FileSystem.java:310) On Mon, Jul 5, 2010 at 10:24 AM, Stack wrote: > Make sure conf directory is in your classpath. If it is, it might the > case that you need something like the below: > > # Set hadoop filesystem configuration using the hbase.rootdir. > # Otherwise, we'll always use localhost though the hbase.rootdir > # might be pointing at hdfs location. > c.set("fs.default.name", c.get(HConstants::HBASE_DIR)) > fs = FileSystem.get(c) > > The above is copied from the jruby scripts in the bin dir...... > > ...though looking at the HBaseFsck it does this. > > So it must be a case of your not setting up the classpath properly? > > You've set the target hdfs in your hbase-site.xml and then you've > launched the script as per: > > ./bin/hbase org.apache.hadoop.hbase.client.HBaseFsck > > (The above will ensure your classpath is set properly). > > St.Ack > > > > On Sat, Jul 3, 2010 at 9:51 AM, Ted Yu wrote: > > I produced patched version of HBaseFsck.java which is attached. > > > > When I ran it, I got: > > > > Version: 0.20.5 > > 10/07/03 09:41:38 DEBUG zookeeper.ZooKeeperWrapper: Read ZNode > > /hbase/root-region-server got 10.32.56.159:60020 > > 10/07/03 09:41:38 DEBUG client.HConnectionManager$TableServers: Found > ROOT > > at 10.32.56.159:60020 > > 10/07/03 09:41:38 DEBUG client.HConnectionManager$TableServers: Cached > > location for .META.,,1 is 10.32.56.160:60020 > > > > Number of Tables: 0 > > Number of live region servers:2 > > Number of dead region servers:0 > > Exception in thread "main" java.lang.IllegalArgumentException: Wrong FS: > > hdfs://sjc9-flash-grid04.carrieriq.com:9000/hbase, expected: file:/// > > at org.apache.hadoop.fs.FileSystem.checkPath(FileSystem.java:310) > > at > > > org.apache.hadoop.fs.RawLocalFileSystem.pathToFile(RawLocalFileSystem.java:47) > > at > > > org.apache.hadoop.fs.RawLocalFileSystem.listStatus(RawLocalFileSystem.java:273) > > at > org.apache.hadoop.fs.FileSystem.listStatus(FileSystem.java:721) > > at > org.apache.hadoop.fs.FileSystem.listStatus(FileSystem.java:746) > > at > > > org.apache.hadoop.fs.ChecksumFileSystem.listStatus(ChecksumFileSystem.java:465) > > at > > org.apache.hadoop.hbase.client.HBaseFsck.checkHdfs(HBaseFsck.java:192) > > at > > org.apache.hadoop.hbase.client.HBaseFsck.doWork(HBaseFsck.java:165) > > at > org.apache.hadoop.hbase.client.HBaseFsck.main(HBaseFsck.java:533) > > 10/07/03 09:41:38 INFO zookeeper.ZooKeeper: Closing session: > > 0x1299926deb30004 > > > > Please comment. > > > > On Sat, Jul 3, 2010 at 7:23 AM, Ted Yu wrote: > >> > >> Hi, > >> I tried to compile HBaseFsck.java for 0.20.5 but got: > >> > >> compile-core: > >> [javac] Compiling 338 source files to > >> /Users/tyu/hbase-0.20.5/build/classes > >> [javac] > >> > /Users/tyu/hbase-0.20.5/src/java/org/apache/hadoop/hbase/client/HBaseFsck.java:95: > >> cannot find symbol > >> [javac] symbol : constructor > >> HBaseAdmin(org.apache.hadoop.conf.Configuration) > >> [javac] location: class org.apache.hadoop.hbase.client.HBaseAdmin > >> [javac] super(conf); > >> [javac] ^ > >> [javac] > >> > /Users/tyu/hbase-0.20.5/src/java/org/apache/hadoop/hbase/client/HBaseFsck.java:447: > >> cannot find symbol > >> [javac] symbol : method > >> > metaScan(org.apache.hadoop.conf.Configuration,org.apache.hadoop.hbase.client.MetaScanner.MetaScannerVisitor) > >> [javac] location: class org.apache.hadoop.hbase.client.MetaScanner > >> [javac] MetaScanner.metaScan(conf, visitor); > >> [javac] ^ > >> [javac] > >> > /Users/tyu/hbase-0.20.5/src/java/org/apache/hadoop/hbase/client/HBaseFsck.java:503: > >> cannot find symbol > >> [javac] symbol : method create() > >> [javac] location: class org.apache.hadoop.hbase.HBaseConfiguration > >> [javac] Configuration conf = HBaseConfiguration.create(); > >> [javac] ^ > >> [javac] Note: Some input files use or override a deprecated API. > >> [javac] Note: Recompile with -Xlint:deprecation for details. > >> [javac] Note: Some input files use unchecked or unsafe operations. > >> [javac] Note: Recompile with -Xlint:unchecked for details. > >> [javac] 3 errors > >> > >> Advice is welcome. > > > > > --0016364ecb6412002e048aadecb5--