Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 7F9F6200AC8 for ; Tue, 7 Jun 2016 16:47:55 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 7E8AA160A36; Tue, 7 Jun 2016 14:47:55 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id EED67160968 for ; Tue, 7 Jun 2016 16:47:54 +0200 (CEST) Received: (qmail 24842 invoked by uid 500); 7 Jun 2016 14:47:54 -0000 Mailing-List: contact dev-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@accumulo.apache.org Delivered-To: mailing list dev@accumulo.apache.org Received: (qmail 24831 invoked by uid 99); 7 Jun 2016 14:47:53 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Jun 2016 14:47:53 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 7C273DFC6C; Tue, 7 Jun 2016 14:47:53 +0000 (UTC) From: keith-turner To: dev@accumulo.apache.org Reply-To: dev@accumulo.apache.org References: In-Reply-To: Subject: [GitHub] accumulo pull request #110: ACCUMULO-4328: Run multiple tablet servers per h... Content-Type: text/plain Message-Id: <20160607144753.7C273DFC6C@git1-us-west.apache.org> Date: Tue, 7 Jun 2016 14:47:53 +0000 (UTC) archived-at: Tue, 07 Jun 2016 14:47:55 -0000 Github user keith-turner commented on a diff in the pull request: https://github.com/apache/accumulo/pull/110#discussion_r66085082 --- Diff: assemble/bin/accumulo --- @@ -151,10 +151,23 @@ fi # Export the variables just in case they are not exported # This makes them available to java export JAVA_HOME HADOOP_PREFIX ZOOKEEPER_HOME LD_LIBRARY_PATH DYLD_LIBRARY_PATH + --- End diff -- Looking at the script changes, it seems I can run command like the following to start two instances : accumulo tserver-1 accumulo tserver-2 Did I read it correctly? If so, why did you choose this style over something like `accumulo tserver --instance 1`? My guess is that its because the combo of Java and bash in this case is a nightmare :) I don't see this way of running multiple tserver instances documented anywhere in the script itself. Like if just run `accumulo`, it seems like I will not see anything about this option. I was looking around to see where that help message might go, and as AFAICT it would go in `org.apache.accumulo.start.Main`? --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastructure@apache.org or file a JIRA ticket with INFRA. ---