0% found this document useful (0 votes)
7 views5 pages

Run Java MapReduce on Hadoop Guide

This document is a step-by-step guide for running a Java MapReduce program on Hadoop, starting from setting up the Hadoop environment to executing the program. It includes detailed instructions for creating a WordCount Java program, compiling it, preparing input data, running the job, and checking the output. Additionally, it provides information on monitoring the job through the web UI and optional cleanup steps.

Uploaded by

AYUSH
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views5 pages

Run Java MapReduce on Hadoop Guide

This document is a step-by-step guide for running a Java MapReduce program on Hadoop, starting from setting up the Hadoop environment to executing the program. It includes detailed instructions for creating a WordCount Java program, compiling it, preparing input data, running the job, and checking the output. Additionally, it provides information on monitoring the job through the web UI and optional cleanup steps.

Uploaded by

AYUSH
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Complete Step-by-Step Guide to Running a Java Program on Hadoop

This guide will walk you through everything from setting up your Hadoop environment to running a
Java MapReduce program on it.

🔹 Step 1: Set Up Hadoop


Before running a Java program, you need to ensure that Hadoop is correctly installed and
configured.

1.1 Start Hadoop Services


Run the following commands in your terminal:
[Link]
[Link]

This will start:


• HDFS Services (NameNode, DataNode, Secondary NameNode)
• YARN Services (ResourceManager, NodeManager)

1.2 Verify Services


Check if all Hadoop daemons are running:
jps
expected output:
NameNode
DataNode
SecondaryNameNode
ResourceManager
NodeManager

🔹 Step 2: Prepare Your Java Program


Now, let’s create a simple WordCount MapReduce program.

2.1 Create a New Java File


Open a terminal and create a new file:
nano [Link]
1. Copy and paste this code:
import [Link];
import [Link];
import [Link];
import [Link];
import [Link];
import [Link];
import [Link];
import [Link];
import [Link];
import [Link];
import [Link];

public class WordCount {


public static class TokenizerMapper extends Mapper<Object, Text, Text, IntWritable> {
private final static IntWritable one = new IntWritable(1);
private Text word = new Text();

public void map(Object key, Text value, Context context) throws IOException,
InterruptedException {
StringTokenizer itr = new StringTokenizer([Link]());
while ([Link]()) {
[Link]([Link]());
[Link](word, one);
}
}
}

public static class IntSumReducer extends Reducer<Text, IntWritable, Text, IntWritable> {


public void reduce(Text key, Iterable<IntWritable> values, Context context) throws
IOException, InterruptedException {
int sum = 0;
for (IntWritable val : values) {
sum += [Link]();
}
[Link](key, new IntWritable(sum));
}
}

public static void main(String[] args) throws Exception {


Configuration conf = new Configuration();
Job job = [Link](conf, "word count");
[Link]([Link]);
[Link]([Link]);
[Link]([Link]);
[Link]([Link]);
[Link]([Link]);
[Link]([Link]);
[Link](job, new Path(args[0]));
[Link](job, new Path(args[1]));
[Link]([Link](true) ? 0 : 1);
}
}

1. Save the file (CTRL + X, then Y, then Enter).

🔹 Step 3: Compile the Java Program


3.1 Set Up the Classpath
Since Hadoop has multiple JAR files, you need to specify them when compiling.
export HADOOP_CLASSPATH=$(hadoop classpath)

3.2 Compile the Java Code

javac -classpath $HADOOP_CLASSPATH -d . [Link]

3.3 Package it into a JAR File


jar -cvf [Link] *.class
Now, your Java program is ready to run on Hadoop.

🔹 Step 4: Prepare Input Data

4.1 Create an Input File

nano [Link]

Add the following sample text:


Hadoop is fun
Hadoop is powerful
I love Hadoop

Save (CTRL + X, Y, Enter).


Upload input file to hdfs
hdfs dfs -mkdir /input
hdfs dfs -put [Link] /input/

Verify the file


hdfs dfs -ls /input

Output
Found 1 items
-rw-r--r-- 1 username supergroup 34 2025-02-12 input/[Link]

Step 5: Run the Hadoop Job


Now, execute the MapReduce program using:
hadoop jar [Link] WordCount /input /output

🔹 Step 6: Check Output

6.1 View the Output Files


hdfs dfs -ls /output

6.2 Read the Output


hdfs dfs -cat /output/part-r-00000

Expected output:
Hadoop 3
I1
is 2
love 1
powerful 1
fun 1
🔹 Step 7: Web UI Monitoring

7.1 HDFS UI
• Open your browser and go to:
[Link]
• Click on "Utilities" → "Browse the file system"
• Navigate to /input/ and /output/ to see files.

7.2 YARN UI
• Open: [Link]
• Click “Applications” to monitor running jobs.

🔹 Step 8: Clean Up (Optional)


If you want to rerun the job, delete the previous output:
hdfs dfs -rm -r /output

You might also like