Re: Solr:Skip document from indexing when it matches specific value

2016-03-23 Thread solr2020
thanks. i am able to do this by extending UpdateRequestProcessorFactory . -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-Skip-document-from-indexing-when-it-matches-specific-value-tp4264071p4265526.html Sent from the Solr - User mailing list archive at Nabble.com.

Solr:Skip document from indexing when it matches specific value

2016-03-19 Thread solr2020
Hi, 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. Thanks. -- View this message in c

Re: Solr:Skip document from indexing when it matches specific value

2016-03-19 Thread Shawn Heisey
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

Re: Solr:Skip document from indexing when it matches specific value

2016-03-18 Thread Jan Høydahl
Hi No OOTB as I know, but it would be 3 lines to create a custom one, which simply aborts the chain instead of calling super.processAdd(command) -- Jan Høydahl, search solution architect Cominvent AS - www.cominvent.com > 16. mar. 2016 kl. 12.36 skrev solr2020 : > > Hi, > > How we can ignore