You are viewing a plain text version of this content. The canonical link for it is here.
Posted to mapreduce-issues@hadoop.apache.org by "Andrew Bayer (Created) (JIRA)" <ji...@apache.org> on 2011/11/29 02:03:40 UTC

[jira] [Created] (MAPREDUCE-3478) Cannot build against ZooKeeper 3.4.0

Cannot build against ZooKeeper 3.4.0
------------------------------------

                 Key: MAPREDUCE-3478
                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-3478
             Project: Hadoop Map/Reduce
          Issue Type: Bug
          Components: mrv2
    Affects Versions: 0.23.0
            Reporter: Andrew Bayer
            Priority: Minor


I tried to see if one could build Hadoop 0.23.0 against ZooKeeper 3.4.0, rather than 3.3.1 (3.3.3 does work, fwiw) and hit compilation errors:

{quote}
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (default-testCompile) on project hadoop-yarn-server-common: Compilation failure: Compilation failure:
[ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[48,25] cannot find symbol
[ERROR] symbol  : class Factory
[ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
[ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[150,33] cannot find symbol
[ERROR] symbol  : class Factory
[ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
[ERROR] -> [Help 1]
{quote}

Presumably, Yarn needs to build against newer ZK releases eventually, hence this bug. =)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (MAPREDUCE-3478) Cannot build against ZooKeeper 3.4.0

Posted by "Tom White (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/MAPREDUCE-3478?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13159549#comment-13159549 ] 

Tom White commented on MAPREDUCE-3478:
--------------------------------------

This is test code so it would be acceptable to use reflection in the test to use ServerCnxnFactory (from 3.4.0) if it's available, otherwise fall back to NIOServerCnxn.Factory (pre-3.4.0). (Note that it's not an incompatible ZooKeeper change since NIOServerCnxn is not a part of its [published API|http://zookeeper.apache.org/doc/r3.4.0/api/index.html].) Alternatively, we could switch to 3.4.0.
                
> Cannot build against ZooKeeper 3.4.0
> ------------------------------------
>
>                 Key: MAPREDUCE-3478
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-3478
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>          Components: mrv2
>    Affects Versions: 0.23.0
>            Reporter: Andrew Bayer
>            Priority: Minor
>              Labels: bigtop
>
> I tried to see if one could build Hadoop 0.23.0 against ZooKeeper 3.4.0, rather than 3.3.1 (3.3.3 does work, fwiw) and hit compilation errors:
> {quote}
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (default-testCompile) on project hadoop-yarn-server-common: Compilation failure: Compilation failure:
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[48,25] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[150,33] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] -> [Help 1]
> {quote}
> Presumably, Yarn needs to build against newer ZK releases eventually, hence this bug. =)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (MAPREDUCE-3478) Cannot build against ZooKeeper 3.4.0

Posted by "Mahadev konar (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/MAPREDUCE-3478?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13160247#comment-13160247 ] 

Mahadev konar commented on MAPREDUCE-3478:
------------------------------------------

@Pat,
 This should be handled by MR.  HBase does not use it. I am planning to upgrade to 3.4.1 directly and also add a dependency on the test jars (so that we can use the test wrappers here). That should clean this stuff out.
                
> Cannot build against ZooKeeper 3.4.0
> ------------------------------------
>
>                 Key: MAPREDUCE-3478
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-3478
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>          Components: mrv2
>    Affects Versions: 0.23.0
>            Reporter: Andrew Bayer
>            Priority: Minor
>              Labels: bigtop
>
> I tried to see if one could build Hadoop 0.23.0 against ZooKeeper 3.4.0, rather than 3.3.1 (3.3.3 does work, fwiw) and hit compilation errors:
> {quote}
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (default-testCompile) on project hadoop-yarn-server-common: Compilation failure: Compilation failure:
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[48,25] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[150,33] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] -> [Help 1]
> {quote}
> Presumably, Yarn needs to build against newer ZK releases eventually, hence this bug. =)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (MAPREDUCE-3478) Cannot build against ZooKeeper 3.4.0

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

Hudson commented on MAPREDUCE-3478:
-----------------------------------

Integrated in Hadoop-Hdfs-trunk #916 (See [https://builds.apache.org/job/Hadoop-Hdfs-trunk/916/])
    MAPREDUCE-3478. Cannot build against ZooKeeper 3.4.0. (Tom White via mahadev)

mahadev : http://svn.apache.org/viewcvs.cgi/?root=Apache-SVN&view=rev&rev=1227408
Files : 
* /hadoop/common/trunk/hadoop-mapreduce-project/CHANGES.txt
* /hadoop/common/trunk/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java
* /hadoop/common/trunk/hadoop-mapreduce-project/hadoop-yarn/pom.xml

                
> Cannot build against ZooKeeper 3.4.0
> ------------------------------------
>
>                 Key: MAPREDUCE-3478
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-3478
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>          Components: mrv2
>    Affects Versions: 0.23.0
>            Reporter: Andrew Bayer
>            Assignee: Tom White
>            Priority: Minor
>              Labels: bigtop
>             Fix For: 0.23.1
>
>         Attachments: MAPREDUCE-3478.patch, MAPREDUCE-3478.patch, MAPREDUCE-3478.patch
>
>
> I tried to see if one could build Hadoop 0.23.0 against ZooKeeper 3.4.0, rather than 3.3.1 (3.3.3 does work, fwiw) and hit compilation errors:
> {quote}
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (default-testCompile) on project hadoop-yarn-server-common: Compilation failure: Compilation failure:
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[48,25] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[150,33] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] -> [Help 1]
> {quote}
> Presumably, Yarn needs to build against newer ZK releases eventually, hence this bug. =)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (MAPREDUCE-3478) Cannot build against ZooKeeper 3.4.0

Posted by "Tom White (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/MAPREDUCE-3478?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13163856#comment-13163856 ] 

Tom White commented on MAPREDUCE-3478:
--------------------------------------

My motivation for upgrading now is to allow Hadoop 0.23 and HBase 0.92 to use the same version of ZooKeeper. Does that sound reasonable?
                
> Cannot build against ZooKeeper 3.4.0
> ------------------------------------
>
>                 Key: MAPREDUCE-3478
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-3478
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>          Components: mrv2
>    Affects Versions: 0.23.0
>            Reporter: Andrew Bayer
>            Priority: Minor
>              Labels: bigtop
>         Attachments: MAPREDUCE-3478.patch
>
>
> I tried to see if one could build Hadoop 0.23.0 against ZooKeeper 3.4.0, rather than 3.3.1 (3.3.3 does work, fwiw) and hit compilation errors:
> {quote}
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (default-testCompile) on project hadoop-yarn-server-common: Compilation failure: Compilation failure:
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[48,25] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[150,33] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] -> [Help 1]
> {quote}
> Presumably, Yarn needs to build against newer ZK releases eventually, hence this bug. =)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Updated] (MAPREDUCE-3478) Cannot build against ZooKeeper 3.4.0

Posted by "Tom White (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/MAPREDUCE-3478?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Tom White updated MAPREDUCE-3478:
---------------------------------

    Attachment: MAPREDUCE-3478.patch

Here's a patch that upgrades to ZooKeeper 3.4.0.
                
> Cannot build against ZooKeeper 3.4.0
> ------------------------------------
>
>                 Key: MAPREDUCE-3478
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-3478
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>          Components: mrv2
>    Affects Versions: 0.23.0
>            Reporter: Andrew Bayer
>            Priority: Minor
>              Labels: bigtop
>         Attachments: MAPREDUCE-3478.patch
>
>
> I tried to see if one could build Hadoop 0.23.0 against ZooKeeper 3.4.0, rather than 3.3.1 (3.3.3 does work, fwiw) and hit compilation errors:
> {quote}
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (default-testCompile) on project hadoop-yarn-server-common: Compilation failure: Compilation failure:
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[48,25] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[150,33] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] -> [Help 1]
> {quote}
> Presumably, Yarn needs to build against newer ZK releases eventually, hence this bug. =)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Assigned] (MAPREDUCE-3478) Cannot build against ZooKeeper 3.4.0

