Hadoop on windows server - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T20:48:55Zhttp://stackoverflow.com/feeds/question/467911http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/467911/hadoop-on-windows-server3Hadoop on windows serverLuca Martinetti2009-01-22T02:58:02Z2009-09-16T01:57:26Z
<p>Hello,</p>
<p>I'm thinking about using hadoop to process large text files on my existing windows 2003 servers (about 10 quad core machines with 16gb of RAM)</p>
<p>The questions are:</p>
<ol>
<li><p>Is there any good tutorial on how to configure an hadoop cluster on windows?</p></li>
<li><p>What are the requirements? java + cygwin + sshd ? Anything else?</p></li>
<li><p>HDFS, does it play nice on windows?</p></li>
<li><p>I'd like to use hadoop in streaming mode. Any advice, tool or trick to develop my own mapper / reducers in c#?</p></li>
<li><p>What do you use for submitting and monitoring the jobs?</p></li>
</ol>
<p>Thanks</p>
http://stackoverflow.com/questions/467911/hadoop-on-windows-server/570951#5709514Answer by bradheintz for Hadoop on windows serverbradheintz2009-02-20T19:40:44Z2009-02-20T19:40:44Z<p>From the <a href="http://hadoop.apache.org/core/docs/r0.19.0/quickstart.html#Supported+Platforms" rel="nofollow">Hadoop documentation</a>:</p>
<blockquote>
<p>Win32 is supported as a <em>development
platform</em>. Distributed operation has
not been well tested on Win32, so it
is not supported as a <em>production
platform</em>.</p>
</blockquote>
<p>Which I think translates to: "You're on your own."</p>
<p>That said, there might be hope if you're not queasy about installing Cygwin and a Java shim, according to the <a href="http://wiki.apache.org/hadoop/GettingStartedWithHadoop" rel="nofollow">Getting Started page of the Hadoop wiki</a>:</p>
<blockquote>
<p>It is also possible to run the Hadoop
daemons as Windows Services using the
Java Service Wrapper (download
this separately). This still requires
Cygwin to be installed as Hadoop
requires its df command.</p>
</blockquote>
<p>I guess the bottom line is that it doesn't sound impossible, but you'd be swimming upstream all the way. I've done a few Hadoop installs (on Linux for production, Mac for dev) now, and I wouldn't bother with Windows when it's so straightforward on other platforms.</p>
http://stackoverflow.com/questions/467911/hadoop-on-windows-server/779842#7798425Answer by Ilya Haykinson for Hadoop on windows serverIlya Haykinson2009-04-23T00:37:11Z2009-04-23T00:37:11Z<p>While not the answer you may want to hear, I would highly recommend repurposing the machines as, say, Linux servers, and running Hadoop there. You will benefit from tutorials and experience and testing performed on that platform, and spend your time solving business problems rather than operational issues.</p>
<p>However, you can still write your jobs in C#. Since Hadoop supports the "streaming" implementation, you can write your jobs in any language. With the Mono framework, you should be able to take pretty much any .NET code written on the Windows platform and just run the same binary on Linux.</p>
<p>You can also access HDFS from Windows fairly easily -- while I don't recommend running the Hadoop services on Windows, you can certainly run the DFS client from the Windows platform to copy files in and out of the distributed file system.</p>
<p>For submitting and monitoring jobs, I think that you're mainly on your own... I don't think that there are any good general-purpose systems developed for Hadoop job management yet.</p>
http://stackoverflow.com/questions/467911/hadoop-on-windows-server/1264755#12647551Answer by Tormod Hystad for Hadoop on windows serverTormod Hystad2009-08-12T07:35:37Z2009-08-12T07:35:37Z<p>Hayes Davis has written a tutorial for running Hadoop on Windows that seems to work for people here:
<a href="http://hayesdavis.net/2008/06/14/running-hadoop-on-windows/" rel="nofollow">http://hayesdavis.net/2008/06/14/running-hadoop-on-windows/</a></p>
http://stackoverflow.com/questions/467911/hadoop-on-windows-server/1409972#14099721Answer by Jeff Hammerbacher for Hadoop on windows serverJeff Hammerbacher2009-09-11T09:35:46Z2009-09-11T09:35:46Z<p>Hey Luca,</p>
<p>For question number 4, you may want to follow the progress of the hadoop-sharp project on Google Code: <a href="http://code.google.com/p/hadoop-sharp/" rel="nofollow">http://code.google.com/p/hadoop-sharp/</a>.</p>
<p>Regards,
Jeff</p>
http://stackoverflow.com/questions/467911/hadoop-on-windows-server/1430534#14305342Answer by Jonathan Lin for Hadoop on windows serverJonathan Lin2009-09-16T01:57:26Z2009-09-16T01:57:26Z<p>If you're looking for map/reduce, you can try looking at MySpace's new map/reduce framework that runs on windows <a href="http://qizmt.myspace.com/" rel="nofollow">http://qizmt.myspace.com/</a></p>