You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@flume.apache.org by "Arun C Murthy (Created) (JIRA)" <ji...@apache.org> on 2012/02/10 08:47:59 UTC

[jira] [Created] (FLUME-959) Change flume deps to Apache Hadoop etc.

Change flume deps to Apache Hadoop etc.
---------------------------------------

                 Key: FLUME-959
                 URL: https://issues.apache.org/jira/browse/FLUME-959
             Project: Flume
          Issue Type: Bug
          Components: Build
    Affects Versions: v0.9.4
            Reporter: Arun C Murthy
             Fix For: v0.9.5


Currently flume depends on CDH hadoop-core, not sure why.

>From pom.xml in trunk:

{code}
      <!-- Dependencies: compile - CDH components -->

      <dependency>
        <groupId>com.cloudera.zookeeper</groupId>
        <artifactId>zookeeper</artifactId>
        <version>3.3.1-10</version>
        <exclusions>
          <exclusion>
            <groupId>javax.jms</groupId>
            <artifactId>jms</artifactId>
          </exclusion>
          <exclusion>
            <groupId>com.sun.jdmk</groupId>
            <artifactId>jmxtools</artifactId>
          </exclusion>
          <exclusion>
            <groupId>com.sun.jmx</groupId>
            <artifactId>jmxri</artifactId>
          </exclusion>
        </exclusions>
      </dependency>

      <dependency>
        <groupId>org.apache.hadoop</groupId>
        <artifactId>hadoop-core</artifactId>
        <version>0.20.2-CDH3B4</version>
      </dependency>

{code}

--
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] (FLUME-959) Change flume deps to Apache Hadoop from CDH version of Hadoop

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

Arun C Murthy updated FLUME-959:
--------------------------------

    Description: 
Currently flume depends on CDH hadoop-core, not sure why.

>From pom.xml in trunk:

{code}
    <profile>
      <id>hadoop-0.20.2-CDH3B4</id>
      <activation>
        <property>
          <name>!hadoop.profile</name>
        </property>
      <activeByDefault>true</activeByDefault>
      </activation>
      <properties>
        <hadoop.version>0.20.2-CDH3B4</hadoop.version>
        <hadoop.common.artifact.id>hadoop-core</hadoop.common.artifact.id>
        <FlushingSeqFile>bar.java</FlushingSeqFile>
        <RawSeqFile>foo.java</RawSeqFile>
      </properties>
      <dependencyManagement>
        <dependencies>
          <dependency>
            <groupId>org.apache.hadoop</groupId>
            <artifactId>${hadoop.common.artifact.id}</artifactId>
            <version>${hadoop.version}</version>
          </dependency>
        </dependencies>
      </dependencyManagement>
    </profile>
{code}

This should be hadoop-1?


  was:
Currently flume depends on CDH hadoop-core, not sure why.

>From pom.xml in trunk:

{code}
      <!-- Dependencies: compile - CDH components -->

      <dependency>
        <groupId>com.cloudera.zookeeper</groupId>
        <artifactId>zookeeper</artifactId>
        <version>3.3.1-10</version>
        <exclusions>
          <exclusion>
            <groupId>javax.jms</groupId>
            <artifactId>jms</artifactId>
          </exclusion>
          <exclusion>
            <groupId>com.sun.jdmk</groupId>
            <artifactId>jmxtools</artifactId>
          </exclusion>
          <exclusion>
            <groupId>com.sun.jmx</groupId>
            <artifactId>jmxri</artifactId>
          </exclusion>
        </exclusions>
      </dependency>

      <dependency>
        <groupId>org.apache.hadoop</groupId>
        <artifactId>hadoop-core</artifactId>
        <version>0.20.2-CDH3B4</version>
      </dependency>

{code}

    
> Change flume deps to Apache Hadoop from CDH version of Hadoop
> -------------------------------------------------------------
>
>                 Key: FLUME-959
>                 URL: https://issues.apache.org/jira/browse/FLUME-959
>             Project: Flume
>          Issue Type: Bug
>          Components: Build
>    Affects Versions: v0.9.4
>            Reporter: Arun C Murthy
>              Labels: cdh, hadoop
>             Fix For: v0.9.5
>
>
> Currently flume depends on CDH hadoop-core, not sure why.
> From pom.xml in trunk:
> {code}
>     <profile>
>       <id>hadoop-0.20.2-CDH3B4</id>
>       <activation>
>         <property>
>           <name>!hadoop.profile</name>
>         </property>
>       <activeByDefault>true</activeByDefault>
>       </activation>
>       <properties>
>         <hadoop.version>0.20.2-CDH3B4</hadoop.version>
>         <hadoop.common.artifact.id>hadoop-core</hadoop.common.artifact.id>
>         <FlushingSeqFile>bar.java</FlushingSeqFile>
>         <RawSeqFile>foo.java</RawSeqFile>
>       </properties>
>       <dependencyManagement>
>         <dependencies>
>           <dependency>
>             <groupId>org.apache.hadoop</groupId>
>             <artifactId>${hadoop.common.artifact.id}</artifactId>
>             <version>${hadoop.version}</version>
>           </dependency>
>         </dependencies>
>       </dependencyManagement>
>     </profile>
> {code}
> This should be hadoop-1?

--
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] (FLUME-959) Change flume deps to Apache Hadoop from CDH version of Hadoop

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

Arun C Murthy updated FLUME-959:
--------------------------------

    Summary: Change flume deps to Apache Hadoop from CDH version of Hadoop  (was: Change flume deps to Apache Hadoop etc.)
    
> Change flume deps to Apache Hadoop from CDH version of Hadoop
> -------------------------------------------------------------
>
>                 Key: FLUME-959
>                 URL: https://issues.apache.org/jira/browse/FLUME-959
>             Project: Flume
>          Issue Type: Bug
>          Components: Build
>    Affects Versions: v0.9.4
>            Reporter: Arun C Murthy
>              Labels: cdh, hadoop
>             Fix For: v0.9.5
>
>
> Currently flume depends on CDH hadoop-core, not sure why.
> From pom.xml in trunk:
> {code}
>       <!-- Dependencies: compile - CDH components -->
>       <dependency>
>         <groupId>com.cloudera.zookeeper</groupId>
>         <artifactId>zookeeper</artifactId>
>         <version>3.3.1-10</version>
>         <exclusions>
>           <exclusion>
>             <groupId>javax.jms</groupId>
>             <artifactId>jms</artifactId>
>           </exclusion>
>           <exclusion>
>             <groupId>com.sun.jdmk</groupId>
>             <artifactId>jmxtools</artifactId>
>           </exclusion>
>           <exclusion>
>             <groupId>com.sun.jmx</groupId>
>             <artifactId>jmxri</artifactId>
>           </exclusion>
>         </exclusions>
>       </dependency>
>       <dependency>
>         <groupId>org.apache.hadoop</groupId>
>         <artifactId>hadoop-core</artifactId>
>         <version>0.20.2-CDH3B4</version>
>       </dependency>
> {code}

--
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