Posted by "Mahadev konar (Assigned) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/MAPREDUCE-3478?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mahadev konar reassigned MAPREDUCE-3478:
----------------------------------------

    Assignee: Tom White
    
> Cannot build against ZooKeeper 3.4.0
> ------------------------------------
>
>                 Key: MAPREDUCE-3478
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-3478
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>          Components: mrv2
>    Affects Versions: 0.23.0
>            Reporter: Andrew Bayer
>            Assignee: Tom White
>            Priority: Minor
>              Labels: bigtop
>         Attachments: MAPREDUCE-3478.patch, MAPREDUCE-3478.patch, MAPREDUCE-3478.patch
>
>
> I tried to see if one could build Hadoop 0.23.0 against ZooKeeper 3.4.0, rather than 3.3.1 (3.3.3 does work, fwiw) and hit compilation errors:
> {quote}
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (default-testCompile) on project hadoop-yarn-server-common: Compilation failure: Compilation failure:
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[48,25] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[150,33] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] -> [Help 1]
> {quote}
> Presumably, Yarn needs to build against newer ZK releases eventually, hence this bug. =)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (MAPREDUCE-3478) Cannot build against ZooKeeper 3.4.0

Posted by "Mahadev konar (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/MAPREDUCE-3478?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13177065#comment-13177065 ] 

Mahadev konar commented on MAPREDUCE-3478:
------------------------------------------

Best to wait for 3.4.2 release. Should be out tommorrow. Apologize for the confusion on ZK releases.
                
> Cannot build against ZooKeeper 3.4.0
> ------------------------------------
>
>                 Key: MAPREDUCE-3478
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-3478
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>          Components: mrv2
>    Affects Versions: 0.23.0
>            Reporter: Andrew Bayer
>            Priority: Minor
>              Labels: bigtop
>         Attachments: MAPREDUCE-3478.patch, MAPREDUCE-3478.patch
>
>
> I tried to see if one could build Hadoop 0.23.0 against ZooKeeper 3.4.0, rather than 3.3.1 (3.3.3 does work, fwiw) and hit compilation errors:
> {quote}
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (default-testCompile) on project hadoop-yarn-server-common: Compilation failure: Compilation failure:
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[48,25] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[150,33] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] -> [Help 1]
> {quote}
> Presumably, Yarn needs to build against newer ZK releases eventually, hence this bug. =)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Updated] (MAPREDUCE-3478) Cannot build against ZooKeeper 3.4.0

Posted by "Tom White (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/MAPREDUCE-3478?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Tom White updated MAPREDUCE-3478:
---------------------------------

    Attachment: MAPREDUCE-3478.patch

Updated to ZooKeeper 3.4.1.
                
> Cannot build against ZooKeeper 3.4.0
> ------------------------------------
>
>                 Key: MAPREDUCE-3478
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-3478
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>          Components: mrv2
>    Affects Versions: 0.23.0
>            Reporter: Andrew Bayer
>            Priority: Minor
>              Labels: bigtop
>         Attachments: MAPREDUCE-3478.patch, MAPREDUCE-3478.patch
>
>
> I tried to see if one could build Hadoop 0.23.0 against ZooKeeper 3.4.0, rather than 3.3.1 (3.3.3 does work, fwiw) and hit compilation errors:
> {quote}
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (default-testCompile) on project hadoop-yarn-server-common: Compilation failure: Compilation failure:
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[48,25] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[150,33] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] -> [Help 1]
> {quote}
> Presumably, Yarn needs to build against newer ZK releases eventually, hence this bug. =)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (MAPREDUCE-3478) Cannot build against ZooKeeper 3.4.0

Posted by "Eli Collins (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/MAPREDUCE-3478?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13160248#comment-13160248 ] 

Eli Collins commented on MAPREDUCE-3478:
----------------------------------------

Seems like we should modify MR2 to not depend on private ZK apis (or make that API non-private in ZK if it needs to be).
                
> Cannot build against ZooKeeper 3.4.0
> ------------------------------------
>
>                 Key: MAPREDUCE-3478
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-3478
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>          Components: mrv2
>    Affects Versions: 0.23.0
>            Reporter: Andrew Bayer
>            Priority: Minor
>              Labels: bigtop
>
> I tried to see if one could build Hadoop 0.23.0 against ZooKeeper 3.4.0, rather than 3.3.1 (3.3.3 does work, fwiw) and hit compilation errors:
> {quote}
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (default-testCompile) on project hadoop-yarn-server-common: Compilation failure: Compilation failure:
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[48,25] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[150,33] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] -> [Help 1]
> {quote}
> Presumably, Yarn needs to build against newer ZK releases eventually, hence this bug. =)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (MAPREDUCE-3478) Cannot build against ZooKeeper 3.4.0

Posted by "Hadoop QA (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/MAPREDUCE-3478?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13179818#comment-13179818 ] 

Hadoop QA commented on MAPREDUCE-3478:
--------------------------------------

-1 overall.  Here are the results of testing the latest attachment 
  http://issues.apache.org/jira/secure/attachment/12508910/MAPREDUCE-3478.patch
  against trunk revision .

    +1 @author.  The patch does not contain any @author tags.

    +1 tests included.  The patch appears to include 3 new or modified tests.

    +1 javadoc.  The javadoc tool did not generate any warning messages.

    +1 javac.  The applied patch does not increase the total number of javac compiler warnings.

    +1 eclipse:eclipse.  The patch built with eclipse:eclipse.

    +1 findbugs.  The patch does not introduce any new Findbugs (version 1.3.9) warnings.

    +1 release audit.  The applied patch does not increase the total number of release audit warnings.

    -1 core tests.  The patch failed these unit tests:
                  org.apache.hadoop.mapred.TestLocalModeWithNewApis
                  org.apache.hadoop.mapred.TestMRWithDistributedCache
                  org.apache.hadoop.mapred.TestJobClientGetJob

    +1 contrib tests.  The patch passed contrib unit tests.

Test results: https://builds.apache.org/job/PreCommit-MAPREDUCE-Build/1536//testReport/
Console output: https://builds.apache.org/job/PreCommit-MAPREDUCE-Build/1536//console

This message is automatically generated.
                
> Cannot build against ZooKeeper 3.4.0
> ------------------------------------
>
>                 Key: MAPREDUCE-3478
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-3478
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>          Components: mrv2
>    Affects Versions: 0.23.0
>            Reporter: Andrew Bayer
>            Assignee: Tom White
>            Priority: Minor
>              Labels: bigtop
>         Attachments: MAPREDUCE-3478.patch, MAPREDUCE-3478.patch, MAPREDUCE-3478.patch
>
>
> I tried to see if one could build Hadoop 0.23.0 against ZooKeeper 3.4.0, rather than 3.3.1 (3.3.3 does work, fwiw) and hit compilation errors:
> {quote}
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (default-testCompile) on project hadoop-yarn-server-common: Compilation failure: Compilation failure:
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[48,25] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[150,33] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] -> [Help 1]
> {quote}
> Presumably, Yarn needs to build against newer ZK releases eventually, hence this bug. =)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (MAPREDUCE-3478) Cannot build against ZooKeeper 3.4.0

Posted by "Tom White (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/MAPREDUCE-3478?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13165840#comment-13165840 ] 

Tom White commented on MAPREDUCE-3478:
--------------------------------------

