Return-Path: Delivered-To: apmail-hadoop-core-dev-archive@www.apache.org Received: (qmail 41508 invoked from network); 24 Jan 2008 23:36:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 24 Jan 2008 23:36:58 -0000 Received: (qmail 10581 invoked by uid 500); 24 Jan 2008 23:36:45 -0000 Delivered-To: apmail-hadoop-core-dev-archive@hadoop.apache.org Received: (qmail 10557 invoked by uid 500); 24 Jan 2008 23:36:45 -0000 Mailing-List: contact core-dev-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: core-dev@hadoop.apache.org Delivered-To: mailing list core-dev@hadoop.apache.org Received: (qmail 10548 invoked by uid 500); 24 Jan 2008 23:36:45 -0000 Delivered-To: apmail-lucene-hadoop-dev@lucene.apache.org Received: (qmail 10545 invoked by uid 99); 24 Jan 2008 23:36:45 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 24 Jan 2008 15:36:45 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 24 Jan 2008 23:36:28 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 771BA714159 for ; Thu, 24 Jan 2008 15:36:34 -0800 (PST) Message-ID: <30712986.1201217794485.JavaMail.jira@brutus> Date: Thu, 24 Jan 2008 15:36:34 -0800 (PST) From: "stack (JIRA)" To: hadoop-dev@lucene.apache.org Subject: [jira] Updated: (HADOOP-2706) HBase Shell crash In-Reply-To: <15994488.1201212093076.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HADOOP-2706?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] stack updated HADOOP-2706: -------------------------- Status: Patch Available (was: Open) Passing via hudson > HBase Shell crash > ----------------- > > Key: HADOOP-2706 > URL: https://issues.apache.org/jira/browse/HADOOP-2706 > Project: Hadoop Core > Issue Type: Bug > Components: contrib/hbase > Environment: Mac OS 10.5.1 > Reporter: Travis Brady > Priority: Blocker > Fix For: 0.16.0 > > Attachments: helpnpe.patch > > > $ bin/hbase shell > Hbase Shell, 0.0.2 version. > Copyright (c) 2007 by udanax, licensed to Apache Software Foundation. > Type 'help;' for usage. > hql > help; > Type 'help COMMAND;' to see command-specific usage. > +-------------------------+-------------------------+-------------------------+ > | Command | Description | Example | > +-------------------------+-------------------------+-------------------------+ > | SHOW | Show information about s| SHOW TABLES [or substitu| > | | elected title | tion variable name]; | > +-------------------------+-------------------------+-------------------------+ > | DELETE | Delete table data | DELETE {column_name, [, | > | | | column_name] ... | *} FR| > | | | OM table_name WHERE row=| > | | | 'row-key'; | > +-------------------------+-------------------------+-------------------------+ > | DROP | Drop tables | DROP TABLE table_name [,| > | | | table_name] ...; | > +-------------------------+-------------------------+-------------------------+ > | ALTER | Alter structure of table| ALTER TABLE table_name A| > | | | DD column_spec | ADD (co| > | | | lumn_spec, column_spec, | > | | | ...) | CHANGE column_fam| > | | | ily column_spec | DROP c| > | | | olumn_family_name | CHAN| > | | | GE column_spec; | > +-------------------------+-------------------------+-------------------------+ > | CLEAR | Clear the screen | CLEAR; | > +-------------------------+-------------------------+-------------------------+ > | JAR | Hadoop RunJar util | JAR jarFile [mainClass] | > | | | arguments...; | > +-------------------------+-------------------------+-------------------------+ > | DESCRIBE | Print table information | [DESCRIBE|DESC] table_na| > | | | me; | > +-------------------------+-------------------------+-------------------------+ > | SELECT | Select values from table| SELECT {column_name, [, | > | | | column_name] ... | expr[| > | | | alias] | * } FROM table_| > | | | name [WHERE row='row_key| > | | | ' | STARTING FROM 'row-k| > | | | ey' [UNTIL 'stop-key']] | > | | | [NUM_VERSIONS = version_| > | | | count] [TIMESTAMP 'times| > | | | tamp'] [LIMIT = row_coun| > | | | t] [INTO FILE 'file_name| > | | | ']; | > +-------------------------+-------------------------+-------------------------+ > | FS | Hadoop FsShell; entering| FS [-option] arguments..| > | | a lone 'FS;' will emit | ; | > | | usage | | > +-------------------------+-------------------------+-------------------------+ > | TRUNCATE | Truncate table is used t| TRUNCATE TABLE table_nam| > | | o clean all data from a | e; | > | | table | | > +-------------------------+-------------------------+-------------------------+ > | EXIT | Exit shell | EXIT; | > +-------------------------+-------------------------+-------------------------+ > | INSERT | Insert values into table| INSERT INTO table_name (| > | | | column_name, ...) VALUES| > | | | ('value', ...) WHERE ro| > | | | w='row_key' [TIMESTAMP '| > | | | timestamp']; | > +-------------------------+-------------------------+-------------------------+ > | CREATE | Create tables | CREATE TABLE table_name | > | | | (column_family_name [MAX| > | | | _VERSIONS=n] [MAX_LENGTH| > | | | =n] [COMPRESSION=NONE|RE| > | | | CORD|BLOCK] [IN_MEMORY] | > | | | [BLOOMFILTER=NONE|BLOOMF| > | | | ILTER|COUNTING_BLOOMFILT| > | | | ER|RETOUCHED_BLOOMFILTER| > | | | VECTOR_SIZE=n NUM_HASH=| > | | | n], ...) | > +-------------------------+-------------------------+-------------------------+ > Exception in thread "main" java.lang.NullPointerException > at org.apache.hadoop.hbase.Shell.main(Shell.java:119) -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.