Return-Path: Delivered-To: apmail-hadoop-core-dev-archive@www.apache.org Received: (qmail 81967 invoked from network); 4 Jun 2009 01:04:18 -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:18 -0000 Received: (qmail 81455 invoked by uid 500); 4 Jun 2009 01:04:29 -0000 Delivered-To: apmail-hadoop-core-dev-archive@hadoop.apache.org Received: (qmail 81399 invoked by uid 500); 4 Jun 2009 01:04: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 81388 invoked by uid 99); 4 Jun 2009 01:04: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 01:04: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 01:04:27 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 69100234C044 for ; Wed, 3 Jun 2009 18:04:07 -0700 (PDT) Message-ID: <1164005404.1244077447429.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] Created: (HADOOP-5967) Sqoop should only use a single map task 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 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.