Hadoop – LUCENE and Hadoop

hadooplucene

i am using lucene for providing indexing and searching on text file.can i use HDFS for storing index file.

Best Answer

You interchange tasks: instead of thinking where to use Hadoop, first think what you need to implement your project. And if you see that you need Hadoop, it will become obvious where and how to use it.

One tip. Most probably you don't need neither Hadoop, nor even Lucene itself: Solr - search server created on top of Lucene - now has distributed setup, which is specifically designed for indexing and searching; Nutch may be used as front-end for Solr to crawl the web; and Tika may help you to parse all types of offline files.

Related Topic