Return-Path: X-Original-To: apmail-hbase-issues-archive@www.apache.org Delivered-To: apmail-hbase-issues-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id A8AE1112A4 for ; Sun, 8 Jun 2014 21:51:02 +0000 (UTC) Received: (qmail 68062 invoked by uid 500); 8 Jun 2014 21:51:01 -0000 Delivered-To: apmail-hbase-issues-archive@hbase.apache.org Received: (qmail 68010 invoked by uid 500); 8 Jun 2014 21:51:01 -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 67999 invoked by uid 99); 8 Jun 2014 21:51:01 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 08 Jun 2014 21:51:01 +0000 Date: Sun, 8 Jun 2014 21:51:01 +0000 (UTC) From: "Andrew Purtell (JIRA)" To: issues@hbase.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Resolved] (HBASE-68) [hbase] HStoreFiles needlessly store the column family name in every entry MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/HBASE-68?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Andrew Purtell resolved HBASE-68. --------------------------------- Resolution: Not a Problem Use block encoding > [hbase] HStoreFiles needlessly store the column family name in every entry > -------------------------------------------------------------------------- > > Key: HBASE-68 > URL: https://issues.apache.org/jira/browse/HBASE-68 > Project: HBase > Issue Type: Improvement > Components: regionserver > Reporter: Bryan Duxbury > Priority: Minor > > Today, HStoreFiles keep the entire serialized HStoreKey objects around for every cell in the HStore. Since HStores are 1-1 with column families, this is really unnecessary - you can always surmise the column family by looking at the HStore it belongs to. (This information would ostensibly come from the file name or a header section.) This means that we could remove the column family part of the HStoreKeys we put into the HStoreFile, reducing the size of data stored. This would be a space-saving benefit, removing redundant data, and could be a speed benefit, as you have to scan over less data in memory and transfer less data over the network. -- This message was sent by Atlassian JIRA (v6.2#6252)