user3687679
user3687679

Reputation: 359

Index MYSQL table to solr 5

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

Answers (1)

Bruno dos Santos
Bruno dos Santos

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

Related Questions