You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "Zhenxiao Luo (JIRA)" <ji...@apache.org> on 2012/08/29 02:30:07 UTC

[jira] [Created] (HIVE-3412) Fix TestCliDriver.repair on Hadoop 0.23.3, 3.0.0, and 2.2.0-alpha

Zhenxiao Luo created HIVE-3412:
----------------------------------

             Summary: Fix TestCliDriver.repair on Hadoop 0.23.3, 3.0.0, and 2.2.0-alpha
                 Key: HIVE-3412
                 URL: https://issues.apache.org/jira/browse/HIVE-3412
             Project: Hive
          Issue Type: Bug
          Components: Tests
    Affects Versions: 0.9.0
            Reporter: Zhenxiao Luo
            Assignee: Zhenxiao Luo
             Fix For: 0.10.0


TestCliDriver.repair fails on the following Hadoop versions:
0.23.3, 3.0.0, 2.2.0-alpha

repair.q fails with "dfs -mkdir":
[junit] mkdir: `../build/ql/test/data/warehouse/repairtable/p1=a/p2=a': No such file or directory

The problem is, after fixing HADOOP-8551, which changes the hdfs Shell syntax for mkdir:
https://issues.apache.org/jira/browse/HADOOP-8551

all "dfs -mkdir" commands should provide "-p" in order to execute without error.

This is an intentional change in HDFS. And HADOOP-8551 will be included in 0.23.3, 3.0.0, 2.2.0-alpha versions.


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Commented] (HIVE-3412) Fix TestCliDriver.repair on Hadoop 0.23.3, 3.0.0, and 2.2.0-alpha

Posted by "Carl Steinbach (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HIVE-3412?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13445736#comment-13445736 ] 

Carl Steinbach commented on HIVE-3412:
--------------------------------------

+1. Will commit if tests pass.
                
> Fix TestCliDriver.repair on Hadoop 0.23.3, 3.0.0, and 2.2.0-alpha
> -----------------------------------------------------------------
>
>                 Key: HIVE-3412
>                 URL: https://issues.apache.org/jira/browse/HIVE-3412
>             Project: Hive
>          Issue Type: Bug
>          Components: Tests
>    Affects Versions: 0.9.0
>            Reporter: Zhenxiao Luo
>            Assignee: Zhenxiao Luo
>             Fix For: 0.10.0
>
>         Attachments: HIVE-3412.1.patch.txt, HIVE-3412.2.patch.txt
>
>
> TestCliDriver.repair fails on the following Hadoop versions:
> 0.23.3, 3.0.0, 2.2.0-alpha
> repair.q fails with "dfs -mkdir":
> [junit] mkdir: `../build/ql/test/data/warehouse/repairtable/p1=a/p2=a': No such file or directory
> The problem is, after fixing HADOOP-8551, which changes the hdfs Shell syntax for mkdir:
> https://issues.apache.org/jira/browse/HADOOP-8551
> all "dfs -mkdir" commands should provide "-p" in order to execute without error.
> This is an intentional change in HDFS. And HADOOP-8551 will be included in 0.23.3, 3.0.0, 2.2.0-alpha versions.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Commented] (HIVE-3412) Fix TestCliDriver.repair on Hadoop 0.23.3, 3.0.0, and 2.2.0-alpha

Posted by "Hudson (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HIVE-3412?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13448017#comment-13448017 ] 

Hudson commented on HIVE-3412:
------------------------------

Integrated in Hive-trunk-h0.21 #1646 (See [https://builds.apache.org/job/Hive-trunk-h0.21/1646/])
    HIVE-3412. Fix TestCliDriver.repair on Hadoop 0.23.3, 3.0.0, and 2.2.0-alpha (Zhenxiao Luo via cws) (Revision 1380479)

     Result = FAILURE
