Return-Path: Delivered-To: apmail-cassandra-commits-archive@www.apache.org Received: (qmail 3076 invoked from network); 3 May 2010 16:47:20 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 3 May 2010 16:47:20 -0000 Received: (qmail 82999 invoked by uid 500); 3 May 2010 16:47:20 -0000 Delivered-To: apmail-cassandra-commits-archive@cassandra.apache.org Received: (qmail 82966 invoked by uid 500); 3 May 2010 16:47:20 -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 82958 invoked by uid 99); 3 May 2010 16:47:20 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 03 May 2010 16:47:20 +0000 X-ASF-Spam-Status: No, hits=-1380.4 required=10.0 tests=ALL_TRUSTED,AWL X-Spam-Check-By: apache.org Received: from [140.211.11.22] (HELO thor.apache.org) (140.211.11.22) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 03 May 2010 16:47:19 +0000 Received: from thor (localhost [127.0.0.1]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o43GkxLb028631 for ; Mon, 3 May 2010 16:46:59 GMT Message-ID: <21946367.16151272905219208.JavaMail.jira@thor> Date: Mon, 3 May 2010 12:46:59 -0400 (EDT) From: "Schubert Zhang (JIRA)" To: commits@cassandra.apache.org Subject: [jira] Updated: (CASSANDRA-1041) Skip large size (Configurable) SSTable in minor or/and major compaction In-Reply-To: <26054366.48841272701993486.JavaMail.jira@thor> 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-1041?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Schubert Zhang updated CASSANDRA-1041: -------------------------------------- Attachment: (was: CASSANDRA-1041-0.6.1.patch) > Skip large size (Configurable) SSTable in minor or/and major compaction > ----------------------------------------------------------------------- > > Key: CASSANDRA-1041 > URL: https://issues.apache.org/jira/browse/CASSANDRA-1041 > Project: Cassandra > Issue Type: New Feature > Components: Core > Reporter: Schubert Zhang > Priority: Minor > Attachments: CASSANDRA-1041-0.6.1.patch > > > When the SSTable files are large enough, such as 100GB, the compaction (include minor and major) cost is big (disk IO, CPU, memory), etc. > In some applications, we accept not compcating all SSTables to the final very large ones. > This feature provide two optional configurable attributes MinorCompactSkipInGB and MajorCompactSkipInGB for each ColumnFamily. > The optional MinorCompactSkipInGB attribute specifies the maximum size of SSTables which will be compcated in minor-compaction. The SSTables larger than MinorCompactSkipInGB will be skipped. The optional MajorCompactSkipInGB attribute is same for major-compaction. > The default of these attributes are 0, means do not skip, just as current 0.6.1. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.