Return-Path: Delivered-To: apmail-hadoop-hbase-dev-archive@locus.apache.org Received: (qmail 35860 invoked from network); 21 Aug 2008 23:09:38 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 21 Aug 2008 23:09:38 -0000 Received: (qmail 20653 invoked by uid 500); 21 Aug 2008 23:09:34 -0000 Delivered-To: apmail-hadoop-hbase-dev-archive@hadoop.apache.org Received: (qmail 20382 invoked by uid 500); 21 Aug 2008 23:09:33 -0000 Mailing-List: contact hbase-dev-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: hbase-dev@hadoop.apache.org Delivered-To: mailing list hbase-dev@hadoop.apache.org Received: (qmail 20357 invoked by uid 99); 21 Aug 2008 23:09:33 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Aug 2008 16:09:33 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Aug 2008 23:08:45 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 6DF9F234C1CA for ; Thu, 21 Aug 2008 16:08:44 -0700 (PDT) Message-ID: <1124778328.1219360124449.JavaMail.jira@brutus> Date: Thu, 21 Aug 2008 16:08:44 -0700 (PDT) From: "Jim Kellerman (JIRA)" To: hbase-dev@hadoop.apache.org Subject: [jira] Updated: (HBASE-33) Add a HTable get/obtainScanner method that retrieves all versions of a particular column and row between two timestamps MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HBASE-33?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jim Kellerman updated HBASE-33: ------------------------------- Fix Version/s: (was: 0.18.0) 0.19.0 > Add a HTable get/obtainScanner method that retrieves all versions of a particular column and row between two timestamps > ----------------------------------------------------------------------------------------------------------------------- > > Key: HBASE-33 > URL: https://issues.apache.org/jira/browse/HBASE-33 > Project: Hadoop HBase > Issue Type: New Feature > Components: client > Reporter: Peter Dolan > Assignee: Jim Kellerman > Priority: Blocker > Fix For: 0.19.0 > > > The use case: > * A weblog application for which rows are user ids and posts are stored in a single column, with post date specified by the cell's timestamp. The application would then need to be able to display all posts for the last week or month. > * A feedfetcher for which rows are URLs and feed posts are stored in a single column with the post publish date or fetch time stored in the cell's timestamp. The application would then need to be able to display all posts for the last week or month. > Proposed API: > // Get all versions of the specified row and column whose timestamps are in [minTimestamp, maxTimestamp] > SortedMap getTimestamps(Text row, Text column, long minTimestamp, long maxTimestamp); > // Get all versions of the specified row and column whose timestamps are >= minTimestamp > SortedMap getTimestamps(Text row, Text column, long minTimestamp); > I'd be happy to take this on myself, as I need it for the above use cases before migrating my application over to HBase. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.