Hadoop - How Job executed - Need step by step explaination

Aniruddha

I am learning hadoop. I am trying to visualize what happen after I submit job. I mean can somebody explain step-by-step what happen when I execute command

hadoop jar example.jar WordCount test.txt output

How this Java program submitted to JobTracker. How namenode, datanode comes into picture etc.

Thanks Aniruddha

user2486495

At the highest level, there are four independent entities:

The client, which submits the MapReduce job.

The jobtracker, which coordinates the job run. The jobtracker is a Java application whose main class is JobTracker.

The tasktrackers, which run the tasks that the job has been split into. Tasktrackers are Java applications whose main class is TaskTracker.

The distributed filesystem, which is used for sharing job files between the other entities.

Please go through the below link

http://answers.oreilly.com/topic/459-anatomy-of-a-mapreduce-job-run-with-hadoop/

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How do I submit more than one job to Hadoop in a step using the Elastic MapReduce API?

From Dev

How do I submit more than one job to Hadoop in a step using the Elastic MapReduce API?

From Dev

How to execute X times a Job Executor step

From Dev

Dummy step is not work in Job

From Dev

Spring Batch - why is the job Step bean is being created/executed in the web context instead of the Job context?

From Dev

what are the step by step process of starting hadoop

From Dev

what are the step by step process of starting hadoop

From Dev

does using many choose step effect the performance of the query gremlin Or How is a Choose step executed in gremlin

From Dev

How to write a code that will execute after each step is executed

From Dev

How to get currently executed Cucumber test scenario title and step text

From Dev

I need step by step guidence to recover grub

From Dev

I need step by step guidence to recover grub

From Dev

How to Load Coprocessor Step by Step

From Java

How to run a github-actions step, even if the previous step fails, while still failing the job

From Dev

How do I get the ID of the previous step execution in the next step of a spring batch job?

From Dev

How to add another step to a Spring Batch job using Annotations?

From Java

How to write conditional step with boolean parameter in jenkins scripted pipeline job?

From Dev

Skip step based on job parameter

From Dev

Skip step based on job parameter

From Dev

Hadoop Mapper parameters explaination

From Dev

Hadoop Mapper parameters explaination

From Dev

In teamcity, can an artifact be executed in a build step?

From Dev

Prepare step isn't being executed

From Dev

How to step-into, step-over and step-out with GDB?

From Java

How to step one step back in IntelliJ?

From Dev

How to execute a Julia script step by step?

From Dev

iOS: How to draw a circle step by step with NSTimer

From Dev

how to query SQL in rails step by step?

From Dev

How to walk through directory tree step by step?

Related Related

  1. 1

    How do I submit more than one job to Hadoop in a step using the Elastic MapReduce API?

  2. 2

    How do I submit more than one job to Hadoop in a step using the Elastic MapReduce API?

  3. 3

    How to execute X times a Job Executor step

  4. 4

    Dummy step is not work in Job

  5. 5

    Spring Batch - why is the job Step bean is being created/executed in the web context instead of the Job context?

  6. 6

    what are the step by step process of starting hadoop

  7. 7

    what are the step by step process of starting hadoop

  8. 8

    does using many choose step effect the performance of the query gremlin Or How is a Choose step executed in gremlin

  9. 9

    How to write a code that will execute after each step is executed

  10. 10

    How to get currently executed Cucumber test scenario title and step text

  11. 11

    I need step by step guidence to recover grub

  12. 12

    I need step by step guidence to recover grub

  13. 13

    How to Load Coprocessor Step by Step

  14. 14

    How to run a github-actions step, even if the previous step fails, while still failing the job

  15. 15

    How do I get the ID of the previous step execution in the next step of a spring batch job?

  16. 16

    How to add another step to a Spring Batch job using Annotations?

  17. 17

    How to write conditional step with boolean parameter in jenkins scripted pipeline job?

  18. 18

    Skip step based on job parameter

  19. 19

    Skip step based on job parameter

  20. 20

    Hadoop Mapper parameters explaination

  21. 21

    Hadoop Mapper parameters explaination

  22. 22

    In teamcity, can an artifact be executed in a build step?

  23. 23

    Prepare step isn't being executed

  24. 24

    How to step-into, step-over and step-out with GDB?

  25. 25

    How to step one step back in IntelliJ?

  26. 26

    How to execute a Julia script step by step?

  27. 27

    iOS: How to draw a circle step by step with NSTimer

  28. 28

    how to query SQL in rails step by step?

  29. 29

    How to walk through directory tree step by step?

HotTag

Archive