Re: Data import batch mode for delta

2018-04-17 Thread Shawn Heisey
On 4/16/2018 7:32 PM, gadelkareem wrote: I cannot complain cuz it actually worked well for me so far but.. I still do not understand if Solr already paginates the results from the full import, why not do the same for the delta. It is almost the same query: `select id from t where t.lastmod > ${s

Re: Data import batch mode for delta

2018-04-16 Thread gadelkareem
Thanks Shawn. I cannot complain cuz it actually worked well for me so far but.. I still do not understand if Solr already paginates the results from the full import, why not do the same for the delta. It is almost the same query: `select id from t where t.lastmod > ${solrTime}` `select * from t w

Re: Data import batch mode for delta

2018-04-05 Thread Shawn Heisey
On 4/5/2018 7:31 PM, gadelkareem wrote: Why the deltaImportQuery uses "where id='${dataimporter.id}'" instead of something like where id IN ('${dataimporter.id})' Because there's only one value for that property. If the deltaQuery returns a million rows, then deltaImportQuery is going to be e

Data import batch mode for delta

2018-04-05 Thread gadelkareem
Why the deltaImportQuery uses "where id='${dataimporter.id}'" instead of something like where id IN ('${dataimporter.id})' -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html