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 C24FB10C6B for ; Sat, 9 Nov 2013 22:56:52 +0000 (UTC) Received: (qmail 8117 invoked by uid 500); 9 Nov 2013 22:56:50 -0000 Delivered-To: apmail-hbase-user-archive@hbase.apache.org Received: (qmail 8072 invoked by uid 500); 9 Nov 2013 22:56:50 -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 8064 invoked by uid 99); 9 Nov 2013 22:56:50 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 09 Nov 2013 22:56:50 +0000 X-ASF-Spam-Status: No, hits=1.5 required=5.0 tests=HTML_MESSAGE,RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy includes SPF record at spf.trusted-forwarder.org) Received: from [209.85.212.53] (HELO mail-vb0-f53.google.com) (209.85.212.53) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 09 Nov 2013 22:56:44 +0000 Received: by mail-vb0-f53.google.com with SMTP id i11so2364747vbh.12 for ; Sat, 09 Nov 2013 14:56:24 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:from:date:message-id:subject:to :content-type; bh=8ES5gpKJ2IcxjpSb4Na7PWmxSY7ZvrFQGGmvyfTuTls=; b=H4rCyNPUzW5VTO9H/fknSbt/alNc85k7AIC7MyBs8Sn5NsVsNYPf0gFfaTrSh2llZa sVU5lLbYhdLxhCeZwE5kPqajkGNULXTbYPSfP3MnnV2er+DrM9CdZJvl2zqFlId4oENj beJUJ9f/ebBCz5IQvAmCdbgrUI1ssI5/nbjS4U8/ppwp8OwH18JwDXf0mxxf3uGeLeuc FniEOozEuCXxi0SfcmPxs4JiV72Ow5MpC7XZ0OAZcpk1Vv+Sb2OrrXfVbwGRKaJr0tec WhKchzLh/nyAoFtDS75p72hc1p8SXGclkBcG6elcsouTSeovaKJSkg4hCQbCE2F4aByk WTYQ== X-Gm-Message-State: ALoCoQmvGpVuVGkdXLLakExVdr/pf9dt3F3hnXcSn1JFLPwvC/5d3ldXE2RktFFt+AmCIxXQtSFV X-Received: by 10.52.230.102 with SMTP id sx6mr14998845vdc.15.1384037783871; Sat, 09 Nov 2013 14:56:23 -0800 (PST) MIME-Version: 1.0 Received: by 10.52.175.202 with HTTP; Sat, 9 Nov 2013 14:56:02 -0800 (PST) From: Jean-Marc Spaggiari Date: Sat, 9 Nov 2013 17:56:02 -0500 Message-ID: Subject: Starting 0.96.0? To: user Content-Type: multipart/alternative; boundary=089e0111ae3476bb5d04eac66827 X-Virus-Checked: Checked by ClamAV on apache.org --089e0111ae3476bb5d04eac66827 Content-Type: text/plain; charset=UTF-8 Hi, when we start 0.96 using bin/start-hbase.sh the following code is executed distMode=`$bin/hbase --config "$HBASE_CONF_DIR" org.apache.hadoop.hbase.util.HBaseConfTool hbase.cluster.distributed | head -n 1` if [ "$distMode" == 'false' ] then "$bin"/hbase-daemon.sh $commandToRun master $@ else "$bin"/hbase-daemons.sh --config "${HBASE_CONF_DIR}" $commandToRun zookeeper "$bin"/hbase-daemon.sh --config "${HBASE_CONF_DIR}" $commandToRun master "$bin"/hbase-daemons.sh --config "${HBASE_CONF_DIR}" \ --hosts "${HBASE_REGIONSERVERS}" $commandToRun regionserver "$bin"/hbase-daemons.sh --config "${HBASE_CONF_DIR}" \ --hosts "${HBASE_BACKUP_MASTERS}" $commandToRun master-backup fi Why are we always starting the zookeeper server? It should not be started if this property is set, right? hbase.cluster.distributed true The mode the cluster will be in. Possible values are false: standalone and pseudo-distributed setups with managed Zookeeper true: fully-distributed with unmanaged Zookeeper Quorum (see hbase-env.sh) I have commented it for my needs, but I'm wondering if it's normal or not to have it. I have a ZK server external to HBase. JM --089e0111ae3476bb5d04eac66827--