Reputation: 1900
I'm building a small search app using Elasticsearch, AngularJS and Nutch. I pretty much have the ES and AngularJS part complete. Now its time for the Nutch and ES part, using Nutch to crawl AND index the data into ES. I have been using Nutch 1.10 with ES 1.4. I've been using Nutch v1.10 to do some initial small crawls of about (~50 sites) on my local machine. I now see that ES is up to v2.3 or something like that and it seems that Nutch v1.11 STILL uses ES v1.4.
Does anyone have any experience with Nutch v1.10 working with any version of ES greater than 1.4 (maybe ES v1.5 or v1.7)?
I'd like to stay with the Nutch 1.x branch if possible.
Upvotes: 0
Views: 653
Reputation: 3298
I haven't used Nutch along with ES 1.5/1.6/1.7 but there shouldn't be major changes between the API used by the indexer-elastic
plugin. I've just followed the instructions in https://github.com/apache/nutch/blob/master/src/plugin/indexer-elastic/howto_upgrade_es.txt and built/tested (ant test
) Nutch 1.11 with ES 1.7.2 without any troubles. This means, that the code built ok, but I have not tested indexing actual data into Elasticsearch.
You'll have to build your own Nutch distribution, I do recommend keep your elasticsearch client version in sync with the ES server version.
Upvotes: 1