Running Hadoop MapReduce on Alluxio

    This guide describes how to configure Alluxio with Apache Hadoop MapReduce, so that your MapReduce programs can read+write data stored in Alluxio.

    • Make sure that the Alluxio client jar is available on each machine. This Alluxio client jar file can be found at in the tarball downloaded from the Alluxio download page. Alternatively, advanced users can compile the client jar from the source code by following the .
    • In order to run map-reduce examples, we also recommend downloading the hadoop-mapreduce-examples jar based on your Hadoop version. For example, if you are using Hadoop 2.7 download this .

    Add the following property to the core-site.xml of your Hadoop installation:

    This will allow MapReduce jobs to recognize URIs with Alluxio scheme alluxio:// in their input and output files.

    Distributing the Alluxio Client Jar

    In order for the MapReduce applications to read and write files in Alluxio, the Alluxio client jar must be on the JVM classpath of all nodes of the application.

    The Alluxio client jar should also be added to the HADOOP_CLASSPATH environment variable. This makes the Alluxio client available to JVMs which are created when running hadoop jar command:

    1. $ export HADOOP_CLASSPATH=/<PATH_TO_ALLUXIO>/client/alluxio-2.5.0-client.jar:${HADOOP_CLASSPATH}

    You can use the -libjars command line option when using hadoop jar ..., specifying /<PATH_TO_ALLUXIO>/client/alluxio-2.5.0-client.jar as the argument of -libjars. Hadoop will place the jar in the Hadoop DistributedCache, making it available to all the nodes. For example, the following command adds the Alluxio client jar to the -libjars option:

    1. $ ./bin/hadoop jar share/hadoop/mapreduce/hadoop-mapreduce-examples-2.7.3.jar wordcount \
    2. -libjars /<PATH_TO_ALLUXIO>/client/alluxio-2.5.0-client.jar <INPUT FILES> <OUTPUT DIRECTORY>

    Alternative configurations are described in the section.

    For this example, we will use a pseudo-distributed Hadoop cluster, started by running:

    1. $ cd $HADOOP_HOME
    2. $ ./bin/stop-all.sh
    3. $ ./bin/start-all.sh

    Start Alluxio locally:

    You can add a sample file to Alluxio to run MapReduce wordcount on. From your Alluxio directory:

    1. $ ./bin/alluxio fs mkdir /wordcount
    2. $ ./bin/alluxio fs copyFromLocal LICENSE /wordcount/input.txt

    This command will copy the file into the Alluxio namespace with the path /wordcount/input.txt.

    Now we can run a MapReduce job (using Hadoop 2.7.3 as example) for wordcount.

    1. $ ./bin/hadoop jar share/hadoop/mapreduce/hadoop-mapreduce-examples-2.7.3.jar wordcount \
    2. -libjars /<PATH_TO_ALLUXIO>/client/alluxio-2.5.0-client.jar \
    3. alluxio://localhost:19998/wordcount/input.txt \

    After this job completes, the result of the wordcount will be in the /wordcount/output directory in Alluxio. You can see the resulting files by running:

    1. $ ./bin/alluxio fs ls /wordcount/output
    2. $ ./bin/alluxio fs cat /wordcount/output/part-r-00000

    Tip:The previous wordcount example is also applicable to Alluxio in HA mode. See the instructions on Using the HDFS API to connect to Alluxio with high availability.

    This guide on describes several ways to distribute the jars to nodes in the cluster. From that guide, the recommended way to distribute the Alluxio client jar is to use the distributed cache, via the -libjars command line option. Another way to distribute the client jar is to manually distribute it to all the Hadoop nodes.

    You could place the client jar /<PATH_TO_ALLUXIO>/client/alluxio-2.5.0-client.jar in the $HADOOP_HOME/lib (it may be $HADOOP_HOME/share/hadoop/common/lib for different versions of Hadoop) directory of every MapReduce node, and then restart Hadoop. Alternatively, add this jar to mapreduce.application.classpath system property for your Hadoop deployment to the Alluxio client jar is on the classpath.

    Note that the jars must be installed again for each new release. On the other hand, when the jar is already on every node, then the -libjars command line option is not needed.

    Customize Alluxio User Properties for All MapReduce Jobs

    For example, when Alluxio is running in HA mode, all MapReduce jobs will need to have the Alluxio client configured to communicate to the masters in HA mode. To configure clients to communicate with an Alluxio cluster in HA mode using internal leader election, the following section would need to be added to your Hadoop installation’s core-site.xml

    See for more details.

    Hadoop MapReduce users can add "-Dproperty=value" after the hadoop jar or yarn jar command and the properties will be propagated to all the tasks of this job. For example, the following MapReduce wordcount job sets write type to CACHE_THROUGH when writing to Alluxio:

    1. -Dalluxio.user.file.writetype.default=CACHE_THROUGH \
    2. -libjars /<PATH_TO_ALLUXIO>/client/alluxio-2.5.0-client.jar \
    3. <INPUT FILES> <OUTPUT DIRECTORY>

    Logging Configuration

    Logs with Hadoop can be modified in many different ways. If you wish to directly modify the log4j.properties file for Hadoop, then you can add or modify appenders within ${HADOOP_HOME}/conf/log4j.properties on each of the nodes in your cluster.

    You may also modify the configuration values in in your installation. If you simply wish to modify log levels then your can change mapreduce.map.log.level or mapreduce.reduce.log.level.

    If you are using YARN then you may also wish to modify some of the yarn.log.* properties which can be found in yarn-site.xml

    A: This error message is seen when your MapReduce application tries to access Alluxio as an HDFS-compatible file system, but the alluxio:// scheme is not recognized by the application. Please make sure your Hadoop configuration file core-site.xml has the following property:

    1. <configuration>
    2. <property>
    3. <name>fs.alluxio.impl</name>
    4. <value>alluxio.hadoop.FileSystem</value>
    5. </property>
    6. </configuration>

    Q: Why do I see exceptions like “java.lang.RuntimeException: java.lang.ClassNotFoundException: Class alluxio.hadoop.FileSystem not found”?

    A: This error message is seen when your MapReduce application tries to access Alluxio as an HDFS-compatible file system, the alluxio:// scheme has been configured correctly but the Alluxio client jar is not found on the classpath of your application.

    You can append the client jar to $HADOOP_CLASSPATH: