Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 1322D200BE4 for ; Wed, 16 Nov 2016 03:01:07 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 11FB5160B05; Wed, 16 Nov 2016 02:01:07 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 5D146160B03 for ; Wed, 16 Nov 2016 03:01:06 +0100 (CET) Received: (qmail 54457 invoked by uid 500); 16 Nov 2016 02:01:05 -0000 Mailing-List: contact issues-help@hive.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hive.apache.org Delivered-To: mailing list issues@hive.apache.org Received: (qmail 54422 invoked by uid 99); 16 Nov 2016 02:01:05 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 Nov 2016 02:01:05 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id 72EB82C4C70 for ; Wed, 16 Nov 2016 02:01:05 +0000 (UTC) Date: Wed, 16 Nov 2016 02:01:05 +0000 (UTC) From: "Sahil Takiar (JIRA)" To: issues@hive.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (HIVE-15114) Remove extra MoveTask operators MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Wed, 16 Nov 2016 02:01:07 -0000 [ https://issues.apache.org/jira/browse/HIVE-15114?page=3Dcom.atlassian= .jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D1566= 9061#comment-15669061 ]=20 Sahil Takiar commented on HIVE-15114: ------------------------------------- [~spena] can we add some sets for other execution engines as well? I haven'= t test the 2nd patch, but the first patch doesn't seem to take affect for H= oS. > Remove extra MoveTask operators > ------------------------------- > > Key: HIVE-15114 > URL: https://issues.apache.org/jira/browse/HIVE-15114 > Project: Hive > Issue Type: Sub-task > Components: Hive > Affects Versions: 2.1.0 > Reporter: Sahil Takiar > Assignee: Sergio Pe=C3=B1a > Attachments: HIVE-15114.WIP.1.patch, HIVE-15114.WIP.2.patch > > > When running simple insert queries (e.g. {{INSERT INTO TABLE ... VALUES .= ..}}) there an extraneous {{MoveTask}s is created. > This is problematic when the scratch directory is on S3 since renames req= uire copying the entire dataset. > For simple queries (like the one above), there are two MoveTasks. The fir= st one moves the output data from one file in the scratch directory to anot= her file in the scratch directory. The second MoveTask moves the data from = the scratch directory to its final table location. > The first MoveTask should not be necessary. The goal of this JIRA it to r= emove it. This should help improve performance when running on S3. > It seems that the first Move might be caused by a dependency resolution p= roblem in the optimizer, where a dependent task doesn't get properly remove= d when the task it depends on is filtered by a condition resolver. > A dummy {{MoveTask}} is added in the {{GenMapRedUtils.createMRWorkForMerg= ingFiles}} method. This method creates a conditional task which launches a = job to merge tasks at the end of the file. At the end of the conditional jo= b there is a MoveTask. > Even though Hive decides that the conditional merge job is no needed, it = seems the MoveTask is still added to the plan. > Seems this extra {{MoveTask}} may have been added intentionally. Not sure= why yet. The {{ConditionalResolverMergeFiles}} says that one of three task= s will be returned: move task only, merge task only, merge task followed by= a move task. -- This message was sent by Atlassian JIRA (v6.3.4#6332)