Return-Path: X-Original-To: apmail-hbase-issues-archive@www.apache.org Delivered-To: apmail-hbase-issues-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 31F357333 for ; Tue, 18 Oct 2011 20:51:32 +0000 (UTC) Received: (qmail 21114 invoked by uid 500); 18 Oct 2011 20:51:32 -0000 Delivered-To: apmail-hbase-issues-archive@hbase.apache.org Received: (qmail 21081 invoked by uid 500); 18 Oct 2011 20:51:32 -0000 Mailing-List: contact issues-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list issues@hbase.apache.org Received: (qmail 21073 invoked by uid 99); 18 Oct 2011 20:51:32 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 18 Oct 2011 20:51:32 +0000 X-ASF-Spam-Status: No, hits=-2000.5 required=5.0 tests=ALL_TRUSTED,RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.116] (HELO hel.zones.apache.org) (140.211.11.116) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 18 Oct 2011 20:51:30 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id E281230F676 for ; Tue, 18 Oct 2011 20:51:10 +0000 (UTC) Date: Tue, 18 Oct 2011 20:51:10 +0000 (UTC) From: "Ted Yu (Commented) (JIRA)" To: issues@hbase.apache.org Message-ID: <274363653.7846.1318971070929.JavaMail.tomcat@hel.zones.apache.org> In-Reply-To: <77903496.5372.1317683553967.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Commented] (HBASE-4536) Allow CF to retain deleted rows 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/HBASE-4536?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13130013#comment-13130013 ] Ted Yu commented on HBASE-4536: ------------------------------- +1 on patch v12. For Scan.java, I think the following can be removed: {code} // TODO: should have real flag here and check SCAN_VERSION? {code} Javadoc for setRaw() should mention that raw scan shouldn't specify columns: {code} public void setRaw(boolean raw) { {code} For ScanQueryMatcher.java: {code} // keep deleted cells: comaction or raw scan {code} should read: {code} // keep deleted cells: if compaction or raw scan {code} The following: {code} // retain deletes: minor comactions or raw scan {code} should read: {code} // retain deletes: if minor compactions or raw scan {code} > Allow CF to retain deleted rows > ------------------------------- > > Key: HBASE-4536 > URL: https://issues.apache.org/jira/browse/HBASE-4536 > Project: HBase > Issue Type: New Feature > Components: regionserver > Affects Versions: 0.92.0 > Reporter: Lars Hofhansl > Assignee: Lars Hofhansl > Fix For: 0.94.0 > > > Parent allows for a cluster to retain rows for a TTL or keep a minimum number of versions. > However, if a client deletes a row all version older than the delete tomb stone will be remove at the next major compaction (and even at memstore flush - see HBASE-4241). > There should be a way to retain those version to guard against software error. > I see two options here: > 1. Add a new flag HColumnDescriptor. Something like "RETAIN_DELETED". > 2. Folds this into the parent change. I.e. keep minimum-number-of-versions of versions even past the delete marker. > #1 would allow for more flexibility. #2 comes somewhat naturally with parent (from a user viewpoint) > Comments? Any other options? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira