From commits-return-21677-archive-asf-public=cust-asf.ponee.io@accumulo.apache.org Wed Apr 4 23:46:29 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 7DDF018064F for ; Wed, 4 Apr 2018 23:46:28 +0200 (CEST) Received: (qmail 7000 invoked by uid 500); 4 Apr 2018 21:46:27 -0000 Mailing-List: contact commits-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 commits@accumulo.apache.org Received: (qmail 6991 invoked by uid 99); 4 Apr 2018 21:46:27 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Apr 2018 21:46:27 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 1A0BC80647; Wed, 4 Apr 2018 21:46:27 +0000 (UTC) Date: Wed, 04 Apr 2018 21:46:27 +0000 To: "commits@accumulo.apache.org" Subject: [accumulo] branch 1.8 updated: ACCUMULO-4585 Fix bootstrap_config memory profiles MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <152287838702.16982.3233798830244583223@gitbox.apache.org> From: ctubbsii@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: accumulo X-Git-Refname: refs/heads/1.8 X-Git-Reftype: branch X-Git-Oldrev: 226288b1bd1fe99fbb4d9c078c8b3c6eded57863 X-Git-Newrev: 44d1f4a0eeb585177eac2d9d86d7bb89f25ce898 X-Git-Rev: 44d1f4a0eeb585177eac2d9d86d7bb89f25ce898 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. ctubbsii pushed a commit to branch 1.8 in repository https://gitbox.apache.org/repos/asf/accumulo.git The following commit(s) were added to refs/heads/1.8 by this push: new 44d1f4a ACCUMULO-4585 Fix bootstrap_config memory profiles 44d1f4a is described below commit 44d1f4a0eeb585177eac2d9d86d7bb89f25ce898 Author: Christopher Tubbs AuthorDate: Wed Apr 4 17:35:37 2018 -0400 ACCUMULO-4585 Fix bootstrap_config memory profiles Tweak memory profiles in bootstrap_config script so the block caches, sort buffer, and map memory usage fits into the configured memory for the JVM in the 512MB profile Also tweak the sort buffer for the 2GB profile so it falls somewhere between that of the 1GB and 3GB profile. --- assemble/bin/bootstrap_config.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/assemble/bin/bootstrap_config.sh b/assemble/bin/bootstrap_config.sh index e53b9c2..5c10494 100755 --- a/assemble/bin/bootstrap_config.sh +++ b/assemble/bin/bootstrap_config.sh @@ -155,7 +155,7 @@ _2GB_memoryMapMax="512M" native_2GB_nativeEnabled="true" _2GB_cacheDataSize="30M" _2GB_cacheIndexSize="80M" -_2GB_sortBufferSize="50M" +_2GB_sortBufferSize="100M" _2GB_waLogMaxSize="512M" #Native 3GB @@ -184,8 +184,8 @@ _512MB_shell="${_512MB_other}" _512MB_memoryMapMax="80M" native_512MB_nativeEnabled="true" _512MB_cacheDataSize="7M" -_512MB_cacheIndexSize="20M" -_512MB_sortBufferSize="50M" +_512MB_cacheIndexSize="16M" +_512MB_sortBufferSize="20M" _512MB_waLogMaxSize="100M" #JVM 1GB -- To stop receiving notification emails like this one, please contact ctubbsii@apache.org.