Reputation: 1715
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
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