IDE for writing and running hadoop jobs?

hadoop, ide, java

Solution

You should also check out the IntelliJ IDEA as the Apache Hadoop wiki pages have instructions on how to set up your development environment using it.

References:

http://www.jetbrains.com/idea/

http://wiki.apache.org/hadoop/HadoopUnderIDEA

Problem

I have recently started learning the basics of Hadoop map-reduce programming in Java. So far, the only way I found is writing the code in a file using vi or emacs which seems awful, primitive and very painful. Is there any IDE for writing, compiling and running Hadoop programs?

Original source