Return-Path: Delivered-To: apmail-hadoop-core-dev-archive@www.apache.org Received: (qmail 21100 invoked from network); 4 Jun 2009 07:48:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 4 Jun 2009 07:48:18 -0000 Received: (qmail 77036 invoked by uid 500); 4 Jun 2009 07:48:29 -0000 Delivered-To: apmail-hadoop-core-dev-archive@hadoop.apache.org Received: (qmail 76969 invoked by uid 500); 4 Jun 2009 07:48:29 -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 76959 invoked by uid 99); 4 Jun 2009 07:48:29 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Jun 2009 07:48:29 +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 07:48:27 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 70DB0234C004 for ; Thu, 4 Jun 2009 00:48:07 -0700 (PDT) Message-ID: <863889561.1244101687448.JavaMail.jira@brutus> Date: Thu, 4 Jun 2009 00:48:07 -0700 (PDT) From: "Aaron Kimball (JIRA)" To: core-dev@hadoop.apache.org Subject: [jira] Commented: (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:comment-tabpanel&focusedCommentId=12716186#action_12716186 ] Aaron Kimball commented on HADOOP-5967: --------------------------------------- An ORDER BY clause is included in DBInputFormat's SQL statements that it sends over JDBC. But each mapper (necessarily) runs in a separate transaction, as it's on a separate node. > 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.