Certainly - I was thinking the same thing.
                
> Cannot build against ZooKeeper 3.4.0
> ------------------------------------
>
>                 Key: MAPREDUCE-3478
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-3478
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>          Components: mrv2
>    Affects Versions: 0.23.0
>            Reporter: Andrew Bayer
>            Priority: Minor
>              Labels: bigtop
>         Attachments: MAPREDUCE-3478.patch
>
>
> I tried to see if one could build Hadoop 0.23.0 against ZooKeeper 3.4.0, rather than 3.3.1 (3.3.3 does work, fwiw) and hit compilation errors:
> {quote}
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (default-testCompile) on project hadoop-yarn-server-common: Compilation failure: Compilation failure:
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[48,25] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[150,33] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] -> [Help 1]
> {quote}
> Presumably, Yarn needs to build against newer ZK releases eventually, hence this bug. =)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (MAPREDUCE-3478) Cannot build against ZooKeeper 3.4.0

Posted by "Patrick Hunt (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/MAPREDUCE-3478?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13160170#comment-13160170 ] 

Patrick Hunt commented on MAPREDUCE-3478:
-----------------------------------------

Mahadev - do we (zk) want to fix this with a 3.4.1 release or is this something that should be handled by MR? (this is not a public api but still, for mr/hbase and the like it might be good to address)
                
> Cannot build against ZooKeeper 3.4.0
> ------------------------------------
>
>                 Key: MAPREDUCE-3478
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-3478
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>          Components: mrv2
>    Affects Versions: 0.23.0
>            Reporter: Andrew Bayer
>            Priority: Minor
>              Labels: bigtop
>
> I tried to see if one could build Hadoop 0.23.0 against ZooKeeper 3.4.0, rather than 3.3.1 (3.3.3 does work, fwiw) and hit compilation errors:
> {quote}
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (default-testCompile) on project hadoop-yarn-server-common: Compilation failure: Compilation failure:
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[48,25] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[150,33] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] -> [Help 1]
> {quote}
> Presumably, Yarn needs to build against newer ZK releases eventually, hence this bug. =)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (MAPREDUCE-3478) Cannot build against ZooKeeper 3.4.0

Posted by "Mahadev konar (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/MAPREDUCE-3478?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13163875#comment-13163875 ] 

Mahadev konar commented on MAPREDUCE-3478:
------------------------------------------

I can understand. I was expecting to do some performance testing with a complete RM restart solution soon. With 3.4.0 I might end up debugging both MRv2/ZK and thats why my hesitance to upgrade. But if it makes life easier for bigtop folks, I can bear the brunt of debugging both :).
                
> Cannot build against ZooKeeper 3.4.0
> ------------------------------------
>
>                 Key: MAPREDUCE-3478
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-3478
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>          Components: mrv2
>    Affects Versions: 0.23.0
>            Reporter: Andrew Bayer
>            Priority: Minor
>              Labels: bigtop
>         Attachments: MAPREDUCE-3478.patch
>
>
> I tried to see if one could build Hadoop 0.23.0 against ZooKeeper 3.4.0, rather than 3.3.1 (3.3.3 does work, fwiw) and hit compilation errors:
> {quote}
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (default-testCompile) on project hadoop-yarn-server-common: Compilation failure: Compilation failure:
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[48,25] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[150,33] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] -> [Help 1]
> {quote}
> Presumably, Yarn needs to build against newer ZK releases eventually, hence this bug. =)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (MAPREDUCE-3478) Cannot build against ZooKeeper 3.4.0

Posted by "Patrick Hunt (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/MAPREDUCE-3478?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13160268#comment-13160268 ] 

Patrick Hunt commented on MAPREDUCE-3478:
-----------------------------------------

@mahadev - sounds good.
@eli - my thinking was that if this is something useful for downstream users (ie easier testing against zk) then we might want to address. but given comments we're good (no zk change).
                
> Cannot build against ZooKeeper 3.4.0
> ------------------------------------
>
>                 Key: MAPREDUCE-3478
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-3478
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>          Components: mrv2
>    Affects Versions: 0.23.0
>            Reporter: Andrew Bayer
>            Priority: Minor
>              Labels: bigtop
>
> I tried to see if one could build Hadoop 0.23.0 against ZooKeeper 3.4.0, rather than 3.3.1 (3.3.3 does work, fwiw) and hit compilation errors:
> {quote}
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (default-testCompile) on project hadoop-yarn-server-common: Compilation failure: Compilation failure:
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[48,25] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[150,33] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] -> [Help 1]
> {quote}
> Presumably, Yarn needs to build against newer ZK releases eventually, hence this bug. =)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (MAPREDUCE-3478) Cannot build against ZooKeeper 3.4.0

Posted by "Hadoop QA (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/MAPREDUCE-3478?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13172431#comment-13172431 ] 

Hadoop QA commented on MAPREDUCE-3478:
--------------------------------------

+1 overall.  Here are the results of testing the latest attachment 
  http://issues.apache.org/jira/secure/attachment/12507922/MAPREDUCE-3478.patch
  against trunk revision .

    +1 @author.  The patch does not contain any @author tags.

    +1 tests included.  The patch appears to include 3 new or modified tests.

    +1 javadoc.  The javadoc tool did not generate any warning messages.

    +1 javac.  The applied patch does not increase the total number of javac compiler warnings.

    +1 eclipse:eclipse.  The patch built with eclipse:eclipse.

    +1 findbugs.  The patch does not introduce any new Findbugs (version 1.3.9) warnings.

    +1 release audit.  The applied patch does not increase the total number of release audit warnings.

    +1 core tests.  The patch passed unit tests in .

    +1 contrib tests.  The patch passed contrib unit tests.

Test results: https://builds.apache.org/job/PreCommit-MAPREDUCE-Build/1477//testReport/
Console output: https://builds.apache.org/job/PreCommit-MAPREDUCE-Build/1477//console

This message is automatically generated.
                
> Cannot build against ZooKeeper 3.4.0
> ------------------------------------
>
>                 Key: MAPREDUCE-3478
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-3478
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>          Components: mrv2
>    Affects Versions: 0.23.0
>            Reporter: Andrew Bayer
>            Priority: Minor
>              Labels: bigtop
>         Attachments: MAPREDUCE-3478.patch, MAPREDUCE-3478.patch
>
>
> I tried to see if one could build Hadoop 0.23.0 against ZooKeeper 3.4.0, rather than 3.3.1 (3.3.3 does work, fwiw) and hit compilation errors:
> {quote}
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (default-testCompile) on project hadoop-yarn-server-common: Compilation failure: Compilation failure:
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[48,25] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[150,33] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] -> [Help 1]
> {quote}
> Presumably, Yarn needs to build against newer ZK releases eventually, hence this bug. =)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (MAPREDUCE-3478) Cannot build against ZooKeeper 3.4.0

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

Hudson commented on MAPREDUCE-3478:
-----------------------------------

Integrated in Hadoop-Hdfs-0.23-Build #129 (See [https://builds.apache.org/job/Hadoop-Hdfs-0.23-Build/129/])
    MAPREDUCE-3478. Cannot build against ZooKeeper 3.4.0. (Tom White via mahadev) - Merging r1227408 from trunk.

