Thanks for the suggestion.
10 rows work for full-Import and Solr count query confirm 10 imported. :)
I've tried with debug=false and no improvement on larger number of
rows, such as 755000. I reduced the source side from 1 million rows to
just 755000 to test volume; borrowing the idea of "10 rows". :)
BTW, is there a place to specify the BatchSize for full-import?
full-import doesn't seem to do 20,000 at a time regardless of the batchSize
specified in JDBC driver.
The /dataimport in solrconfig.xml block is
<requestDispatcher>
<httpCaching never304="true" />
</requestDispatcher>
* <requestHandler name="/dataimport" class="solr.DataImportHandler">*
* <lst name="defaults">*
* <str name="config">db-data-config.xml</str>*
* </lst>*
* </requestHandler>*
<requestHandler name="/select" class="solr.SearchHandler">
<lst name="defaults">
<str name="echoParams">explicit</str>
<int name="rows">10</int>
</lst>
</requestHandler>
<requestHandler name="/query" class="solr.SearchHandler">
<lst name="defaults">
<str name="echoParams">explicit</str>
<str name="wt">json</str>
<str name="indent">true</str>
</lst>
</requestHandler>
>