https://wiki.apache.org/solr/HowToReindex

 

The term “reindex” is not a special thing you can do with Solr. It literally means “index again.” You just have to restart Solr (or reload your core), possibly delete the existing index, and then repeat whatever actions you took to build your index in the first place.

Indexing (and reindexing) is not something that just happens. Solr has no ability to initiate indexing itself. There is the dataimport handler, but it will not do anything until it is called by something external to Solr.

Indexing is something that can be manually done by a person or automatically done by a program, but it is always external to Solr. There is an issue in the bugtracker for adding dataimport handler scheduling to Solr, but it is meeting with committer resistance, because *ALL* modern operating systems have a scheduling capability built in. Also, that would mean that Solr can change your index without external action, which is generally considered a bad idea by committers.

Depending on your setup and goals, you may need to delete all documents before you begin your indexing process. Sometimes it is necessary to delete your index directory entirely before you restart Solr or reload your core.

It’s reasonable to wonder why deleting the existing data and building it again is necessary. Here’s why: When you change your schema, nothing happens to the existing data in the index. When Solr tries to access the existing data in the index, it uses the schema as a guide to interpreting that data. If the index contains rows that have a field built with the SortableIntField class and then Solr tries to access that data with a different class (such as TrieIntField), there’s a good chance that an unrecoverable error will occur.

 

Index tips:

https://stackoverflow.com/questions/7743406/solr-indexing-is-taking-way-too-long

“From my experience indexing big chunks of data might take a while. Index I’m working on have 2m items (size: 10G). Full index takes about 40 hours using DB.
There are some factors that might slowing you down:

Might want to revisit some settings in SolrConfigXml:

https://wiki.apache.org/solr/SolrConfigXml#mainIndex_Section

 

The Seven Deadly Sins of Solr:

https://lucidworks.com/2010/01/21/the-seven-deadly-sins-of-solr/

 

Duplicates in Solr index – items added twice or more times:

“Actually, all added documents will have an auto generated unique key, through Solr’s own uuid type:

<field name=”uid” type=”uuid” indexed=”true” stored=”true” default=”NEW”/>

So any document added to the index will be considered a new one, since it gets a GUID. However, I think we’ve got a problem with some other code here, code that adds items to the index when they are updated, instead of just updating them […]

Ok, it turned out there was a couple of bugs in the code updating the index. Instead of updating, we always had a document added to index, even tho it already existed.

https://stackoverflow.com/questions/6580446/duplicates-in-solr-index-items-added-twice-or-more-times