mahadev : http://svn.apache.org/viewcvs.cgi/?root=Apache-SVN&view=rev&rev=1227409
Files : 
* /hadoop/common/branches/branch-0.23/hadoop-mapreduce-project/CHANGES.txt
* /hadoop/common/branches/branch-0.23/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java
* /hadoop/common/branches/branch-0.23/hadoop-mapreduce-project/hadoop-yarn/pom.xml

                
> Cannot build against ZooKeeper 3.4.0
> ------------------------------------
>
>                 Key: MAPREDUCE-3478
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-3478
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>          Components: mrv2
>    Affects Versions: 0.23.0
>            Reporter: Andrew Bayer
>            Assignee: Tom White
>            Priority: Minor
>              Labels: bigtop
>             Fix For: 0.23.1
>
>         Attachments: MAPREDUCE-3478.patch, MAPREDUCE-3478.patch, MAPREDUCE-3478.patch
>
>
> I tried to see if one could build Hadoop 0.23.0 against ZooKeeper 3.4.0, rather than 3.3.1 (3.3.3 does work, fwiw) and hit compilation errors:
> {quote}
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (default-testCompile) on project hadoop-yarn-server-common: Compilation failure: Compilation failure:
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[48,25] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[150,33] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] -> [Help 1]
> {quote}
> Presumably, Yarn needs to build against newer ZK releases eventually, hence this bug. =)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (MAPREDUCE-3478) Cannot build against ZooKeeper 3.4.0

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

Hudson commented on MAPREDUCE-3478:
-----------------------------------

Integrated in Hadoop-Mapreduce-0.23-Commit #350 (See [https://builds.apache.org/job/Hadoop-Mapreduce-0.23-Commit/350/])
    MAPREDUCE-3478. Cannot build against ZooKeeper 3.4.0. (Tom White via mahadev) - Merging r1227408 from trunk.

mahadev : http://svn.apache.org/viewcvs.cgi/?root=Apache-SVN&view=rev&rev=1227409
Files : 
* /hadoop/common/branches/branch-0.23/hadoop-mapreduce-project/CHANGES.txt
* /hadoop/common/branches/branch-0.23/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java
* /hadoop/common/branches/branch-0.23/hadoop-mapreduce-project/hadoop-yarn/pom.xml

                
> Cannot build against ZooKeeper 3.4.0
> ------------------------------------
>
>                 Key: MAPREDUCE-3478
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-3478
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>          Components: mrv2
>    Affects Versions: 0.23.0
>            Reporter: Andrew Bayer
>            Assignee: Tom White
>            Priority: Minor
>              Labels: bigtop
>             Fix For: 0.23.1
>
>         Attachments: MAPREDUCE-3478.patch, MAPREDUCE-3478.patch, MAPREDUCE-3478.patch
>
>
> I tried to see if one could build Hadoop 0.23.0 against ZooKeeper 3.4.0, rather than 3.3.1 (3.3.3 does work, fwiw) and hit compilation errors:
> {quote}
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (default-testCompile) on project hadoop-yarn-server-common: Compilation failure: Compilation failure:
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[48,25] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[150,33] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] -> [Help 1]
> {quote}
> Presumably, Yarn needs to build against newer ZK releases eventually, hence this bug. =)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Updated] (MAPREDUCE-3478) Cannot build against ZooKeeper 3.4.0

Posted by "Mahadev konar (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/MAPREDUCE-3478?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mahadev konar updated MAPREDUCE-3478:
-------------------------------------

    Attachment: MAPREDUCE-3478.patch

Just changed 3.4.1 ZK to 3.4.2 version.
                
> Cannot build against ZooKeeper 3.4.0
> ------------------------------------
>
>                 Key: MAPREDUCE-3478
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-3478
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>          Components: mrv2
>    Affects Versions: 0.23.0
>            Reporter: Andrew Bayer
>            Priority: Minor
>              Labels: bigtop
>         Attachments: MAPREDUCE-3478.patch, MAPREDUCE-3478.patch, MAPREDUCE-3478.patch
>
>
> I tried to see if one could build Hadoop 0.23.0 against ZooKeeper 3.4.0, rather than 3.3.1 (3.3.3 does work, fwiw) and hit compilation errors:
> {quote}
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (default-testCompile) on project hadoop-yarn-server-common: Compilation failure: Compilation failure:
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[48,25] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[150,33] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] -> [Help 1]
> {quote}
> Presumably, Yarn needs to build against newer ZK releases eventually, hence this bug. =)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (MAPREDUCE-3478) Cannot build against ZooKeeper 3.4.0

Posted by "Mahadev konar (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/MAPREDUCE-3478?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13179978#comment-13179978 ] 

Mahadev konar commented on MAPREDUCE-3478:
------------------------------------------

The test failures are unrelated to this patch. I reran jenkins again just to see if they flaky tests or not. I plan to commit this shortly.
                
> Cannot build against ZooKeeper 3.4.0
> ------------------------------------
>
>                 Key: MAPREDUCE-3478
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-3478
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>          Components: mrv2
>    Affects Versions: 0.23.0
>            Reporter: Andrew Bayer
>            Assignee: Tom White
>            Priority: Minor
>              Labels: bigtop
>         Attachments: MAPREDUCE-3478.patch, MAPREDUCE-3478.patch, MAPREDUCE-3478.patch
>
>
> I tried to see if one could build Hadoop 0.23.0 against ZooKeeper 3.4.0, rather than 3.3.1 (3.3.3 does work, fwiw) and hit compilation errors:
> {quote}
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (default-testCompile) on project hadoop-yarn-server-common: Compilation failure: Compilation failure:
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[48,25] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[150,33] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] -> [Help 1]
> {quote}
> Presumably, Yarn needs to build against newer ZK releases eventually, hence this bug. =)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (MAPREDUCE-3478) Cannot build against ZooKeeper 3.4.0

Posted by "Mahadev konar (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/MAPREDUCE-3478?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13165754#comment-13165754 ] 

Mahadev konar commented on MAPREDUCE-3478:
------------------------------------------

@Tom,
 Looks like 3.4.0 has data consistency issues. We'll be doing a 3.4.1 soon (as in should be available sometime next week). Want to wait for that?
                
> Cannot build against ZooKeeper 3.4.0
> ------------------------------------
>
>                 Key: MAPREDUCE-3478
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-3478
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>          Components: mrv2
>    Affects Versions: 0.23.0
>            Reporter: Andrew Bayer
>            Priority: Minor
>              Labels: bigtop
>         Attachments: MAPREDUCE-3478.patch
>
>
> I tried to see if one could build Hadoop 0.23.0 against ZooKeeper 3.4.0, rather than 3.3.1 (3.3.3 does work, fwiw) and hit compilation errors:
> {quote}
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (default-testCompile) on project hadoop-yarn-server-common: Compilation failure: Compilation failure:
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[48,25] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[150,33] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] -> [Help 1]
> {quote}
> Presumably, Yarn needs to build against newer ZK releases eventually, hence this bug. =)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (MAPREDUCE-3478) Cannot build against ZooKeeper 3.4.0

Posted by "Hadoop QA (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/MAPREDUCE-3478?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13177523#comment-13177523 ] 

Hadoop QA commented on MAPREDUCE-3478:
--------------------------------------

-1 overall.  Here are the results of testing the latest attachment 
  http://issues.apache.org/jira/secure/attachment/12508910/MAPREDUCE-3478.patch
  against trunk revision .

    +1 @author.  The patch does not contain any @author tags.

    +1 tests included.  The patch appears to include 3 new or modified tests.

    +1 javadoc.  The javadoc tool did not generate any warning messages.

    -1 javac.  The patch appears to cause tar ant target to fail.

    -1 eclipse:eclipse.  The patch failed to build with eclipse:eclipse.

    -1 findbugs.  The patch appears to cause Findbugs (version 1.3.9) to fail.

    +1 release audit.  The applied patch does not increase the total number of release audit warnings.

    -1 core tests.  The patch failed the unit tests build

    +1 contrib tests.  The patch passed contrib unit tests.

Test results: https://builds.apache.org/job/PreCommit-MAPREDUCE-Build/1522//testReport/
Console output: https://builds.apache.org/job/PreCommit-MAPREDUCE-Build/1522//console

