Indexing CSV data in Multicore setup

2011-07-01 Thread Sandeep Gond
I am trying to index CSV data in multicore setup using post.jar. Here is what I have tried so far: 1) Started the server using "java -Dsolr.solr.home=multicore -jar start.jar" 2a) Tried to post to "localhost:8983/solr/core0/update/csv" using "java -Dcommit=no -Durl=http://localhost:8983/solr/core

Re: Indexing CSV data in Multicore setup

2011-07-02 Thread Sandeep Gond
Thanks Stefan. /update/csv handler was not defined in my solrconfig.xml. After defining it in the solconfig I could get the CSV files indexed using following two commands: > java -Dcommit=no -Durl=http://localhost:8983/solr/core0/update/csv -jar post.jar books.csv > java -Dcommit=yes -Durl=http:/