Skip to content

agodomen/hadoop-maven-plugin

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

hadoop-maven-plugin

Latest release version (available in Maven Central) - 1.0.0.

Overview

Maven Plugin for running Apache Hadoop jobs in pseudo-distributed-mode (default configuration is changeable with hmp.hadoopConf property).

Verified on Linux and Mac OS X / JDK 1.6.0_33 / Apache Hadoop 0.21.0 and 1.0.2.

Goals

start - start NameNode, DataNode, JobTracker and TaskTracker
copyFromLocal - copy file/directory from local file system to HDFS
submitJob - submit job to Apache
copyToLocal - copy file/directory form HDFS to local file system
stop - stop daemons started by 'start' goal (necessary only if -Dhmp.autoShutdown=false been used)

NOTE: maven-dependency-plugin & maven-jar-plugin are used to assembly job jar. See sample project for details.

Quickstart

Add following snippet to your pom.xml (adjust <hadoopHome/> if needed) and hit "mvn hadoop:start -Dhmp.autoShutdown=false"

<plugin>
    <groupId>com.github.shyiko.hadoop-maven-plugin</groupId>
    <artifactId>hadoop-maven-plugin</artifactId>
    <version>1.0.0</version>
    <configuration>
        <hadoopHome>${user.home}/hadoop-0.21.0</hadoopHome>
    </configuration>
</plugin>

Sample

See sample-maven-project.

Notes

In case you are going to use custom Hadoop conf directory (default one is shown here), hdfs-site.xml should include a snippet provided below. Otherwise, 'mvn hadoop:start hadoop:submitJob' may fail (during hadoop:submitJob goal) due to the DataNode being still unavailable.

<property>
    <name>dfs.datanode.socket.write.timeout</name>
    <value>0</value>
</property>

License

Apache License, Version 2.0

About

Maven Plugin for Apache Hadoop

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 98.6%
  • XSLT 1.4%