You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@drill.apache.org by "Rahul Challapalli (JIRA)" <ji...@apache.org> on 2016/07/01 21:48:10 UTC

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

    [ https://issues.apache.org/jira/browse/DRILL-3261?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15359698#comment-15359698 ] 

Rahul Challapalli commented on DRILL-3261:
------------------------------------------

I am not able to reproduce this with the recent commit (e047e1089f84a79eeab07bd13b8a5ca46e84b7d3). So sometime in the last one year we fixed this problem :)

> 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)