Return-Path: Delivered-To: apmail-hadoop-hbase-dev-archive@minotaur.apache.org Received: (qmail 46468 invoked from network); 17 Feb 2009 22:15:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 17 Feb 2009 22:15:23 -0000 Received: (qmail 77373 invoked by uid 500); 17 Feb 2009 22:15:22 -0000 Delivered-To: apmail-hadoop-hbase-dev-archive@hadoop.apache.org Received: (qmail 77356 invoked by uid 500); 17 Feb 2009 22:15:22 -0000 Mailing-List: contact hbase-dev-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: hbase-dev@hadoop.apache.org Delivered-To: mailing list hbase-dev@hadoop.apache.org Received: (qmail 77345 invoked by uid 99); 17 Feb 2009 22:15:22 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Feb 2009 14:15:22 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Feb 2009 22:15:20 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id BB21D234C495 for ; Tue, 17 Feb 2009 14:14:59 -0800 (PST) Message-ID: <1767110487.1234908899765.JavaMail.jira@brutus> Date: Tue, 17 Feb 2009 14:14:59 -0800 (PST) From: "Jonathan Gray (JIRA)" To: hbase-dev@hadoop.apache.org Subject: [jira] Updated: (HBASE-1186) Memory-aware Maps with LRU eviction for Cell Cache In-Reply-To: <1419416203.1233856679675.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HBASE-1186?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jonathan Gray updated HBASE-1186: --------------------------------- Attachment: hbase-1186-v3.patch Working version. Fixes a few small bugs. This patch does not contain the unit test. Will post another patch when that's cleaned up. > Memory-aware Maps with LRU eviction for Cell Cache > -------------------------------------------------- > > Key: HBASE-1186 > URL: https://issues.apache.org/jira/browse/HBASE-1186 > Project: Hadoop HBase > Issue Type: New Feature > Reporter: Jonathan Gray > Assignee: Jonathan Gray > Priority: Critical > Fix For: 0.20.0 > > Attachments: hbase-1186-v2.patch, hbase-1186-v3.patch, HeapSize.java, LruHashMap.java > > > Caching is key for 0.20. We need a set of memory-aware data structures to manage our caches. > I propose two initial classes: LruHashMap and LruBlockMap > *LruHashMap* is currently being used over in HBASE-80 for the Cell cache. Erik Holstad has done extensive testing and benchmarking and will post results over in this issue. > - Memory-aware > - Fixed size > - LRU eviction > *LruBlockMap* can be used for the block caching of the new file format in HBASE-61. It should try to use all available memory, but must contend with Memcaches so is resizable to deal with heap pressure. Adding high priority blocks (evicted last) gives us in-memory functionality as described in bigtable paper. > - Memory-aware > - Fully resizable > - LRU eviction (with some additions) > - High priority blocks > - _Optional: Scan resistant algorithm_ > Part of this issue is also solving how we will determine the size of cached objects. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.