Reputation: 359
I am trying to make full import for mysql table to solr. The issue is only 10 documents are indexed while the mysql table size is almost 1 million. When i debug the full-import request i always get"
<str name="Total Rows Fetched">10</str>
I am using Solr 5. How i can solve that?
Upvotes: 0
Views: 147
Reputation: 1361
Using DataImportHandler when you set "Debug" mode the default is index only 10 rows. To index more than 10 rows you can disable debug mode or set "Rows" to another value.
Upvotes: 1