You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by da...@apache.org on 2018/05/03 03:35:16 UTC

lucene-solr:master: SOLR-12278: Adding ref-guide doc for IgnoreLargeDocumentProcessorFactory

Repository: lucene-solr
Updated Branches:
  refs/heads/master 84925ba9a -> 596d0dc9a


SOLR-12278: Adding ref-guide doc for IgnoreLargeDocumentProcessorFactory


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/596d0dc9
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/596d0dc9
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/596d0dc9

Branch: refs/heads/master
Commit: 596d0dc9a6ef8633a078bf74ea377d727de4183e
Parents: 84925ba
Author: Cao Manh Dat <da...@apache.org>
Authored: Thu May 3 10:35:03 2018 +0700
Committer: Cao Manh Dat <da...@apache.org>
Committed: Thu May 3 10:35:03 2018 +0700

----------------------------------------------------------------------
 solr/solr-ref-guide/src/update-request-processors.adoc | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/596d0dc9/solr/solr-ref-guide/src/update-request-processors.adoc
----------------------------------------------------------------------
diff --git a/solr/solr-ref-guide/src/update-request-processors.adoc b/solr/solr-ref-guide/src/update-request-processors.adoc
index 6958628..14e64b6 100644
--- a/solr/solr-ref-guide/src/update-request-processors.adoc
+++ b/solr/solr-ref-guide/src/update-request-processors.adoc
@@ -275,6 +275,8 @@ What follows are brief descriptions of the currently available update request pr
 
 {solr-javadocs}/solr-core/org/apache/solr/update/processor/IgnoreCommitOptimizeUpdateProcessorFactory.html[IgnoreCommitOptimizeUpdateProcessorFactory]:: Allows you to ignore commit and/or optimize requests from client applications when running in SolrCloud mode, for more information, see: Shards and Indexing Data in SolrCloud
 
+{solr-javadocs}/solr-core/org/apache/solr/update/processor/IgnoreLargeDocumentProcessorFactory.html[IgnoreLargeDocumentProcessorFactory]:: Allows you to filtering out large document with more than `limit` (in KB) to Solr. It can help to prevent unexpected problems on indexing as well as on recovering because of very large documents.
+
 {solr-javadocs}/solr-core/org/apache/solr/update/processor/CloneFieldUpdateProcessorFactory.html[CloneFieldUpdateProcessorFactory]:: Clones the values found in any matching _source_ field into the configured _dest_ field.
 
 {solr-javadocs}/solr-core/org/apache/solr/update/processor/RegexpBoostProcessorFactory.html[RegexpBoostProcessorFactory]:: A processor which will match content of "inputField" against regular expressions found in "boostFilename", and if it matches will return the corresponding boost value from the file and output this to "boostField" as a double value.