On 3/16/2016 5:36 AM, solr2020 wrote: > How we can ignore a document from indexing into solr when a field matches > particular value. > Eg. we would like to ignore a document from indexing when document's field > path matches value "/content". Do we have any OOTB processors to accomplish > this in solr.
I do not know if any of the update processors included with Solr can do this. A list (possibly incomplete) of available update processors included with Solr has been compiled by a third party: http://www.solr-start.com/info/update-request-processors/ Here's some information in the community wiki: https://wiki.apache.org/solr/UpdateRequestProcessor#Full_list_of_UpdateRequestProcessor_Factories You can also write a custom update processor. The most effective way to do this is with Java, but there is a script processor included with Solr that can utilize other languages like Javascript. Here is information on configuring update processors in the Solr config: https://cwiki.apache.org/confluence/display/solr/Update+Request+Processors Thanks, Shawn