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 F1936200B25 for ; Wed, 8 Jun 2016 10:54:22 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id F024A160A29; Wed, 8 Jun 2016 08:54:22 +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 6F30F160A54 for ; Wed, 8 Jun 2016 10:54:22 +0200 (CEST) Received: (qmail 26860 invoked by uid 500); 8 Jun 2016 08:54:21 -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 26694 invoked by uid 99); 8 Jun 2016 08:54:21 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Jun 2016 08:54:21 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id F04402C1F5D for ; Wed, 8 Jun 2016 08:54:20 +0000 (UTC) Date: Wed, 8 Jun 2016 08:54:20 +0000 (UTC) From: "ramkrishna.s.vasudevan (JIRA)" To: issues@hbase.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (HBASE-15950) Fix memstore size estimates to be more tighter MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Wed, 08 Jun 2016 08:54:23 -0000 [ https://issues.apache.org/jira/browse/HBASE-15950?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15320257#comment-15320257 ] ramkrishna.s.vasudevan commented on HBASE-15950: ------------------------------------------------ These changes are also based on JOL {code} long prealign_size = OBJECT + coeff[0] + coeff[2] * REFERENCE; {code} {code} ARRAYLIST = align(OBJECT + REFERENCE + (2 * Bytes.SIZEOF_INT)) + align(ARRAY); {code} Rest looks great. The improvement is very significant. > Fix memstore size estimates to be more tighter > ---------------------------------------------- > > Key: HBASE-15950 > URL: https://issues.apache.org/jira/browse/HBASE-15950 > Project: HBase > Issue Type: Bug > Reporter: Enis Soztutar > Assignee: Enis Soztutar > Fix For: 2.0.0 > > Attachments: Screen Shot 2016-06-02 at 8.48.27 PM.png, hbase-15950-v0.patch > > > While testing something else, I was loading a region with a lot of data. Writing 30M cells in 1M rows, with 1 byte values. > The memstore size turned out to be estimated as 4.5GB, while with the JFR profiling I can see that we are using 2.8GB for all the objects in the memstore (KV + KV byte[] + CSLM.Node + CSLM.Index). > This obviously means that there is room in the write cache that we are not effectively using. -- This message was sent by Atlassian JIRA (v6.3.4#6332)