-1

I need to find full instructions on how to download the Hadoop source code and how to configure it on Eclipse Kepler version.

jeremyjjbrown
  • 7,772
  • 5
  • 43
  • 55

2 Answers2

1

You would need eclipse plugin to run MR jobs from eclipse directly to a Hadoop cluster. Follow this link

Jerry Ragland
  • 611
  • 10
  • 17
0

The Hadoop source code is here.

https://github.com/apache/hadoop-common

You can download a complete Zip from GitHub, but eventually you should learn to use Git

Hadoop is a maven project so you can import it using these directions.

If what you really want (and I suspect it is) is to learn how to set up Hadoop in a single node and start wiring Map Reduce jobs I liked this tutorial.

Community
  • 1
  • 1
jeremyjjbrown
  • 7,772
  • 5
  • 43
  • 55