This message is automatically generated.
                
> Cannot build against ZooKeeper 3.4.0
> ------------------------------------
>
>                 Key: MAPREDUCE-3478
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-3478
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>          Components: mrv2
>    Affects Versions: 0.23.0
>            Reporter: Andrew Bayer
>            Priority: Minor
>              Labels: bigtop
>         Attachments: MAPREDUCE-3478.patch, MAPREDUCE-3478.patch, MAPREDUCE-3478.patch
>
>
> I tried to see if one could build Hadoop 0.23.0 against ZooKeeper 3.4.0, rather than 3.3.1 (3.3.3 does work, fwiw) and hit compilation errors:
> {quote}
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (default-testCompile) on project hadoop-yarn-server-common: Compilation failure: Compilation failure:
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[48,25] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[150,33] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] -> [Help 1]
> {quote}
> Presumably, Yarn needs to build against newer ZK releases eventually, hence this bug. =)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (MAPREDUCE-3478) Cannot build against ZooKeeper 3.4.0

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

Hudson commented on MAPREDUCE-3478:
-----------------------------------

Integrated in Hadoop-Hdfs-0.23-Commit #328 (See [https://builds.apache.org/job/Hadoop-Hdfs-0.23-Commit/328/])
    MAPREDUCE-3478. Cannot build against ZooKeeper 3.4.0. (Tom White via mahadev) - Merging r1227408 from trunk.

mahadev : http://svn.apache.org/viewcvs.cgi/?root=Apache-SVN&view=rev&rev=1227409
Files : 
* /hadoop/common/branches/branch-0.23/hadoop-mapreduce-project/CHANGES.txt
* /hadoop/common/branches/branch-0.23/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java
* /hadoop/common/branches/branch-0.23/hadoop-mapreduce-project/hadoop-yarn/pom.xml

                
> Cannot build against ZooKeeper 3.4.0
> ------------------------------------
>
>                 Key: MAPREDUCE-3478
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-3478
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>          Components: mrv2
>    Affects Versions: 0.23.0
>            Reporter: Andrew Bayer
>            Assignee: Tom White
>            Priority: Minor
>              Labels: bigtop
>             Fix For: 0.23.1
>
>         Attachments: MAPREDUCE-3478.patch, MAPREDUCE-3478.patch, MAPREDUCE-3478.patch
>
>
> I tried to see if one could build Hadoop 0.23.0 against ZooKeeper 3.4.0, rather than 3.3.1 (3.3.3 does work, fwiw) and hit compilation errors:
> {quote}
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (default-testCompile) on project hadoop-yarn-server-common: Compilation failure: Compilation failure:
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[48,25] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[150,33] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] -> [Help 1]
> {quote}
> Presumably, Yarn needs to build against newer ZK releases eventually, hence this bug. =)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (MAPREDUCE-3478) Cannot build against ZooKeeper 3.4.0

Posted by "Andrew Purtell (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/MAPREDUCE-3478?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13162288#comment-13162288 ] 

Andrew Purtell commented on MAPREDUCE-3478:
-------------------------------------------

bq. This should be handled by MR. HBase does not use it.

We fixed up for this same compilation problem when we moved HBase 0.92 to 3.4.0.
                
> Cannot build against ZooKeeper 3.4.0
> ------------------------------------
>
>                 Key: MAPREDUCE-3478
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-3478
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>          Components: mrv2
>    Affects Versions: 0.23.0
>            Reporter: Andrew Bayer
>            Priority: Minor
>              Labels: bigtop
>
> I tried to see if one could build Hadoop 0.23.0 against ZooKeeper 3.4.0, rather than 3.3.1 (3.3.3 does work, fwiw) and hit compilation errors:
> {quote}
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (default-testCompile) on project hadoop-yarn-server-common: Compilation failure: Compilation failure:
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[48,25] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[150,33] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] -> [Help 1]
> {quote}
> Presumably, Yarn needs to build against newer ZK releases eventually, hence this bug. =)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (MAPREDUCE-3478) Cannot build against ZooKeeper 3.4.0

Posted by "Tom White (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/MAPREDUCE-3478?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13163891#comment-13163891 ] 

Tom White commented on MAPREDUCE-3478:
--------------------------------------

Thanks Mahadev.
                
> Cannot build against ZooKeeper 3.4.0
> ------------------------------------
>
>                 Key: MAPREDUCE-3478
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-3478
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>          Components: mrv2
>    Affects Versions: 0.23.0
>            Reporter: Andrew Bayer
>            Priority: Minor
>              Labels: bigtop
>         Attachments: MAPREDUCE-3478.patch
>
>
> I tried to see if one could build Hadoop 0.23.0 against ZooKeeper 3.4.0, rather than 3.3.1 (3.3.3 does work, fwiw) and hit compilation errors:
> {quote}
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (default-testCompile) on project hadoop-yarn-server-common: Compilation failure: Compilation failure:
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[48,25] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[150,33] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] -> [Help 1]
> {quote}
> Presumably, Yarn needs to build against newer ZK releases eventually, hence this bug. =)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Updated] (MAPREDUCE-3478) Cannot build against ZooKeeper 3.4.0

Posted by "Mahadev konar (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/MAPREDUCE-3478?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mahadev konar updated MAPREDUCE-3478:
-------------------------------------

    Resolution: Fixed
        Status: Resolved  (was: Patch Available)

I just committed this. Thanks Tom.
                
> Cannot build against ZooKeeper 3.4.0
> ------------------------------------
>
>                 Key: MAPREDUCE-3478
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-3478
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>          Components: mrv2
>    Affects Versions: 0.23.0
>            Reporter: Andrew Bayer
>            Assignee: Tom White
>            Priority: Minor
>              Labels: bigtop
>         Attachments: MAPREDUCE-3478.patch, MAPREDUCE-3478.patch, MAPREDUCE-3478.patch
>
>
> I tried to see if one could build Hadoop 0.23.0 against ZooKeeper 3.4.0, rather than 3.3.1 (3.3.3 does work, fwiw) and hit compilation errors:
> {quote}
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (default-testCompile) on project hadoop-yarn-server-common: Compilation failure: Compilation failure:
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[48,25] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[150,33] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] -> [Help 1]
> {quote}
> Presumably, Yarn needs to build against newer ZK releases eventually, hence this bug. =)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (MAPREDUCE-3478) Cannot build against ZooKeeper 3.4.0

Posted by "Eli Collins (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/MAPREDUCE-3478?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13172434#comment-13172434 ] 

Eli Collins commented on MAPREDUCE-3478:
----------------------------------------

+1 lgtm
                
> Cannot build against ZooKeeper 3.4.0
> ------------------------------------
>
>                 Key: MAPREDUCE-3478
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-3478
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>          Components: mrv2
>    Affects Versions: 0.23.0
>            Reporter: Andrew Bayer
>            Priority: Minor
>              Labels: bigtop
>         Attachments: MAPREDUCE-3478.patch, MAPREDUCE-3478.patch
>
>
> I tried to see if one could build Hadoop 0.23.0 against ZooKeeper 3.4.0, rather than 3.3.1 (3.3.3 does work, fwiw) and hit compilation errors:
> {quote}
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (default-testCompile) on project hadoop-yarn-server-common: Compilation failure: Compilation failure:
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[48,25] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[150,33] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] -> [Help 1]
> {quote}
> Presumably, Yarn needs to build against newer ZK releases eventually, hence this bug. =)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Updated] (MAPREDUCE-3478) Cannot build against ZooKeeper 3.4.0

Posted by "Tom White (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/MAPREDUCE-3478?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Tom White updated MAPREDUCE-3478:
---------------------------------

    Status: Patch Available  (was: Open)
    
