Return-Path: Delivered-To: apmail-hadoop-hbase-dev-archive@locus.apache.org Received: (qmail 66974 invoked from network); 27 Jun 2008 21:48:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 27 Jun 2008 21:48:36 -0000 Received: (qmail 41911 invoked by uid 500); 27 Jun 2008 21:48:37 -0000 Delivered-To: apmail-hadoop-hbase-dev-archive@hadoop.apache.org Received: (qmail 41801 invoked by uid 500); 27 Jun 2008 21:48:37 -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 41784 invoked by uid 99); 27 Jun 2008 21:48:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 27 Jun 2008 14:48:37 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED 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; Fri, 27 Jun 2008 21:47:55 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 14A74234C14E for ; Fri, 27 Jun 2008 14:47:45 -0700 (PDT) Message-ID: <1583143640.1214603265081.JavaMail.jira@brutus> Date: Fri, 27 Jun 2008 14:47:45 -0700 (PDT) From: "stack (JIRA)" To: hbase-dev@hadoop.apache.org Subject: [jira] Commented: (HBASE-627) Disable table doesn't work reliably In-Reply-To: <943695514.1210845598592.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/HBASE-627?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12608924#action_12608924 ] stack commented on HBASE-627: ----------------------------- J-D: Did you review Jim's patch also? If you have the time, do so. Give it +/- 1 so Jim can (or cannot) commit. Good stuff. > Disable table doesn't work reliably > ----------------------------------- > > Key: HBASE-627 > URL: https://issues.apache.org/jira/browse/HBASE-627 > Project: Hadoop HBase > Issue Type: Bug > Affects Versions: 0.2.0 > Environment: Hadoop/HBase on two nodes > Reporter: Michaela Buergle > Assignee: Jim Kellerman > Priority: Critical > Fix For: 0.2.0 > > Attachments: disableTable31.log, disableTable5.log, patch.txt, patch.txt > > > When creating a couple of tables like this: > 1) create an empty table > 2) disable table, add new column family, enable table > 3) put 100 small documents into newly created column > around once in 10 tries the disable doesn't happen. > I have no clue as to why the table isn't disabled in the first place, but if this occurs, two things in HBaseAdmin.disableTable() strike me as odd: > - after numRetries tries to wait for disabling we exit the loop; there is no exception or error message: > ... > 2008-05-14 16:19:47,903 INFO org.apache.hadoop.hbase.client.HBaseAdmin: Disabled table table31 > 2008-05-14 16:19:47,910 INFO org.apache.hadoop.ipc.Server: IPC Server handler 3 on 60000, call addColumn(table31, {name: document, max versions: 3, compression: NONE, in memory: false, block cache enabled: false, max length: 2147483647, time to live: FOREVER, bloom filter: none}) from XXX.XX.40.36:47116: error: org.apache.hadoop.hbase.TableNotDisabledException: table31 > ... > - the scanner iterates over HRegionInfos of several tables. If any one of those is disabled, we also leave the loop as if the requested table had been disabled. > I've had this disabling problem occur quite reliably over the last days - today I couldn't reproduce it, though HBase version hasn't changed. ??? -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.