Return-Path: Delivered-To: apmail-lucene-hadoop-dev-archive@locus.apache.org Received: (qmail 27206 invoked from network); 8 Jan 2008 22:54:55 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 8 Jan 2008 22:54:55 -0000 Received: (qmail 55132 invoked by uid 500); 8 Jan 2008 22:54:45 -0000 Delivered-To: apmail-lucene-hadoop-dev-archive@lucene.apache.org Received: (qmail 54739 invoked by uid 500); 8 Jan 2008 22:54:44 -0000 Mailing-List: contact hadoop-dev-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: hadoop-dev@lucene.apache.org Delivered-To: mailing list hadoop-dev@lucene.apache.org Received: (qmail 54727 invoked by uid 99); 8 Jan 2008 22:54:44 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Jan 2008 14:54:44 -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; Tue, 08 Jan 2008 22:54:28 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 036DA71422E for ; Tue, 8 Jan 2008 14:54:34 -0800 (PST) Message-ID: <19736157.1199832874011.JavaMail.jira@brutus> Date: Tue, 8 Jan 2008 14:54:34 -0800 (PST) From: "Peter Dolan (JIRA)" To: hadoop-dev@lucene.apache.org Subject: [jira] Created: (HADOOP-2554) 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 Add a HTable get method that retrieves all versions of a particular column and row between two timestamps --------------------------------------------------------------------------------------------------------- Key: HADOOP-2554 URL: https://issues.apache.org/jira/browse/HADOOP-2554 Project: Hadoop Issue Type: New Feature Components: contrib/hbase 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] */ Map getRowTimestamps(Text row, Text column, long minTimestamp, long maxTimestamp); /** * Get all versions of the specified row and column whose timestamps are >= minTimestamp */ Map getRowTimestamps(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.