> Cannot build against ZooKeeper 3.4.0
> ------------------------------------
>
>                 Key: MAPREDUCE-3478
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-3478
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>          Components: mrv2
>    Affects Versions: 0.23.0
>            Reporter: Andrew Bayer
>            Priority: Minor
>              Labels: bigtop
>         Attachments: MAPREDUCE-3478.patch
>
>
> I tried to see if one could build Hadoop 0.23.0 against ZooKeeper 3.4.0, rather than 3.3.1 (3.3.3 does work, fwiw) and hit compilation errors:
> {quote}
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (default-testCompile) on project hadoop-yarn-server-common: Compilation failure: Compilation failure:
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[48,25] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[150,33] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] -> [Help 1]
> {quote}
> Presumably, Yarn needs to build against newer ZK releases eventually, hence this bug. =)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (MAPREDUCE-3478) Cannot build against ZooKeeper 3.4.0

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

Hudson commented on MAPREDUCE-3478:
-----------------------------------

Integrated in Hadoop-Mapreduce-trunk #949 (See [https://builds.apache.org/job/Hadoop-Mapreduce-trunk/949/])
    MAPREDUCE-3478. Cannot build against ZooKeeper 3.4.0. (Tom White via mahadev)

mahadev : http://svn.apache.org/viewcvs.cgi/?root=Apache-SVN&view=rev&rev=1227408
Files : 
* /hadoop/common/trunk/hadoop-mapreduce-project/CHANGES.txt
* /hadoop/common/trunk/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java
* /hadoop/common/trunk/hadoop-mapreduce-project/hadoop-yarn/pom.xml

                
> Cannot build against ZooKeeper 3.4.0
> ------------------------------------
>
>                 Key: MAPREDUCE-3478
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-3478
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>          Components: mrv2
>    Affects Versions: 0.23.0
>            Reporter: Andrew Bayer
>            Assignee: Tom White
>            Priority: Minor
>              Labels: bigtop
>             Fix For: 0.23.1
>
>         Attachments: MAPREDUCE-3478.patch, MAPREDUCE-3478.patch, MAPREDUCE-3478.patch
>
>
> I tried to see if one could build Hadoop 0.23.0 against ZooKeeper 3.4.0, rather than 3.3.1 (3.3.3 does work, fwiw) and hit compilation errors:
> {quote}
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (default-testCompile) on project hadoop-yarn-server-common: Compilation failure: Compilation failure:
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[48,25] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[150,33] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] -> [Help 1]
> {quote}
> Presumably, Yarn needs to build against newer ZK releases eventually, hence this bug. =)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (MAPREDUCE-3478) Cannot build against ZooKeeper 3.4.0

Posted by "Eli Collins (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/MAPREDUCE-3478?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13163844#comment-13163844 ] 

Eli Collins commented on MAPREDUCE-3478:
----------------------------------------

+1  lgtm
                
> Cannot build against ZooKeeper 3.4.0
> ------------------------------------
>
>                 Key: MAPREDUCE-3478
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-3478
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>          Components: mrv2
>    Affects Versions: 0.23.0
>            Reporter: Andrew Bayer
>            Priority: Minor
>              Labels: bigtop
>         Attachments: MAPREDUCE-3478.patch
>
>
> I tried to see if one could build Hadoop 0.23.0 against ZooKeeper 3.4.0, rather than 3.3.1 (3.3.3 does work, fwiw) and hit compilation errors:
> {quote}
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (default-testCompile) on project hadoop-yarn-server-common: Compilation failure: Compilation failure:
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[48,25] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[150,33] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] -> [Help 1]
> {quote}
> Presumably, Yarn needs to build against newer ZK releases eventually, hence this bug. =)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (MAPREDUCE-3478) Cannot build against ZooKeeper 3.4.0

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

Hudson commented on MAPREDUCE-3478:
-----------------------------------

Integrated in Hadoop-Hdfs-trunk-Commit #1568 (See [https://builds.apache.org/job/Hadoop-Hdfs-trunk-Commit/1568/])
    MAPREDUCE-3478. Cannot build against ZooKeeper 3.4.0. (Tom White via mahadev)

mahadev : http://svn.apache.org/viewcvs.cgi/?root=Apache-SVN&view=rev&rev=1227408
Files : 
* /hadoop/common/trunk/hadoop-mapreduce-project/CHANGES.txt
* /hadoop/common/trunk/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java
* /hadoop/common/trunk/hadoop-mapreduce-project/hadoop-yarn/pom.xml

                
> Cannot build against ZooKeeper 3.4.0
> ------------------------------------
>
>                 Key: MAPREDUCE-3478
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-3478
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>          Components: mrv2
>    Affects Versions: 0.23.0
>            Reporter: Andrew Bayer
>            Assignee: Tom White
>            Priority: Minor
>              Labels: bigtop
>             Fix For: 0.23.1
>
>         Attachments: MAPREDUCE-3478.patch, MAPREDUCE-3478.patch, MAPREDUCE-3478.patch
>
>
> I tried to see if one could build Hadoop 0.23.0 against ZooKeeper 3.4.0, rather than 3.3.1 (3.3.3 does work, fwiw) and hit compilation errors:
> {quote}
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (default-testCompile) on project hadoop-yarn-server-common: Compilation failure: Compilation failure:
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[48,25] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[150,33] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] -> [Help 1]
> {quote}
> Presumably, Yarn needs to build against newer ZK releases eventually, hence this bug. =)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Updated] (MAPREDUCE-3478) Cannot build against ZooKeeper 3.4.0

Posted by "Arun C Murthy (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/MAPREDUCE-3478?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Arun C Murthy updated MAPREDUCE-3478:
-------------------------------------

    Status: Open  (was: Patch Available)

I guess we are waiting for ZK 3.4.2
                
> Cannot build against ZooKeeper 3.4.0
> ------------------------------------
>
>                 Key: MAPREDUCE-3478
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-3478
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>          Components: mrv2
>    Affects Versions: 0.23.0
>            Reporter: Andrew Bayer
>            Priority: Minor
>              Labels: bigtop
>         Attachments: MAPREDUCE-3478.patch, MAPREDUCE-3478.patch
>
>
> I tried to see if one could build Hadoop 0.23.0 against ZooKeeper 3.4.0, rather than 3.3.1 (3.3.3 does work, fwiw) and hit compilation errors:
> {quote}
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (default-testCompile) on project hadoop-yarn-server-common: Compilation failure: Compilation failure:
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[48,25] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[150,33] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] -> [Help 1]
> {quote}
> Presumably, Yarn needs to build against newer ZK releases eventually, hence this bug. =)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Updated] (MAPREDUCE-3478) Cannot build against ZooKeeper 3.4.0

Posted by "Mahadev konar (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/MAPREDUCE-3478?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mahadev konar updated MAPREDUCE-3478:
-------------------------------------

    Fix Version/s: 0.23.1
    
> Cannot build against ZooKeeper 3.4.0
> ------------------------------------
>
>                 Key: MAPREDUCE-3478
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-3478
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>          Components: mrv2
>    Affects Versions: 0.23.0
>            Reporter: Andrew Bayer
>            Assignee: Tom White
>            Priority: Minor
>              Labels: bigtop
>             Fix For: 0.23.1
>
>         Attachments: MAPREDUCE-3478.patch, MAPREDUCE-3478.patch, MAPREDUCE-3478.patch
>
>
> I tried to see if one could build Hadoop 0.23.0 against ZooKeeper 3.4.0, rather than 3.3.1 (3.3.3 does work, fwiw) and hit compilation errors:
> {quote}
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (default-testCompile) on project hadoop-yarn-server-common: Compilation failure: Compilation failure:
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[48,25] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[150,33] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] -> [Help 1]
> {quote}
> Presumably, Yarn needs to build against newer ZK releases eventually, hence this bug. =)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Updated] (MAPREDUCE-3478) Cannot build against ZooKeeper 3.4.0

