You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@drill.apache.org by "Krystal (JIRA)" <ji...@apache.org> on 2014/05/30 19:05:04 UTC

[jira] [Commented] (DRILL-868) tpcds query 7 fails with IndexOutOfBoundsException

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

Krystal commented on DRILL-868:
-------------------------------

server error:

java.lang.IndexOutOfBoundsException: index: 19700, length: 4 (expected: range(0, 19700))

io.netty.buffer.AbstractByteBuf.checkIndex(AbstractByteBuf.java:1130) ~[netty-buffer-4.0.7.Final.jar:na]

io.netty.buffer.AbstractByteBuf.getInt(AbstractByteBuf.java:378) ~[netty-buffer-4.0.7.Final.jar:na]

org.apache.drill.exec.memory.AccountingByteBuf.getInt(AccountingByteBuf.java:280) ~[drill-java-exec-1.0.0-m2-incubating-SNAPSHOT-rebuffed.jar:1.0.0-m2-incubating-SNAPSHOT]

org.apache.drill.exec.vector.IntVector.copyFrom(IntVector.java:241) ~[drill-java-exec-1.0.0-m2-incubating-SNAPSHOT-rebuffed.jar:1.0.0-m2-incubating-SNAPSHOT]

org.apache.drill.exec.vector.IntVector.copyFromSafe(IntVector.java:249) ~[drill-java-exec-1.0.0-m2-incubating-SNAPSHOT-rebuffed.jar:1.0.0-m2-incubating-SNAPSHOT]

org.apache.drill.exec.vector.NullableIntVector.copyFromSafe(NullableIntVector.java:278) ~[drill-java-exec-1.0.0-m2-incubating-SNAPSHOT-rebuffed.jar:1.0.0-m2-incubating-SNAPSHOT]

org.apache.drill.exec.test.generated.PartitionerGen121$OutgoingRecordBatch.doEval(PartitionerTemplate.java:218) ~[na:na]

org.apache.drill.exec.test.generated.PartitionerGen121$OutgoingRecordBatch.copy(PartitionerTemplate.java:222) ~[na:na]

org.apache.drill.exec.test.generated.PartitionerGen121.partitionBatch(PartitionerTemplate.java:139) ~[na:na]

org.apache.drill.exec.physical.impl.partitionsender.PartitionSenderRootExec.next(PartitionSenderRootExec.java:137) ~[drill-java-exec-1.0.0-m2-incubating-SNAPSHOT-rebuffed.jar:1.0.0-m2-incubating-SNAPSHOT]

org.apache.drill.exec.work.fragment.FragmentExecutor.run(FragmentExecutor.java:98) ~[drill-java-exec-1.0.0-m2-incubating-SNAPSHOT-rebuffed.jar:1.0.0-m2-incubating-SNAPSHOT]

java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) [na:1.7.0_45]

java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) [na:1.7.0_45]

java.lang.Thread.run(Thread.java:744) [na:1.7.0_45]


> tpcds query 7 fails with IndexOutOfBoundsException
> --------------------------------------------------
>
>                 Key: DRILL-868
>                 URL: https://issues.apache.org/jira/browse/DRILL-868
>             Project: Apache Drill
>          Issue Type: Bug
>          Components: Execution - Flow
>            Reporter: Krystal
>
> git.commit.id.abbrev=e1e5ea0
> git.commit.time=29.05.2014 @ 15\:32\:29 PDT
> query:
> {code}
> select  item.i_item_id,
>         avg(ss.ss_quantity) agg1,
>         avg(ss.ss_list_price) agg2,
>         avg(ss.ss_coupon_amt) agg3,
>         avg(ss.ss_sales_price) agg4
>  from store_sales ss, customer_demographics cd, date_dim dd, item, promotion
>  where ss.ss_sold_date_sk = dd.d_date_sk and
>        ss.ss_item_sk = item.i_item_sk and
>        ss.ss_cdemo_sk = cd.cd_demo_sk and
>        ss.ss_promo_sk = promotion.p_promo_sk and
>        cd.cd_gender = 'M' and
>        cd.cd_marital_status = 'M' and
>        cd.cd_education_status = '4 yr Degree' and
>        (promotion.p_channel_email = 'N' or promotion.p_channel_event = 'N') and
>        dd.d_year = 2001
>  group by item.i_item_id
>  order by item.i_item_id
>  limit 100;
> {code}
> message: "Failure while running fragment. < IndexOutOfBoundsException:[ index: 19700, length: 4 (expected: range(0, 19700)) ]"



--
This message was sent by Atlassian JIRA
(v6.2#6252)