Package org.apache.solr.update.processor
Class IgnoreLargeDocumentProcessorFactory
- java.lang.Object
-
- org.apache.solr.update.processor.UpdateRequestProcessorFactory
-
- org.apache.solr.update.processor.IgnoreLargeDocumentProcessorFactory
-
- All Implemented Interfaces:
NamedListInitializedPlugin
public class IgnoreLargeDocumentProcessorFactory extends UpdateRequestProcessorFactory
Gives system administrators a way to ignore very large update from clients. When an update goes through processors its size can change therefore this processor should be the last processor of the chain.
- Since:
- 7.4.0
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.solr.update.processor.UpdateRequestProcessorFactory
UpdateRequestProcessorFactory.RunAlways
-
-
Field Summary
Fields Modifier and Type Field Description static String
LIMIT_SIZE_PARAM
-
Constructor Summary
Constructors Constructor Description IgnoreLargeDocumentProcessorFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description UpdateRequestProcessor
getInstance(SolrQueryRequest req, SolrQueryResponse rsp, UpdateRequestProcessor next)
void
init(NamedList args)
-
-
-
Field Detail
-
LIMIT_SIZE_PARAM
public static final String LIMIT_SIZE_PARAM
- See Also:
- Constant Field Values
-
-
Method Detail
-
init
public void init(NamedList args)
- Specified by:
init
in interfaceNamedListInitializedPlugin
- Overrides:
init
in classUpdateRequestProcessorFactory
-
getInstance
public UpdateRequestProcessor getInstance(SolrQueryRequest req, SolrQueryResponse rsp, UpdateRequestProcessor next)
- Specified by:
getInstance
in classUpdateRequestProcessorFactory
-
-