You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@drill.apache.org by "Rahul Challapalli (JIRA)" <ji...@apache.org> on 2015/06/08 20:04:01 UTC

[jira] [Created] (DRILL-3261) Tpch query 4 over hive sf100 fails with an OOM error. Query runs fine against text and parquet

Rahul Challapalli created DRILL-3261:
----------------------------------------

             Summary: 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: Chris Westin


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)