we have this for a collection which updated every 3mins with min of 500
documents and once in a day of 10k documents in start of the day

<autoCommit>
       <maxTime>${solr.autoCommit.maxTime:300000}</maxTime>
<maxDocs>10000</maxDocs>
        <openSearcher>true</openSearcher>
        <expungeDeletes>true</expungeDeletes>
     </autoCommit>
   <autoSoftCommit>
      <maxTime>${solr.autoSoftCommit.maxTime:6000}</maxTime>
   </autoSoftCommit>

As per solr documentation, If you have solr client to index documents,
its not suggested to use commit=true and optimize=true explicitly.

we have not tested data import handle with 10 million records.

we have settled with this config after many tests and after understanding
the need and requirements.


*Rajesh**.*

On Mon, Feb 8, 2016 at 10:15 AM, Troy Edwards <tedwards415...@gmail.com>
wrote:

> We are running the data import handler to retrieve about 10 million records
> during work hours every day of the week. We are using Clean = true, Commit
> = true and Optimize = true. The entire process takes about 1 hour.
>
> What would be a good setting for autoCommit and autoSoftCommit?
>
> Thanks
>

Reply via email to