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 040FC200B43 for ; Wed, 29 Jun 2016 00:39:59 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 0137B160A56; Tue, 28 Jun 2016 22:39:59 +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 50448160A6C for ; Wed, 29 Jun 2016 00:39:58 +0200 (CEST) Received: (qmail 85930 invoked by uid 500); 28 Jun 2016 22:39:57 -0000 Mailing-List: contact issues-help@drill.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@drill.apache.org Delivered-To: mailing list issues@drill.apache.org Received: (qmail 85874 invoked by uid 99); 28 Jun 2016 22:39:57 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Jun 2016 22:39:57 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id 2DD742C1F5C for ; Tue, 28 Jun 2016 22:39:57 +0000 (UTC) Date: Tue, 28 Jun 2016 22:39:57 +0000 (UTC) From: "Zelaine Fong (JIRA)" To: issues@drill.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Updated] (DRILL-3261) Tpch query 4 over hive sf100 fails with an OOM error. Query runs fine against text and parquet MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Tue, 28 Jun 2016 22:39:59 -0000 [ https://issues.apache.org/jira/browse/DRILL-3261?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Zelaine Fong updated DRILL-3261: -------------------------------- Assignee: Padma Penumarthy > Tpch query 4 over hive sf100 fails with an OOM error. Query runs fine against text and parquet > ---------------------------------------------------------------------------------------------- > > Key: DRILL-3261 > URL: https://issues.apache.org/jira/browse/DRILL-3261 > Project: Apache Drill > Issue Type: Bug > Components: Execution - Flow, Storage - Hive > Reporter: Rahul Challapalli > Assignee: Padma Penumarthy > Fix For: Future > > Attachments: error.log, tpch100_hive.ddl > > > git.commit.id.abbrev=5f26b8b > I have a 2 node cluster with the below memory allocation for the drillbits > {code} > DRILL_MAX_DIRECT_MEMORY="32G" > DRILL_MAX_HEAP="4G" > {code} > The below query never returned > {code} > select > o.o_orderpriority, > count(*) as order_count > from > orders o > where > o.o_orderdate >= date '1996-10-01' > and o.o_orderdate < date '1996-10-01' + interval '3' month > and > exists ( > select > * > from > lineitem l > where > l.l_orderkey = o.o_orderkey > and l.l_commitdate < l.l_receiptdate > ) > group by > o.o_orderpriority > order by > o.o_orderpriority; > {code} > I attached the hive DDL and the error logs. Let me know if you need anything else -- This message was sent by Atlassian JIRA (v6.3.4#6332)