cws : http://svn.apache.org/viewcvs.cgi/?root=Apache-SVN&view=rev&rev=1380479
Files : 
* /hive/trunk/ql/src/test/queries/clientpositive/repair.q
* /hive/trunk/ql/src/test/queries/clientpositive/repair_hadoop23.q
* /hive/trunk/ql/src/test/results/clientpositive/repair.q.out
* /hive/trunk/ql/src/test/results/clientpositive/repair_hadoop23.q.out

                
> Fix TestCliDriver.repair on Hadoop 0.23.3, 3.0.0, and 2.2.0-alpha
> -----------------------------------------------------------------
>
>                 Key: HIVE-3412
>                 URL: https://issues.apache.org/jira/browse/HIVE-3412
>             Project: Hive
>          Issue Type: Bug
>          Components: Tests
>    Affects Versions: 0.9.0
>            Reporter: Zhenxiao Luo
>            Assignee: Zhenxiao Luo
>             Fix For: 0.10.0
>
>         Attachments: HIVE-3412.1.patch.txt, HIVE-3412.2.patch.txt
>
>
> TestCliDriver.repair fails on the following Hadoop versions:
> 0.23.3, 3.0.0, 2.2.0-alpha
> repair.q fails with "dfs -mkdir":
> [junit] mkdir: `../build/ql/test/data/warehouse/repairtable/p1=a/p2=a': No such file or directory
> The problem is, after fixing HADOOP-8551, which changes the hdfs Shell syntax for mkdir:
> https://issues.apache.org/jira/browse/HADOOP-8551
> all "dfs -mkdir" commands should provide "-p" in order to execute without error.
> This is an intentional change in HDFS. And HADOOP-8551 will be included in 0.23.3, 3.0.0, 2.2.0-alpha versions.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Updated] (HIVE-3412) Fix TestCliDriver.repair on Hadoop 0.23.3, 3.0.0, and 2.2.0-alpha

Posted by "Zhenxiao Luo (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HIVE-3412?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Zhenxiao Luo updated HIVE-3412:
-------------------------------

    Status: Patch Available  (was: Open)
    
> Fix TestCliDriver.repair on Hadoop 0.23.3, 3.0.0, and 2.2.0-alpha
> -----------------------------------------------------------------
>
>                 Key: HIVE-3412
>                 URL: https://issues.apache.org/jira/browse/HIVE-3412
>             Project: Hive
>          Issue Type: Bug
>          Components: Tests
>    Affects Versions: 0.9.0
>            Reporter: Zhenxiao Luo
>            Assignee: Zhenxiao Luo
>             Fix For: 0.10.0
>
>         Attachments: HIVE-3412.1.patch.txt, HIVE-3412.2.patch.txt
>
>
> TestCliDriver.repair fails on the following Hadoop versions:
> 0.23.3, 3.0.0, 2.2.0-alpha
> repair.q fails with "dfs -mkdir":
> [junit] mkdir: `../build/ql/test/data/warehouse/repairtable/p1=a/p2=a': No such file or directory
> The problem is, after fixing HADOOP-8551, which changes the hdfs Shell syntax for mkdir:
> https://issues.apache.org/jira/browse/HADOOP-8551
> all "dfs -mkdir" commands should provide "-p" in order to execute without error.
> This is an intentional change in HDFS. And HADOOP-8551 will be included in 0.23.3, 3.0.0, 2.2.0-alpha versions.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Updated] (HIVE-3412) Fix TestCliDriver.repair on Hadoop 0.23.3, 3.0.0, and 2.2.0-alpha

Posted by "Carl Steinbach (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HIVE-3412?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Carl Steinbach updated HIVE-3412:
---------------------------------

    Status: Open  (was: Patch Available)

@Zhenxiao: Please see my comments on phabricator. Thanks.
                
> Fix TestCliDriver.repair on Hadoop 0.23.3, 3.0.0, and 2.2.0-alpha
> -----------------------------------------------------------------
>
>                 Key: HIVE-3412
>                 URL: https://issues.apache.org/jira/browse/HIVE-3412
>             Project: Hive
>          Issue Type: Bug
>          Components: Tests
>    Affects Versions: 0.9.0
>            Reporter: Zhenxiao Luo
>            Assignee: Zhenxiao Luo
>             Fix For: 0.10.0
>
>         Attachments: HIVE-3412.1.patch.txt
>
>
> TestCliDriver.repair fails on the following Hadoop versions:
> 0.23.3, 3.0.0, 2.2.0-alpha
> repair.q fails with "dfs -mkdir":
> [junit] mkdir: `../build/ql/test/data/warehouse/repairtable/p1=a/p2=a': No such file or directory
> The problem is, after fixing HADOOP-8551, which changes the hdfs Shell syntax for mkdir:
> https://issues.apache.org/jira/browse/HADOOP-8551
> all "dfs -mkdir" commands should provide "-p" in order to execute without error.
> This is an intentional change in HDFS. And HADOOP-8551 will be included in 0.23.3, 3.0.0, 2.2.0-alpha versions.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Updated] (HIVE-3412) Fix TestCliDriver.repair on Hadoop 0.23.3, 3.0.0, and 2.2.0-alpha

Posted by "Carl Steinbach (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HIVE-3412?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Carl Steinbach updated HIVE-3412:
---------------------------------

      Resolution: Fixed
    Hadoop Flags: Reviewed
          Status: Resolved  (was: Patch Available)

Committed to trunk. Thanks Zhenxiao!
                
> Fix TestCliDriver.repair on Hadoop 0.23.3, 3.0.0, and 2.2.0-alpha
> -----------------------------------------------------------------
>
>                 Key: HIVE-3412
>                 URL: https://issues.apache.org/jira/browse/HIVE-3412
>             Project: Hive
>          Issue Type: Bug
>          Components: Tests
>    Affects Versions: 0.9.0
>            Reporter: Zhenxiao Luo
>            Assignee: Zhenxiao Luo
>             Fix For: 0.10.0
>
>         Attachments: HIVE-3412.1.patch.txt, HIVE-3412.2.patch.txt
>
>
> TestCliDriver.repair fails on the following Hadoop versions:
> 0.23.3, 3.0.0, 2.2.0-alpha
> repair.q fails with "dfs -mkdir":
> [junit] mkdir: `../build/ql/test/data/warehouse/repairtable/p1=a/p2=a': No such file or directory
> The problem is, after fixing HADOOP-8551, which changes the hdfs Shell syntax for mkdir:
> https://issues.apache.org/jira/browse/HADOOP-8551
> all "dfs -mkdir" commands should provide "-p" in order to execute without error.
> This is an intentional change in HDFS. And HADOOP-8551 will be included in 0.23.3, 3.0.0, 2.2.0-alpha versions.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Updated] (HIVE-3412) Fix TestCliDriver.repair on Hadoop 0.23.3, 3.0.0, and 2.2.0-alpha

