On 3/2/2015 4:32 AM, marotosg wrote: > Is there any general approach to check if your indexed document matches the > database row?.
No, there's nothing out of the box that will do this. You'll need to write such an application yourself. You might want to leverage the /export handler in your application: https://cwiki.apache.org/confluence/display/solr/Exporting+Result+Sets Note that if you are not specifying stored="true" on all of your fields in the Solr schema, you will not be able to fully validate all of the data in your index. Thanks, Shawn