You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@tajo.apache.org by "Tajo QA (JIRA)" <ji...@apache.org> on 2014/03/07 06:12:42 UTC

[jira] [Commented] (TAJO-672) Wrong progress status when overwrites to partition table

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

Tajo QA commented on TAJO-672:
------------------------------

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

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

    {color:green}+1 tests included.{color}  The patch appears to include 1 new or modified test files.

    {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 183 new Findbugs (version 1.3.9) warnings.

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

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

Test results: https://builds.apache.org/job/PreCommit-TAJO-Build/202//testReport/
Findbugs warnings: https://builds.apache.org/job/PreCommit-TAJO-Build/202//artifact/incubator-tajo/patchprocess/newPatchFindbugsWarningstajo-core-backend.html
Console output: https://builds.apache.org/job/PreCommit-TAJO-Build/202//console

This message is automatically generated.

> Wrong progress status when overwrites to partition table
> --------------------------------------------------------
>
>                 Key: TAJO-672
>                 URL: https://issues.apache.org/jira/browse/TAJO-672
>             Project: Tajo
>          Issue Type: Bug
>            Reporter: hyoungjunkim
>            Assignee: hyoungjunkim
>            Priority: Trivial
>         Attachments: TAJO-672.patch
>
>
> I ran next query in cli. Progress is over 100% and then down to 97%. But finally finished at 100%.
> {code}
> create table orders_partition (
> o_orderkey      INT8,
> o_custkey       INT8,
> o_orderstatus   TEXT,
> o_totalprice    FLOAT8,
> o_orderdate     TEXT,
> o_orderpriority TEXT,
> o_clerk TEXT,
> o_shippriority  INT4,
> o_comment       TEXT)
> partition by column (o_year text, o_month text);
> insert overwrite into orders_partition 
> select o_orderkey, o_custkey, o_orderstatus, o_totalprice, 
> o_orderdate, o_orderpriority, o_clerk, o_shippriority, o_comment, substr(o_orderdate, 1, 4), substr(o_orderdate , 6, 2) 
> from orders;
> {code}
> {code}
> Progress: 95%, response time: 73.572 sec
> Progress: 95%, response time: 74.573 sec
> Progress: 95%, response time: 75.574 sec
> Progress: 96%, response time: 76.576 sec
> Progress: 96%, response time: 77.578 sec
> Progress: 96%, response time: 78.58 sec
> Progress: 100%, response time: 79.581 sec
> Progress: 100%, response time: 80.582 sec
> Progress: 101%, response time: 81.584 sec
> Progress: 101%, response time: 82.586 sec
> Progress: 101%, response time: 83.587 sec
> Progress: 101%, response time: 84.589 sec
> Progress: 101%, response time: 85.591 sec
> Progress: 101%, response time: 86.593 sec
> Progress: 102%, response time: 87.595 sec
> Progress: 102%, response time: 88.596 sec
> Progress: 102%, response time: 89.598 sec
> Progress: 102%, response time: 90.601 sec
> Progress: 102%, response time: 91.603 sec
> Progress: 102%, response time: 92.605 sec
> Progress: 102%, response time: 93.607 sec
> Progress: 97%, response time: 94.608 sec
> Progress: 97%, response time: 95.61 sec
> {code}



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