Re: Partial update using solr 4.3 with csv input

2013-06-20 Thread Shalin Shekhar Mangar
Note that even though partial updates sounds like what you should do (because only part of your data has changed), unless you are dealing with lots of data, just re-adding everything (if possible) can be plenty fast. So before you write complex code to construct partial updates from your csv files,

Re: Partial update using solr 4.3 with csv input

2013-06-20 Thread Jack Krupansky
Jack Krupansky -Original Message- From: smanad Sent: Thursday, June 20, 2013 3:28 PM To: solr-user@lucene.apache.org Subject: Re: Partial update using solr 4.3 with csv input Thanks for confirming. So if my input is a csv file, I will need a script to read the "delta" changes

Re: Partial update using solr 4.3 with csv input

2013-06-20 Thread smanad
Thanks for confirming. So if my input is a csv file, I will need a script to read the "delta" changes one by one, convert it to json and then use 'update' handler with that piece of json data. Makes sense? Jack Krupansky-2 wrote > Correct, no atomic update for CSV format. There just isn't any

Re: Partial update using solr 4.3 with csv input

2013-06-19 Thread Jack Krupansky
Correct, no atomic update for CSV format. There just isn't any place to put the atomic update options in such a simple text format. -- Jack Krupansky -Original Message- From: smanad Sent: Wednesday, June 19, 2013 8:30 PM To: solr-user@lucene.apache.org Subject: Partial update using so