Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can Hadoop run on Nginx?

Tags:

nginx

hadoop

Is that possible to run Hadoop on Nginx? if so, is there any reference?

like image 372
murvinlai Avatar asked Jan 14 '11 19:01

murvinlai


2 Answers

Nginx is a http server, it has nothing to do with Hadoop.

like image 70
wlk Avatar answered Sep 26 '22 09:09

wlk


Well... Maybe you meant map/reduce jobs reading/writing over http?

The answer would be no... It would be too inefficient, because hadoop map reduce requires that data is processed locally.

Even when implementing streaming hadoop map/reduce jobs , data is read/written locally by a non java program.

like image 32
jayunit100 Avatar answered Sep 23 '22 09:09

jayunit100