Return-Path: Delivered-To: apmail-hadoop-core-dev-archive@www.apache.org Received: (qmail 82264 invoked from network); 4 Jun 2009 01:04:21 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 4 Jun 2009 01:04:21 -0000 Received: (qmail 82842 invoked by uid 500); 4 Jun 2009 01:04:32 -0000 Delivered-To: apmail-hadoop-core-dev-archive@hadoop.apache.org Received: (qmail 82794 invoked by uid 500); 4 Jun 2009 01:04:31 -0000 Mailing-List: contact core-dev-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: core-dev@hadoop.apache.org Delivered-To: mailing list core-dev@hadoop.apache.org Received: (qmail 82668 invoked by uid 99); 4 Jun 2009 01:04:31 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Jun 2009 01:04:31 +0000 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, 04 Jun 2009 01:04:28 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 72507234C056 for ; Wed, 3 Jun 2009 18:04:07 -0700 (PDT) Message-ID: <28290452.1244077447467.JavaMail.jira@brutus> Date: Wed, 3 Jun 2009 18:04:07 -0700 (PDT) From: "Aaron Kimball (JIRA)" To: core-dev@hadoop.apache.org Subject: [jira] Updated: (HADOOP-5967) Sqoop should only use a single map task In-Reply-To: <1164005404.1244077447429.JavaMail.jira@brutus> 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 [ https://issues.apache.org/jira/browse/HADOOP-5967?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Aaron Kimball updated HADOOP-5967: ---------------------------------- Status: Patch Available (was: Open) > Sqoop should only use a single map task > --------------------------------------- > > Key: HADOOP-5967 > URL: https://issues.apache.org/jira/browse/HADOOP-5967 > Project: Hadoop Core > Issue Type: Improvement > Reporter: Aaron Kimball > Assignee: Aaron Kimball > Priority: Minor > Attachments: single-mapper.patch > > > The current DBInputFormat implementation uses SELECT ... LIMIT ... OFFSET statements to read from a database table. This actually results in several queries all accessing the same table at the same time. Most database implementations will actually use a full table scan for each such query, starting at row 1 and scanning down until the OFFSET is reached before emitting data to the client. The upshot of this is that we see O(n^2) performance in the size of the table when using a large number of mappers, when a single mapper would read through the table in O(n) time in the number of rows. > This patch sets the number of map tasks to 1 in the MapReduce job sqoop launches. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.