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 23D9D17B33 for ; Fri, 1 May 2015 07:57:07 +0000 (UTC) Received: (qmail 7952 invoked by uid 500); 1 May 2015 07:57:07 -0000 Delivered-To: apmail-cassandra-commits-archive@cassandra.apache.org Received: (qmail 7915 invoked by uid 500); 1 May 2015 07:57:07 -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 7904 invoked by uid 99); 1 May 2015 07:57:06 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 01 May 2015 07:57:06 +0000 Date: Fri, 1 May 2015 07:57:06 +0000 (UTC) From: "Stefania (JIRA)" To: commits@cassandra.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Comment Edited] (CASSANDRA-7066) Simplify (and unify) cleanup of compaction leftovers 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-7066?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14522888#comment-14522888 ] Stefania edited comment on CASSANDRA-7066 at 5/1/15 7:56 AM: ------------------------------------------------------------- I am having doubts on whether we should eliminate temporary files entirely. There is a benefit in knowing if a file is ready for use just by looking at its file name, rather than relying on a transaction log file to find out. I am thinking of cases where the users might move files around, like bulk upload, or standalone operations. I feel a bit uneasy relying on users to also copy the transaction log files. So I would propose still keeping the tmp files, even though they are tracked by the transaction logs. Any thoughts? was (Author: stefania): I am having doubts on whether we should eliminate temporary files entirely. There is a benefit in knowing if a file is ready for use just by looking at its file name, rather than relying on a transaction log file to find out. I am thinking of cases where the users might move files around, like bulk upload, or standalone operations. I feel a bit uneasy relying on users to also coy the transaction log files. So I would propose still keeping the tmp files, even though they are tracked by the transaction logs. Any thoughts? > Simplify (and unify) cleanup of compaction leftovers > ---------------------------------------------------- > > Key: CASSANDRA-7066 > URL: https://issues.apache.org/jira/browse/CASSANDRA-7066 > Project: Cassandra > Issue Type: Improvement > Components: Core > Reporter: Benedict > Assignee: Stefania > Priority: Minor > Labels: compaction > Fix For: 3.x > > > Currently we manage a list of in-progress compactions in a system table, which we use to cleanup incomplete compactions when we're done. The problem with this is that 1) it's a bit clunky (and leaves us in positions where we can unnecessarily cleanup completed files, or conversely not cleanup files that have been superceded); and 2) it's only used for a regular compaction - no other compaction types are guarded in the same way, so can result in duplication if we fail before deleting the replacements. > I'd like to see each sstable store in its metadata its direct ancestors, and on startup we simply delete any sstables that occur in the union of all ancestor sets. This way as soon as we finish writing we're capable of cleaning up any leftovers, so we never get duplication. It's also much easier to reason about. -- This message was sent by Atlassian JIRA (v6.3.4#6332)