Return-Path: Delivered-To: apmail-hadoop-hbase-dev-archive@locus.apache.org Received: (qmail 16388 invoked from network); 4 Feb 2008 21:15:34 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 4 Feb 2008 21:15:34 -0000 Received: (qmail 88578 invoked by uid 500); 4 Feb 2008 21:15:26 -0000 Delivered-To: apmail-hadoop-hbase-dev-archive@hadoop.apache.org Received: (qmail 88536 invoked by uid 500); 4 Feb 2008 21:15:26 -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 88500 invoked by uid 99); 4 Feb 2008 21:15:26 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Feb 2008 13:15:26 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Feb 2008 21:15:16 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 24B4271407D for ; Mon, 4 Feb 2008 13:15:09 -0800 (PST) Message-ID: <1913987.1202159709146.JavaMail.jira@brutus> Date: Mon, 4 Feb 2008 13:15:09 -0800 (PST) From: "Bryan Duxbury (JIRA)" To: hbase-dev@hadoop.apache.org Subject: [jira] Updated: (HBASE-33) Add a HTable get 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 ] Bryan Duxbury updated HBASE-33: ------------------------------- Component/s: client > Add a HTable get 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 > Priority: Minor > > 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.