Return-Path: X-Original-To: apmail-hbase-issues-archive@www.apache.org Delivered-To: apmail-hbase-issues-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 8AA9A10931 for ; Wed, 27 Nov 2013 14:57:44 +0000 (UTC) Received: (qmail 80581 invoked by uid 500); 27 Nov 2013 14:57:38 -0000 Delivered-To: apmail-hbase-issues-archive@hbase.apache.org Received: (qmail 80498 invoked by uid 500); 27 Nov 2013 14:57:37 -0000 Mailing-List: contact issues-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list issues@hbase.apache.org Received: (qmail 80286 invoked by uid 99); 27 Nov 2013 14:57:36 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 27 Nov 2013 14:57:36 +0000 Date: Wed, 27 Nov 2013 14:57:36 +0000 (UTC) From: "Samir Ahmic (JIRA)" To: issues@hbase.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (HBASE-10051) rolling-restart.sh have old value of "zookeeper.znode.unassiged" config causing infinite loop MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 Samir Ahmic created HBASE-10051: ----------------------------------- Summary: rolling-restart.sh have old value of "zookeeper.znode.unassiged" config causing infinite loop Key: HBASE-10051 URL: https://issues.apache.org/jira/browse/HBASE-10051 Project: HBase Issue Type: Bug Components: scripts Affects Versions: 0.96.0 Environment: x86_64 GNU/Linux Reporter: Samir Ahmic While running rolling-restart.sh without arguments or with --master-only argument script throws error when trying to check did all regions are cleared from transition state. Here is line causing error: {code} if [ "$zunassigned" == "null" ]; then zunassigned="unassigned"; fi {code} AFAIK default value of "zookeeper.znode.unassiged" is changed to "region-in-transition". So we should change this line to: {code} if [ "$zunassigned" == "null" ]; then zunassigned="region-in-transition"; fi {code} I will attach patch today. -- This message was sent by Atlassian JIRA (v6.1#6144)