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 CFEEA200C41 for ; Fri, 24 Mar 2017 17:23:11 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id CE827160B93; Fri, 24 Mar 2017 16:23:11 +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 1F27A160B82 for ; Fri, 24 Mar 2017 17:23:10 +0100 (CET) Received: (qmail 81057 invoked by uid 500); 24 Mar 2017 16:23:08 -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 81045 invoked by uid 99); 24 Mar 2017 16:23:08 -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; Fri, 24 Mar 2017 16:23:08 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 70898DFE5C; Fri, 24 Mar 2017 16:23:08 +0000 (UTC) From: mikewalch To: dev@accumulo.apache.org Reply-To: dev@accumulo.apache.org References: In-Reply-To: Subject: [GitHub] accumulo pull request #235: ACCUMULO-4612 - Simplify Accumulo memory configu... Content-Type: text/plain Message-Id: <20170324162308.70898DFE5C@git1-us-west.apache.org> Date: Fri, 24 Mar 2017 16:23:08 +0000 (UTC) archived-at: Fri, 24 Mar 2017 16:23:12 -0000 Github user mikewalch commented on a diff in the pull request: https://github.com/apache/accumulo/pull/235#discussion_r107943447 --- Diff: INSTALL.md --- @@ -36,62 +36,49 @@ to manage Accumulo: These scripts will be used in the remaining instructions to configure and run Accumulo. For convenience, consider adding `accumulo-X.Y.Z/bin/` to your shell's path. -## Configuring +## Configuring Accumulo -Accumulo has some optional native code that improves its performance and -stability. Before configuring Accumulo, attempt to build this native code -with the following command. +Accumulo requires running [Zookeeper][3] and [HDFS][4] instances which should be set up +before configuring Accumulo. - accumulo-util build-native +The primary configuration files for Accumulo are `accumulo-env.sh` and `accumulo-site.xml` +which are located in the `conf/` directory. -If the command fails, its OK to continue with setup and resolve the issue later. +Follow the steps below to configure `accumulo-site.xml`: -Accumulo is configured by the files `accumulo-site.xml` and `accumulo-env.sh` in the `conf/` -directory. You can either edit these files for your environment or run the command below which will -overwrite them with files configured for your environment. +1. Run `accumulo-util build-native` to build native code. If this command fails, disable + native maps by setting `tserver.memory.maps.native.enabled` to `false`. - accumulo-util create-config +2. Set `instance.volumes` to HDFS location where Accumulo will store data. If your namenode + is running at 192.168.1.9:9000 and you want to store data in `/accumulo` in HDFS, then set --- End diff -- This is now fixed. --- 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. ---