I have created two config file one is data-config.xml and onather is data-config- original.xml and in solrconfig.xml i have made entry as follows
<requestHandler name="/dataimport2"
class="org.apache.solr.handler.dataimport.DataImportHandler">
<lst name="defaults">
<str name="config">data-config.xml</str>
</lst>
</requestHandler>
<requestHandler name="/dataimport"
class="org.apache.solr.handler.dataimport.DataImportHandler">
<lst name="defaults">
<str name="config">data-config-original.xml</str>
</lst>
</requestHandler>
and i imports theses file using below url:
http://hostname:8080/solr/dataimport2?command=full-import
and
http://hostname:8080/solr/dataimport?command=full-import
but its shows only one indexed file at a time, when i see using below url:
http://hostname:8080/solr/select/?q=*&version=2.2&start=0&rows=10&indent=on
how can i import and indexed form multiple file or databases?