Posted by "Mahadev konar (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/MAPREDUCE-3478?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mahadev konar updated MAPREDUCE-3478:
-------------------------------------

    Status: Patch Available  (was: Open)
    
> Cannot build against ZooKeeper 3.4.0
> ------------------------------------
>
>                 Key: MAPREDUCE-3478
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-3478
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>          Components: mrv2
>    Affects Versions: 0.23.0
>            Reporter: Andrew Bayer
>            Priority: Minor
>              Labels: bigtop
>         Attachments: MAPREDUCE-3478.patch, MAPREDUCE-3478.patch, MAPREDUCE-3478.patch
>
>
> I tried to see if one could build Hadoop 0.23.0 against ZooKeeper 3.4.0, rather than 3.3.1 (3.3.3 does work, fwiw) and hit compilation errors:
> {quote}
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (default-testCompile) on project hadoop-yarn-server-common: Compilation failure: Compilation failure:
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[48,25] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[150,33] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] -> [Help 1]
> {quote}
> Presumably, Yarn needs to build against newer ZK releases eventually, hence this bug. =)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (MAPREDUCE-3478) Cannot build against ZooKeeper 3.4.0

Posted by "Mahadev konar (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/MAPREDUCE-3478?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13159008#comment-13159008 ] 

Mahadev konar commented on MAPREDUCE-3478:
------------------------------------------

Thanks for opening this Andrew. I had run into this, but I wasnt planning on upgrading until sometime, so didnt open the jira ;).
                
> Cannot build against ZooKeeper 3.4.0
> ------------------------------------
>
>                 Key: MAPREDUCE-3478
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-3478
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>          Components: mrv2
>    Affects Versions: 0.23.0
>            Reporter: Andrew Bayer
>            Priority: Minor
>              Labels: bigtop
>
> I tried to see if one could build Hadoop 0.23.0 against ZooKeeper 3.4.0, rather than 3.3.1 (3.3.3 does work, fwiw) and hit compilation errors:
> {quote}
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (default-testCompile) on project hadoop-yarn-server-common: Compilation failure: Compilation failure:
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[48,25] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[150,33] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] -> [Help 1]
> {quote}
> Presumably, Yarn needs to build against newer ZK releases eventually, hence this bug. =)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (MAPREDUCE-3478) Cannot build against ZooKeeper 3.4.0

Posted by "Hadoop QA (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/MAPREDUCE-3478?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13180001#comment-13180001 ] 

Hadoop QA commented on MAPREDUCE-3478:
--------------------------------------

+1 overall.  Here are the results of testing the latest attachment 
  http://issues.apache.org/jira/secure/attachment/12508910/MAPREDUCE-3478.patch
  against trunk revision .

    +1 @author.  The patch does not contain any @author tags.

    +1 tests included.  The patch appears to include 3 new or modified tests.

    +1 javadoc.  The javadoc tool did not generate any warning messages.

    +1 javac.  The applied patch does not increase the total number of javac compiler warnings.

    +1 eclipse:eclipse.  The patch built with eclipse:eclipse.

    +1 findbugs.  The patch does not introduce any new Findbugs (version 1.3.9) warnings.

    +1 release audit.  The applied patch does not increase the total number of release audit warnings.

    +1 core tests.  The patch passed unit tests in .

    +1 contrib tests.  The patch passed contrib unit tests.

Test results: https://builds.apache.org/job/PreCommit-MAPREDUCE-Build/1541//testReport/
Console output: https://builds.apache.org/job/PreCommit-MAPREDUCE-Build/1541//console

This message is automatically generated.
                
> Cannot build against ZooKeeper 3.4.0
> ------------------------------------
>
>                 Key: MAPREDUCE-3478
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-3478
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>          Components: mrv2
>    Affects Versions: 0.23.0
>            Reporter: Andrew Bayer
>            Assignee: Tom White
>            Priority: Minor
>              Labels: bigtop
>         Attachments: MAPREDUCE-3478.patch, MAPREDUCE-3478.patch, MAPREDUCE-3478.patch
>
>
> I tried to see if one could build Hadoop 0.23.0 against ZooKeeper 3.4.0, rather than 3.3.1 (3.3.3 does work, fwiw) and hit compilation errors:
> {quote}
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (default-testCompile) on project hadoop-yarn-server-common: Compilation failure: Compilation failure:
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[48,25] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[150,33] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] -> [Help 1]
> {quote}
> Presumably, Yarn needs to build against newer ZK releases eventually, hence this bug. =)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (MAPREDUCE-3478) Cannot build against ZooKeeper 3.4.0

Posted by "Hadoop QA (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/MAPREDUCE-3478?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13163884#comment-13163884 ] 

Hadoop QA commented on MAPREDUCE-3478:
--------------------------------------

+1 overall.  Here are the results of testing the latest attachment 
  http://issues.apache.org/jira/secure/attachment/12506307/MAPREDUCE-3478.patch
  against trunk revision .

    +1 @author.  The patch does not contain any @author tags.

    +1 tests included.  The patch appears to include 3 new or modified tests.

    +1 javadoc.  The javadoc tool did not generate any warning messages.

    +1 javac.  The applied patch does not increase the total number of javac compiler warnings.

    +1 findbugs.  The patch does not introduce any new Findbugs (version 1.3.9) warnings.

    +1 release audit.  The applied patch does not increase the total number of release audit warnings.

    +1 core tests.  The patch passed unit tests in .

    +1 contrib tests.  The patch passed contrib unit tests.

Test results: https://builds.apache.org/job/PreCommit-MAPREDUCE-Build/1401//testReport/
Console output: https://builds.apache.org/job/PreCommit-MAPREDUCE-Build/1401//console

This message is automatically generated.
                
> Cannot build against ZooKeeper 3.4.0
> ------------------------------------
>
>                 Key: MAPREDUCE-3478
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-3478
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>          Components: mrv2
>    Affects Versions: 0.23.0
>            Reporter: Andrew Bayer
>            Priority: Minor
>              Labels: bigtop
>         Attachments: MAPREDUCE-3478.patch
>
>
> I tried to see if one could build Hadoop 0.23.0 against ZooKeeper 3.4.0, rather than 3.3.1 (3.3.3 does work, fwiw) and hit compilation errors:
> {quote}
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (default-testCompile) on project hadoop-yarn-server-common: Compilation failure: Compilation failure:
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[48,25] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[150,33] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] -> [Help 1]
> {quote}
> Presumably, Yarn needs to build against newer ZK releases eventually, hence this bug. =)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (MAPREDUCE-3478) Cannot build against ZooKeeper 3.4.0

Posted by "Mahadev konar (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/MAPREDUCE-3478?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13163849#comment-13163849 ] 

Mahadev konar commented on MAPREDUCE-3478:
------------------------------------------

Tom,
 Any reason we want to upgrade right now? I'd say we can wait until 3.4.1.
                
> Cannot build against ZooKeeper 3.4.0
> ------------------------------------
>
>                 Key: MAPREDUCE-3478
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-3478
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>          Components: mrv2
>    Affects Versions: 0.23.0
>            Reporter: Andrew Bayer
>            Priority: Minor
>              Labels: bigtop
>         Attachments: MAPREDUCE-3478.patch
>
>
> I tried to see if one could build Hadoop 0.23.0 against ZooKeeper 3.4.0, rather than 3.3.1 (3.3.3 does work, fwiw) and hit compilation errors:
> {quote}
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (default-testCompile) on project hadoop-yarn-server-common: Compilation failure: Compilation failure:
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[48,25] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[150,33] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] -> [Help 1]
> {quote}
> Presumably, Yarn needs to build against newer ZK releases eventually, hence this bug. =)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (MAPREDUCE-3478) Cannot build against ZooKeeper 3.4.0

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