Posted by "Zhenxiao Luo (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HIVE-3412?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Zhenxiao Luo updated HIVE-3412:
-------------------------------

    Status: Patch Available  (was: Open)
    
> Fix TestCliDriver.repair on Hadoop 0.23.3, 3.0.0, and 2.2.0-alpha
> -----------------------------------------------------------------
>
>                 Key: HIVE-3412
>                 URL: https://issues.apache.org/jira/browse/HIVE-3412
>             Project: Hive
>          Issue Type: Bug
>          Components: Tests
>    Affects Versions: 0.9.0
>            Reporter: Zhenxiao Luo
>            Assignee: Zhenxiao Luo
>             Fix For: 0.10.0
>
>         Attachments: HIVE-3412.1.patch.txt
>
>
> TestCliDriver.repair fails on the following Hadoop versions:
> 0.23.3, 3.0.0, 2.2.0-alpha
> repair.q fails with "dfs -mkdir":
> [junit] mkdir: `../build/ql/test/data/warehouse/repairtable/p1=a/p2=a': No such file or directory
> The problem is, after fixing HADOOP-8551, which changes the hdfs Shell syntax for mkdir:
> https://issues.apache.org/jira/browse/HADOOP-8551
> all "dfs -mkdir" commands should provide "-p" in order to execute without error.
> This is an intentional change in HDFS. And HADOOP-8551 will be included in 0.23.3, 3.0.0, 2.2.0-alpha versions.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Updated] (HIVE-3412) Fix TestCliDriver.repair on Hadoop 0.23.3, 3.0.0, and 2.2.0-alpha

Posted by "Zhenxiao Luo (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HIVE-3412?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Zhenxiao Luo updated HIVE-3412:
-------------------------------

    Attachment: HIVE-3412.1.patch.txt
    
> Fix TestCliDriver.repair on Hadoop 0.23.3, 3.0.0, and 2.2.0-alpha
> -----------------------------------------------------------------
>
>                 Key: HIVE-3412
>                 URL: https://issues.apache.org/jira/browse/HIVE-3412
>             Project: Hive
>          Issue Type: Bug
>          Components: Tests
>    Affects Versions: 0.9.0
>            Reporter: Zhenxiao Luo
>            Assignee: Zhenxiao Luo
>             Fix For: 0.10.0
>
>         Attachments: HIVE-3412.1.patch.txt
>
>
> TestCliDriver.repair fails on the following Hadoop versions:
> 0.23.3, 3.0.0, 2.2.0-alpha
> repair.q fails with "dfs -mkdir":
> [junit] mkdir: `../build/ql/test/data/warehouse/repairtable/p1=a/p2=a': No such file or directory
> The problem is, after fixing HADOOP-8551, which changes the hdfs Shell syntax for mkdir:
> https://issues.apache.org/jira/browse/HADOOP-8551
> all "dfs -mkdir" commands should provide "-p" in order to execute without error.
> This is an intentional change in HDFS. And HADOOP-8551 will be included in 0.23.3, 3.0.0, 2.2.0-alpha versions.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Commented] (HIVE-3412) Fix TestCliDriver.repair on Hadoop 0.23.3, 3.0.0, and 2.2.0-alpha

Posted by "Zhenxiao Luo (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HIVE-3412?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13444301#comment-13444301 ] 

Zhenxiao Luo commented on HIVE-3412:
------------------------------------

@Carl: thanks for the review. I addressed the comments and resubmitted patch at:
https://reviews.facebook.net/D4989
                
> Fix TestCliDriver.repair on Hadoop 0.23.3, 3.0.0, and 2.2.0-alpha
> -----------------------------------------------------------------
>
>                 Key: HIVE-3412
>                 URL: https://issues.apache.org/jira/browse/HIVE-3412
>             Project: Hive
>          Issue Type: Bug
>          Components: Tests
>    Affects Versions: 0.9.0
>            Reporter: Zhenxiao Luo
>            Assignee: Zhenxiao Luo
>             Fix For: 0.10.0
>
>         Attachments: HIVE-3412.1.patch.txt, HIVE-3412.2.patch.txt
>
>
> TestCliDriver.repair fails on the following Hadoop versions:
> 0.23.3, 3.0.0, 2.2.0-alpha
> repair.q fails with "dfs -mkdir":
> [junit] mkdir: `../build/ql/test/data/warehouse/repairtable/p1=a/p2=a': No such file or directory
> The problem is, after fixing HADOOP-8551, which changes the hdfs Shell syntax for mkdir:
> https://issues.apache.org/jira/browse/HADOOP-8551
> all "dfs -mkdir" commands should provide "-p" in order to execute without error.
> This is an intentional change in HDFS. And HADOOP-8551 will be included in 0.23.3, 3.0.0, 2.2.0-alpha versions.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Commented] (HIVE-3412) Fix TestCliDriver.repair on Hadoop 0.23.3, 3.0.0, and 2.2.0-alpha

Posted by "Zhenxiao Luo (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HIVE-3412?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13443694#comment-13443694 ] 

Zhenxiao Luo commented on HIVE-3412:
------------------------------------

Review Request submitted at:
https://reviews.facebook.net/D4989
                
> Fix TestCliDriver.repair on Hadoop 0.23.3, 3.0.0, and 2.2.0-alpha
> -----------------------------------------------------------------
>
>                 Key: HIVE-3412
>                 URL: https://issues.apache.org/jira/browse/HIVE-3412
>             Project: Hive
>          Issue Type: Bug
>          Components: Tests
>    Affects Versions: 0.9.0
>            Reporter: Zhenxiao Luo
>            Assignee: Zhenxiao Luo
>             Fix For: 0.10.0
>
>         Attachments: HIVE-3412.1.patch.txt
>
>
> TestCliDriver.repair fails on the following Hadoop versions:
> 0.23.3, 3.0.0, 2.2.0-alpha
> repair.q fails with "dfs -mkdir":
> [junit] mkdir: `../build/ql/test/data/warehouse/repairtable/p1=a/p2=a': No such file or directory
> The problem is, after fixing HADOOP-8551, which changes the hdfs Shell syntax for mkdir:
> https://issues.apache.org/jira/browse/HADOOP-8551
> all "dfs -mkdir" commands should provide "-p" in order to execute without error.
> This is an intentional change in HDFS. And HADOOP-8551 will be included in 0.23.3, 3.0.0, 2.2.0-alpha versions.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Updated] (HIVE-3412) Fix TestCliDriver.repair on Hadoop 0.23.3, 3.0.0, and 2.2.0-alpha

Posted by "Zhenxiao Luo (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HIVE-3412?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Zhenxiao Luo updated HIVE-3412:
-------------------------------

    Attachment: HIVE-3412.2.patch.txt
    
> Fix TestCliDriver.repair on Hadoop 0.23.3, 3.0.0, and 2.2.0-alpha
> -----------------------------------------------------------------
>
>                 Key: HIVE-3412
>                 URL: https://issues.apache.org/jira/browse/HIVE-3412
>             Project: Hive
>          Issue Type: Bug
>          Components: Tests
>    Affects Versions: 0.9.0
>            Reporter: Zhenxiao Luo
>            Assignee: Zhenxiao Luo
>             Fix For: 0.10.0
>
>         Attachments: HIVE-3412.1.patch.txt, HIVE-3412.2.patch.txt
>
>
> TestCliDriver.repair fails on the following Hadoop versions:
> 0.23.3, 3.0.0, 2.2.0-alpha
> repair.q fails with "dfs -mkdir":
> [junit] mkdir: `../build/ql/test/data/warehouse/repairtable/p1=a/p2=a': No such file or directory
> The problem is, after fixing HADOOP-8551, which changes the hdfs Shell syntax for mkdir:
> https://issues.apache.org/jira/browse/HADOOP-8551
> all "dfs -mkdir" commands should provide "-p" in order to execute without error.
> This is an intentional change in HDFS. And HADOOP-8551 will be included in 0.23.3, 3.0.0, 2.2.0-alpha versions.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira