Return-Path: X-Original-To: apmail-hbase-user-archive@www.apache.org Delivered-To: apmail-hbase-user-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 8A5AAF594 for ; Wed, 3 Apr 2013 18:34:42 +0000 (UTC) Received: (qmail 53527 invoked by uid 500); 3 Apr 2013 18:34:40 -0000 Delivered-To: apmail-hbase-user-archive@hbase.apache.org Received: (qmail 53469 invoked by uid 500); 3 Apr 2013 18:34:40 -0000 Mailing-List: contact user-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user@hbase.apache.org Delivered-To: mailing list user@hbase.apache.org Received: (qmail 53454 invoked by uid 99); 3 Apr 2013 18:34:40 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 03 Apr 2013 18:34:40 +0000 X-ASF-Spam-Status: No, hits=1.5 required=5.0 tests=HTML_MESSAGE,RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of ashnigamtech@gmail.com designates 209.85.219.48 as permitted sender) Received: from [209.85.219.48] (HELO mail-oa0-f48.google.com) (209.85.219.48) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 03 Apr 2013 18:34:35 +0000 Received: by mail-oa0-f48.google.com with SMTP id j1so1865874oag.35 for ; Wed, 03 Apr 2013 11:34:14 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:date:message-id:subject:from:to :content-type; bh=Lrufvrh51dR04zWTlNW69u8XbBQhekG58XqxeSV15wM=; b=Mo8uzN8m020G8t8J1LBBlYPkblorFjdYgvupSEtNrdZcapEWo77EHHH4yYvhs4f+0Q SykKNGFz8Kgpk18bfQlbkBE31niLkapBd7FMUdYlDU32Tn9x0b53+frdT2vG0ePjRwIs UZt0+rB1E972lRZvtMvgChvgmsBAyDwf8JqsTm/pNNok+GR0AQ20D5chpBj9a+L4TKxm 0h2gKLTPXJTiYTReDpJZFRdZxZ8YcZ1n/SAHF3TgtPwrcWFLuWFRb4Z9TxCd679Y3L6k EJ6iZK7A+WM68cYmsb7EAmkF1Yb2KQk5qC9gTxkqshw8Mi+rddp398yqStPYMIb0ZzW1 mVKw== MIME-Version: 1.0 X-Received: by 10.182.123.49 with SMTP id lx17mr1827402obb.63.1365014054610; Wed, 03 Apr 2013 11:34:14 -0700 (PDT) Received: by 10.76.74.161 with HTTP; Wed, 3 Apr 2013 11:34:14 -0700 (PDT) Date: Wed, 3 Apr 2013 11:34:14 -0700 Message-ID: Subject: HBase Column Family TTL and cell deletions From: Ashish Nigam To: user@hbase.apache.org, dev@hbase.apache.org Content-Type: multipart/alternative; boundary=f46d0444eeffd6b16704d97919c5 X-Virus-Checked: Checked by ClamAV on apache.org --f46d0444eeffd6b16704d97919c5 Content-Type: text/plain; charset=ISO-8859-1 Hi, I have a table "service_counters" that has service id as row id. There is a column family "stats-hourly" that stores counters related to that service per hour. I have set TTL to be 7 days for the column family. {NAME => 'service_counters', FAMILIES => [{NAME => 'stats-hourly', COMPRESSION => 'LZO', TTL => '604800'}]} Now the problem is that I still see columns that are more than 7 days old. I have also run major compactions but I still see old rows. Any pointers as to why these columns are not being deleted? Thanks Ashish --f46d0444eeffd6b16704d97919c5--