Re: Atomic solrj update

2019-12-15 Thread Paras Lehana
Hi Prem, Using HTTPClient to establish connection and also i am *validating* whether > the particular document is *available* in collection or not and after that > updating the document. Why do you need to validate the particular document before updating. Atomic updates either update the docume

Re: Atomic solrj update

2019-12-12 Thread Shawn Heisey
On 12/12/2019 10:00 PM, Prem wrote: I am trying to partially update of 50M data in a collection from CSV using Atomic script(solrj).But it is taking 2 hrs for 1M records.is there anyway i can speed up my update. How many documents are you sending in one request? Using HTTPClient to establish

Re: Atomic solrj update

2019-12-12 Thread Jörn Franke
One needs to see the code or get more insights on your design. Do you reuse the HTTPClient or do you create for every request a new one? How often do you commit? Do you do parallel updates from the client (multiple threads?). > Am 13.12.2019 um 06:56 schrieb Prem : > > I am trying to partially