Using Null solrindex to index multiple cores?

Is there a parameter in the bin/nutch solrindex to indicate which Solr kernel should be indexed to?

+6
source share
2 answers

I do not know any basic parameter. You should simply specify the kernel name in the solr url parameter as follows: http://localhost:8983/solr/core0 .

+8
source

In nutch 1.4, this is what I use to index into different kernels:

bin / nutl crawl urls / url1 -solr http: // localhost: 8983 / solr / core1 -depth 10 -topN 10000

0
source

Source: https://habr.com/ru/post/914607/


All Articles