Return-Path: X-Original-To: apmail-hbase-user-archive@www.apache.org Delivered-To: apmail-hbase-user-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 563E3DD48 for ; Thu, 9 Aug 2012 12:00:51 +0000 (UTC) Received: (qmail 75254 invoked by uid 500); 9 Aug 2012 12:00:49 -0000 Delivered-To: apmail-hbase-user-archive@hbase.apache.org Received: (qmail 74693 invoked by uid 500); 9 Aug 2012 12:00:43 -0000 Mailing-List: contact user-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user@hbase.apache.org Delivered-To: mailing list user@hbase.apache.org Received: (qmail 74640 invoked by uid 99); 9 Aug 2012 12:00:42 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Aug 2012 12:00:42 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=5.0 tests=FSL_RCVD_USER,RCVD_IN_DNSWL_LOW,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [209.85.213.41] (HELO mail-yw0-f41.google.com) (209.85.213.41) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Aug 2012 12:00:35 +0000 Received: by yhr47 with SMTP id 47so417918yhr.14 for ; Thu, 09 Aug 2012 05:00:14 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:x-gm-message-state; bh=vq7MLQywDTQzGQoElCm3LSoBxJyGTjYy+0fSWCgMivc=; b=MKOSBlET/a/r3w2N6Zuv6I8Ds/9f8WXMYvAEzZhOdk2jyBiWyEdQ2pvEEHr5MuGe44 zSBVWLl3Olo8dLJ6iqE/YyynyBOzhsP37dxmmSs2PvSrevzqaaogClIO2co2Qh5hE9xa OSjiYxeyYCT/eVqKVDWEAzAU6tl5noOHE9B/RzDon59l0EGId68Jl2f3jGJ3M2hOEk2D N34uoS09/JlJCzpgCGsPBioZWT30KY7e4UoDM7Nz0DQ7b48zZRKgOoSLvV9yV97TdTjL xiWmHGkFXNsK2dvAmAMBrrXv4R5qwrqqCpcIcY9th3OxbGEuDt+TIzxDIez9znW8MG7+ 8Ntw== MIME-Version: 1.0 Received: by 10.43.45.200 with SMTP id ul8mr16502730icb.36.1344513614585; Thu, 09 Aug 2012 05:00:14 -0700 (PDT) Received: by 10.64.14.196 with HTTP; Thu, 9 Aug 2012 05:00:14 -0700 (PDT) In-Reply-To: <9940EDF3-192D-4D99-9FD1-D509CC341D7E@gmail.com> References: <9940EDF3-192D-4D99-9FD1-D509CC341D7E@gmail.com> Date: Thu, 9 Aug 2012 08:00:14 -0400 Message-ID: Subject: Re: how to delete a zombie table permanently? From: Jean-Marc Spaggiari To: user@hbase.apache.org Content-Type: text/plain; charset=UTF-8 X-Gm-Message-State: ALoCoQluJB/SE0mHsDitGfeyRPn8o9qUHlwOK+6opGjcIviQh0wcwHP0ovj2bNna0Rk+TSco5063 X-Virus-Checked: Checked by ClamAV on apache.org Hi Henry, I faced the same issue not so long time ago... Can you take a look at what you have in zookeeper under /hbase/table ? If you table is there, that's why you see it on the list. Simply remove it from zookeeper. You can also take a look there: https://issues.apache.org/jira/browse/HBASE-6294 JM 2012/8/9, henry.kim : > hi, hbase users. > > I got a problem when I am testing coprocessors which is released at base > 0.92.1. > > here is the hbase shell outputs > > ---------------- > hbase(main):001:0> truncate 'blog' > Truncating 'blog' table (it may take a while): > > ERROR: Unknown table blog! > > Here is some help for this command: > Disables, drops and recreates the specified table. > > > hbase(main):002:0> list > TABLE > > > blog > > > counter > > > sidx > > > 3 row(s) in 15.3610 seconds > ---------------- > > yes, table 'blog' is a zombie I think. > > there was some big stress from coprocessors which is using > RegionServerObserver interfaces. > > how could I fix this situation?