Return-Path: X-Original-To: apmail-cassandra-commits-archive@www.apache.org Delivered-To: apmail-cassandra-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 88D65107F4 for ; Thu, 6 Mar 2014 15:32:50 +0000 (UTC) Received: (qmail 45341 invoked by uid 500); 6 Mar 2014 15:32:49 -0000 Delivered-To: apmail-cassandra-commits-archive@cassandra.apache.org Received: (qmail 45257 invoked by uid 500); 6 Mar 2014 15:32:45 -0000 Mailing-List: contact commits-help@cassandra.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cassandra.apache.org Delivered-To: mailing list commits@cassandra.apache.org Received: (qmail 45103 invoked by uid 99); 6 Mar 2014 15:32:45 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 06 Mar 2014 15:32:45 +0000 Date: Thu, 6 Mar 2014 15:32:44 +0000 (UTC) From: "Benedict (JIRA)" To: commits@cassandra.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (CASSANDRA-5863) Create a Decompressed Chunk [block] Cache 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/CASSANDRA-5863?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13922650#comment-13922650 ] Benedict commented on CASSANDRA-5863: ------------------------------------- bq. Moving hot compressed chunks onto an SSD makes a lot of sense, but think that maybe these are two different tickets? One to bring the page/buffer cache in process, and store it uncompressed, the other to track hot file regions and store them on a cache drive. Just realised this is exactly what [~jbellis] already suggested. I would quite like to have a crack at this for 3.0 using CASSANDRA-6694 as a basis, so that we can move the cache off-heap and retain zero copy behaviour. > Create a Decompressed Chunk [block] Cache > ----------------------------------------- > > Key: CASSANDRA-5863 > URL: https://issues.apache.org/jira/browse/CASSANDRA-5863 > Project: Cassandra > Issue Type: New Feature > Components: Core > Reporter: T Jake Luciani > Assignee: Pavel Yaskevich > Labels: performance > Fix For: 2.1 beta2 > > > Currently, for every read, the CRAR reads each compressed chunk into a byte[], sends it to ICompressor, gets back another byte[] and verifies a checksum. > This process is where the majority of time is spent in a read request. > Before compression, we would have zero-copy of data and could respond directly from the page-cache. > It would be useful to have some kind of Chunk cache that could speed up this process for hot data. Initially this could be a off heap cache but it would be great to put these decompressed chunks onto a SSD so the hot data lives on a fast disk similar to https://github.com/facebook/flashcache. -- This message was sent by Atlassian JIRA (v6.2#6252)