Hudson commented on MAPREDUCE-3478:
-----------------------------------

Integrated in Hadoop-Mapreduce-trunk-Commit #1516 (See [https://builds.apache.org/job/Hadoop-Mapreduce-trunk-Commit/1516/])
    MAPREDUCE-3478. Cannot build against ZooKeeper 3.4.0. (Tom White via mahadev)

mahadev : http://svn.apache.org/viewcvs.cgi/?root=Apache-SVN&view=rev&rev=1227408
Files : 
* /hadoop/common/trunk/hadoop-mapreduce-project/CHANGES.txt
* /hadoop/common/trunk/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java
* /hadoop/common/trunk/hadoop-mapreduce-project/hadoop-yarn/pom.xml

                
> Cannot build against ZooKeeper 3.4.0
> ------------------------------------
>
>                 Key: MAPREDUCE-3478
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-3478
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>          Components: mrv2
>    Affects Versions: 0.23.0
>            Reporter: Andrew Bayer
>            Assignee: Tom White
>            Priority: Minor
>              Labels: bigtop
>             Fix For: 0.23.1
>
>         Attachments: MAPREDUCE-3478.patch, MAPREDUCE-3478.patch, MAPREDUCE-3478.patch
>
>
> I tried to see if one could build Hadoop 0.23.0 against ZooKeeper 3.4.0, rather than 3.3.1 (3.3.3 does work, fwiw) and hit compilation errors:
> {quote}
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (default-testCompile) on project hadoop-yarn-server-common: Compilation failure: Compilation failure:
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[48,25] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[150,33] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] -> [Help 1]
> {quote}
> Presumably, Yarn needs to build against newer ZK releases eventually, hence this bug. =)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (MAPREDUCE-3478) Cannot build against ZooKeeper 3.4.0

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

Hudson commented on MAPREDUCE-3478:
-----------------------------------

Integrated in Hadoop-Common-0.23-Commit #339 (See [https://builds.apache.org/job/Hadoop-Common-0.23-Commit/339/])
    MAPREDUCE-3478. Cannot build against ZooKeeper 3.4.0. (Tom White via mahadev) - Merging r1227408 from trunk.

mahadev : http://svn.apache.org/viewcvs.cgi/?root=Apache-SVN&view=rev&rev=1227409
Files : 
* /hadoop/common/branches/branch-0.23/hadoop-mapreduce-project/CHANGES.txt
* /hadoop/common/branches/branch-0.23/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java
* /hadoop/common/branches/branch-0.23/hadoop-mapreduce-project/hadoop-yarn/pom.xml

                
> Cannot build against ZooKeeper 3.4.0
> ------------------------------------
>
>                 Key: MAPREDUCE-3478
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-3478
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>          Components: mrv2
>    Affects Versions: 0.23.0
>            Reporter: Andrew Bayer
>            Assignee: Tom White
>            Priority: Minor
>              Labels: bigtop
>             Fix For: 0.23.1
>
>         Attachments: MAPREDUCE-3478.patch, MAPREDUCE-3478.patch, MAPREDUCE-3478.patch
>
>
> I tried to see if one could build Hadoop 0.23.0 against ZooKeeper 3.4.0, rather than 3.3.1 (3.3.3 does work, fwiw) and hit compilation errors:
> {quote}
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (default-testCompile) on project hadoop-yarn-server-common: Compilation failure: Compilation failure:
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[48,25] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[150,33] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] -> [Help 1]
> {quote}
> Presumably, Yarn needs to build against newer ZK releases eventually, hence this bug. =)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (MAPREDUCE-3478) Cannot build against ZooKeeper 3.4.0

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

Hudson commented on MAPREDUCE-3478:
-----------------------------------

Integrated in Hadoop-Mapreduce-0.23-Build #151 (See [https://builds.apache.org/job/Hadoop-Mapreduce-0.23-Build/151/])
    MAPREDUCE-3478. Cannot build against ZooKeeper 3.4.0. (Tom White via mahadev) - Merging r1227408 from trunk.

mahadev : http://svn.apache.org/viewcvs.cgi/?root=Apache-SVN&view=rev&rev=1227409
Files : 
* /hadoop/common/branches/branch-0.23/hadoop-mapreduce-project/CHANGES.txt
* /hadoop/common/branches/branch-0.23/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java
* /hadoop/common/branches/branch-0.23/hadoop-mapreduce-project/hadoop-yarn/pom.xml

                
> Cannot build against ZooKeeper 3.4.0
> ------------------------------------
>
>                 Key: MAPREDUCE-3478
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-3478
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>          Components: mrv2
>    Affects Versions: 0.23.0
>            Reporter: Andrew Bayer
>            Assignee: Tom White
>            Priority: Minor
>              Labels: bigtop
>             Fix For: 0.23.1
>
>         Attachments: MAPREDUCE-3478.patch, MAPREDUCE-3478.patch, MAPREDUCE-3478.patch
>
>
> I tried to see if one could build Hadoop 0.23.0 against ZooKeeper 3.4.0, rather than 3.3.1 (3.3.3 does work, fwiw) and hit compilation errors:
> {quote}
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (default-testCompile) on project hadoop-yarn-server-common: Compilation failure: Compilation failure:
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[48,25] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[150,33] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] -> [Help 1]
> {quote}
> Presumably, Yarn needs to build against newer ZK releases eventually, hence this bug. =)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (MAPREDUCE-3478) Cannot build against ZooKeeper 3.4.0

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

Hudson commented on MAPREDUCE-3478:
-----------------------------------

Integrated in Hadoop-Common-trunk-Commit #1496 (See [https://builds.apache.org/job/Hadoop-Common-trunk-Commit/1496/])
    MAPREDUCE-3478. Cannot build against ZooKeeper 3.4.0. (Tom White via mahadev)

mahadev : http://svn.apache.org/viewcvs.cgi/?root=Apache-SVN&view=rev&rev=1227408
Files : 
* /hadoop/common/trunk/hadoop-mapreduce-project/CHANGES.txt
* /hadoop/common/trunk/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java
* /hadoop/common/trunk/hadoop-mapreduce-project/hadoop-yarn/pom.xml

                
> Cannot build against ZooKeeper 3.4.0
> ------------------------------------
>
>                 Key: MAPREDUCE-3478
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-3478
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>          Components: mrv2
>    Affects Versions: 0.23.0
>            Reporter: Andrew Bayer
>            Assignee: Tom White
>            Priority: Minor
>              Labels: bigtop
>             Fix For: 0.23.1
>
>         Attachments: MAPREDUCE-3478.patch, MAPREDUCE-3478.patch, MAPREDUCE-3478.patch
>
>
> I tried to see if one could build Hadoop 0.23.0 against ZooKeeper 3.4.0, rather than 3.3.1 (3.3.3 does work, fwiw) and hit compilation errors:
> {quote}
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (default-testCompile) on project hadoop-yarn-server-common: Compilation failure: Compilation failure:
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[48,25] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] /Volumes/EssEssDee/abayer/src/asf-git/hadoop-common/hadoop-mapreduce-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/java/org/apache/hadoop/yarn/lib/TestZKClient.java:[150,33] cannot find symbol
> [ERROR] symbol  : class Factory
> [ERROR] location: class org.apache.zookeeper.server.NIOServerCnxn
> [ERROR] -> [Help 1]
> {quote}
> Presumably, Yarn needs to build against newer ZK releases eventually, hence this bug. =)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira