Return-Path: X-Original-To: apmail-accumulo-dev-archive@www.apache.org Delivered-To: apmail-accumulo-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 5375D9D59 for ; Mon, 2 Apr 2012 14:49:45 +0000 (UTC) Received: (qmail 72877 invoked by uid 500); 2 Apr 2012 14:49:45 -0000 Delivered-To: apmail-accumulo-dev-archive@accumulo.apache.org Received: (qmail 72860 invoked by uid 500); 2 Apr 2012 14:49:45 -0000 Mailing-List: contact dev-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@accumulo.apache.org Delivered-To: mailing list dev@accumulo.apache.org Received: (qmail 72852 invoked by uid 99); 2 Apr 2012 14:49:45 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 02 Apr 2012 14:49:45 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_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; Mon, 02 Apr 2012 14:49:44 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id 2ACD81C4793 for ; Mon, 2 Apr 2012 14:49:23 +0000 (UTC) Date: Mon, 2 Apr 2012 14:49:23 +0000 (UTC) From: "John Vines (Created) (JIRA)" To: dev@accumulo.apache.org Message-ID: <1140816865.672.1333378163888.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Created] (ACCUMULO-508) Multi-range input format MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org Multi-range input format ------------------------ Key: ACCUMULO-508 URL: https://issues.apache.org/jira/browse/ACCUMULO-508 Project: Accumulo Issue Type: New Feature Components: client Reporter: John Vines Fix For: 1.5.0 Maybe for 1.4.1. Our current input format will always apply one range (potentially split at tablet boundaries) per mapper. This is great for situations where you have a few larger ranges. However, there is a potential use case for many small ranges. Aside from the problem with a large job configuration (ACCUMULO-507), this will result in a LOT of mappers doing very little work. We should have an expanded input format which will bundle ranges together to a single mapper, ideally while trying to maintain locality. This will optimize jobs with a lot of ranges by reducing the amount of mapper overhead involved. I think very little will change with the RecordReader. The onus should still go to the end user to detect when a range change has been made (via Key change), so it will still emit Key/Value pairs, just like the regular input format. This could possibly be extended to the whole row input format as well. -- 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