Sachin
Sachin

Reputation: 1715

Working of nutch server in distributed mode

I would like to know how nutch server works actually in a distributed environment? Whether it use a listener for incoming crawl requests or it is a continuously running server?

Upvotes: 2

Views: 235

Answers (1)

Sujen Shah
Sujen Shah

Reputation: 270

Nutch REST API is built using Apache CXF framework and JAX-RS. The Nutch Server uses an embedded Jetty Server to service the http requests.

You can find out more about CXF and Jetty here (http://cxf.apache.org/docs/overview.html)

Upvotes: 2

Related Questions