且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

Hadoop之上的Servlet容器?

更新时间:2023-12-03 13:50:52

似乎没有运行在hadoop之上的servlet容器。这可能不会发生,因为hadoop / hbase用于在后台处理大数据,并且不会像用于Web应用程序的RDBMS那样快。

i'm on the architectural phase of a big project and i've decided to use hbase as my database, and will use map/reduce jobs for my processing so my architecture works totally under hadoop.

The thing is i also need to implement some REST, SOAP API's some web pages too so i was thinking is there any servlet container that runs on top of hadoop so that my system stays redundant and distributed without worrying about a secondary cluster machenism(since i allready setup one for hadoop).

So is there any servlet container that runs on top of hadoop, like hbase(a database) runs on top of hadoop?

seems like there is no servlet container that runs on top of hadoop yet. This probably wont ever happen since hadoop/hbase are used for processing big data behind the scenes and not expected to work as fast as a RDBMS which is used for a web application.