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

Tajo QA commented on TAJO-1097:
-------------------------------

{color:red}*-1 overall.*{color}  Here are the results of testing the latest 
attachment 
  http://issues.apache.org/jira/secure/attachment/12673337/TAJO-1097.jinho.patch
  against master revision d0f9ebc.

    {color:green}+1 @author.{color}  The patch does not contain any @author 
tags.

    {color:red}-1 tests included.{color}  The patch doesn't appear to include 
any new or modified tests.
                        Please justify why no new tests are needed for this 
patch.
                        Also please list what manual steps were performed to 
verify this patch.

    {color:green}+1 javac.{color}  The applied patch does not increase the 
total number of javac compiler warnings.

    {color:green}+1 javadoc.{color}  The applied patch does not increase the 
total number of javadoc warnings.

    {color:green}+1 checkstyle.{color}  The patch generated 0 code style errors.

    {color:red}-1 findbugs.{color}  The patch appears to introduce 1 new 
Findbugs (version 2.0.3) warnings.

    {color:red}-1 release audit.{color}  The applied patch generated 349 
release audit warnings.

    {color:green}+1 core tests.{color}  The patch passed unit tests in 
tajo-storage.

Test results: 
https://builds.apache.org/job/PreCommit-TAJO-Build/513//testReport/
Release audit warnings: 
https://builds.apache.org/job/PreCommit-TAJO-Build/513//artifact/incubator-tajo/patchprocess/patchReleaseAuditProblems.txt
Findbugs warnings: 
https://builds.apache.org/job/PreCommit-TAJO-Build/513//artifact/incubator-tajo/patchprocess/newPatchFindbugsWarningstajo-storage.html
Console output: https://builds.apache.org/job/PreCommit-TAJO-Build/513//console

This message is automatically generated.

> IllegalArgumentException: RawFileScanner
> ----------------------------------------
>
>                 Key: TAJO-1097
>                 URL: https://issues.apache.org/jira/browse/TAJO-1097
>             Project: Tajo
>          Issue Type: Bug
>          Components: data shuffle, storage
>    Affects Versions: 0.9.0
>            Reporter: Jinho Kim
>            Assignee: Mai Hai Thanh
>            Priority: Blocker
>             Fix For: 0.9.0
>
>         Attachments: TAJO-1097.jinho.patch
>
>
> When I ran my customer query and TPCH-Q9, got this error.
> {code:title=Q9 |borderStyle=solid}
> select 
>   nation, o_year, sum(amount) as sum_profit
> from 
>   (
> select 
>   n_name as nation, substr(o_orderdate, 1, 4) as o_year, 
>   l_extendedprice * (1 - l_discount) -  ps_supplycost * l_quantity as amount
>     from
>       orders o join
>       (select l_extendedprice, l_discount, l_quantity, l_orderkey, n_name, 
> ps_supplycost 
>        from part p join
>          (select l_extendedprice, l_discount, l_quantity, l_partkey, 
> l_orderkey, 
>                  n_name, ps_supplycost 
>           from partsupp ps join
>             (select l_suppkey, l_extendedprice, l_discount, l_quantity, 
> l_partkey, 
>                     l_orderkey, n_name 
>              from
>                (select s_suppkey, n_name 
>                 from nation n join supplier s on n.n_nationkey = s.s_nationkey
>                ) s1 join lineitem l on s1.s_suppkey = l.l_suppkey
>             ) l1 on ps.ps_suppkey = l1.l_suppkey and ps.ps_partkey = 
> l1.l_partkey
>          ) l2 on p.p_name like '%green%' and p.p_partkey = l2.l_partkey
>      ) l3 on o.o_orderkey = l3.l_orderkey
>   )profit
> group by nation, o_year
> order by nation, o_year desc;
> {code}
> {noformat}
> ERROR: java.lang.IllegalArgumentException
> java.io.IOException: java.lang.IllegalArgumentException
>       at 
> org.apache.tajo.engine.planner.physical.HashShuffleFileWriteExec.next(HashShuffleFileWriteExec.java:152)
>       at org.apache.tajo.worker.Task.run(Task.java:446)
>       at org.apache.tajo.worker.TaskRunner$1.run(TaskRunner.java:276)
>       at java.lang.Thread.run(Thread.java:745)
> Caused by: java.lang.IllegalArgumentException
>       at java.nio.Buffer.limit(Buffer.java:267)
>       at 
> org.apache.tajo.storage.RawFile$RawFileScanner.fillBuffer(RawFile.java:154)
>       at org.apache.tajo.storage.RawFile$RawFileScanner.next(RawFile.java:263)
>       at org.apache.tajo.storage.MergeScanner.next(MergeScanner.java:95)
>       at 
> org.apache.tajo.engine.planner.physical.SeqScanExec.next(SeqScanExec.java:268)
>       at 
> org.apache.tajo.engine.planner.physical.HashJoinExec.next(HashJoinExec.java:117)
>       at 
> org.apache.tajo.engine.planner.physical.ProjectionExec.next(ProjectionExec.java:54)
>       at 
> org.apache.tajo.engine.planner.physical.ProjectionExec.next(ProjectionExec.java:54)
>       at 
> org.apache.tajo.engine.planner.physical.HashShuffleFileWriteExec.next(HashShuffleFileWriteExec.java:107)
>       ... 3 more
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to