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 68B9FD2D7 for ; Mon, 22 Oct 2012 17:16:12 +0000 (UTC) Received: (qmail 68186 invoked by uid 500); 22 Oct 2012 17:16:12 -0000 Delivered-To: apmail-cassandra-commits-archive@cassandra.apache.org Received: (qmail 68153 invoked by uid 500); 22 Oct 2012 17:16:12 -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 68143 invoked by uid 99); 22 Oct 2012 17:16:12 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 22 Oct 2012 17:16:12 +0000 Date: Mon, 22 Oct 2012 17:16:12 +0000 (UTC) From: "sankalp kohli (JIRA)" To: commits@cassandra.apache.org Message-ID: <1556358276.10512.1350926172257.JavaMail.jiratomcat@arcas> In-Reply-To: <696244963.17225.1349824202729.JavaMail.jiratomcat@arcas> Subject: [jira] [Commented] (CASSANDRA-4784) Create separate sstables for each token range handled by a node 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-4784?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13481518#comment-13481518 ] sankalp kohli commented on CASSANDRA-4784: ------------------------------------------ Yes it is required. But running repair is easier and cheaper than stores N copies of same data. > Create separate sstables for each token range handled by a node > --------------------------------------------------------------- > > Key: CASSANDRA-4784 > URL: https://issues.apache.org/jira/browse/CASSANDRA-4784 > Project: Cassandra > Issue Type: Improvement > Components: Core > Reporter: sankalp kohli > Priority: Minor > Labels: perfomance > > Currently, each sstable has data for all the ranges that node is handling. If we change that and rather have separate sstables for each range that node is handling, it can lead to some improvements. > Improvements > 1) Node rebuild will be very fast as sstables can be directly copied over to the bootstrapping node. It will minimize any application level logic. We can directly use Linux native methods to transfer sstables without using CPU and putting less pressure on the serving node. I think in theory it will be the fastest way to transfer data. > 2) Backup can only transfer sstables for a node which belong to its primary keyrange. > 3) ETL process can only copy one replica of data and will be much faster. > Changes: > We can split the writes into multiple memtables for each range it is handling. The sstables being flushed from these can have details of which range of data it is handling. > There will be no change I think for any reads as they work with interleaved data anyway. But may be we can improve there as well? > Complexities: > The change does not look very complicated. I am not taking into account how it will work when ranges are being changed for nodes. > Vnodes might make this work more complicated. We can also have a bit on each sstable which says whether it is primary data or not. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators For more information on JIRA, see: http://www.atlassian.com/software/jira