Return-Path: Delivered-To: apmail-hadoop-hbase-dev-archive@minotaur.apache.org Received: (qmail 58301 invoked from network); 5 Dec 2009 17:09:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 5 Dec 2009 17:09:43 -0000 Received: (qmail 44819 invoked by uid 500); 5 Dec 2009 17:09:43 -0000 Delivered-To: apmail-hadoop-hbase-dev-archive@hadoop.apache.org Received: (qmail 44794 invoked by uid 500); 5 Dec 2009 17:09:43 -0000 Mailing-List: contact hbase-dev-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: hbase-dev@hadoop.apache.org Delivered-To: mailing list hbase-dev@hadoop.apache.org Received: (qmail 44783 invoked by uid 99); 5 Dec 2009 17:09:43 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 05 Dec 2009 17:09:43 +0000 X-ASF-Spam-Status: No, hits=-10.5 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_HI X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 05 Dec 2009 17:09:40 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id AA828234C045 for ; Sat, 5 Dec 2009 09:09:20 -0800 (PST) Message-ID: <1919341781.1260032960683.JavaMail.jira@brutus> Date: Sat, 5 Dec 2009 17:09:20 +0000 (UTC) From: "Lars George (JIRA)" To: hbase-dev@hadoop.apache.org Subject: [jira] Commented: (HBASE-2029) Reduce shell exception dump on console In-Reply-To: <2100101679.1259880140711.JavaMail.jira@brutus> 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-2029?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12786445#action_12786445 ] Lars George commented on HBASE-2029: ------------------------------------ Apart from that I found the reason for the different output. The TableExistsException wraps a RemoteException. This is done so: {code} public static IOException decodeRemoteException(final RemoteException re) throws IOException { IOException i = re; ... Object[] arguments = { re.getMessage() }; Throwable t = (Throwable) ctor.newInstance(arguments); ... {code} The issue here is that re.getMessage() for a remote message is the stack trace! So in the case of my "scan 'e'" test the exception message is "e" as in the table that does not exists. But for the "create 'y', 'y'" it fails on the master and that is wrapped into a local exception and then the message is {code} y at org.apache.hadoop.hbase.master.HMaster.createTable(HMaster.java:793) at org.apache.hadoop.hbase.master.HMaster.createTable(HMaster.java:758) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.apache.hadoop.hbase.ipc.HBaseRPC$Server.call(HBaseRPC.java:648) at org.apache.hadoop.hbase.ipc.HBaseServer$Handler.run(HBaseServer.java:915) {code} So we can either live with this or change how the RemoteException is decoded. > Reduce shell exception dump on console > -------------------------------------- > > Key: HBASE-2029 > URL: https://issues.apache.org/jira/browse/HBASE-2029 > Project: Hadoop HBase > Issue Type: Improvement > Components: scripts > Affects Versions: 0.20.2 > Reporter: Lars George > Assignee: Jean-Daniel Cryans > Priority: Minor > Fix For: 0.21.0 > > Attachments: HBASE-2029-hirb-v2.patch, HBASE-2029-hirb.patch, HBASE-2029.patch > > > As discussed on IRC and seen over and over, the shell is too verbose when it prints Java related exceptions. The huge stack trace on the console is often causing more harm then actually helping. > {noformat} > ... > [11:31pm] larsgeorge: > the only concern is to keep it in sync with new changes and also reduce its stacktrace > [11:31pm] larsgeorge: > that can be quite nasty > [11:31pm] _dodger_: > I've seen a prime example of that on the mailing list today > [11:32pm] larsgeorge: > yeah, those do repeat themselves > [11:32pm] larsgeorge: > also that DEBUG is on by default > [11:33pm] larsgeorge: > mind you, that is a good idea for the daemons > [11:33pm] larsgeorge: > but prolly not the shell > [11:33pm] jdcryans: > I was thinking > [11:33pm] larsgeorge: > maybe we can set ERROR logging level just for the shell when it is started? > [11:34pm] jdcryans: > we should stop printing the stack trace for NSRE > [11:34pm] larsgeorge: > there are a few others of that sort > [11:34pm] larsgeorge: > be it ZK reconnects etc. > [11:35pm] jdcryans: > yeah there's a lot of hbase-generated zk-related noise > {noformat} -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.