You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ep...@apache.org on 2020/08/09 12:53:55 UTC

[lucene-solr] 01/02: batchSize is optional parameter with a default value

This is an automated email from the ASF dual-hosted git repository.

epugh pushed a commit to branch SOLR-14725
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git

commit 48f3f292b017878966609f675cee2bbc1db31ffc
Author: epugh <ep...@opensourceconnections.com>
AuthorDate: Sun Aug 9 08:52:16 2020 -0400

    batchSize is optional parameter with a default value
---
 solr/solr-ref-guide/src/stream-decorator-reference.adoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/solr/solr-ref-guide/src/stream-decorator-reference.adoc b/solr/solr-ref-guide/src/stream-decorator-reference.adoc
index f8ded82..a6958a8 100644
--- a/solr/solr-ref-guide/src/stream-decorator-reference.adoc
+++ b/solr/solr-ref-guide/src/stream-decorator-reference.adoc
@@ -603,7 +603,7 @@ This is similar to the `<<#update,update()>>` function described below.
 === delete Parameters
 
 * `destinationCollection`: (Mandatory) The collection where the tuples will deleted.
-* `batchSize`: (Mandatory) The indexing batch size.
+* `batchSize`: (Optional, defaults to `250`) The delete batch size.
 * `pruneVersionField`: (Optional, defaults to `false`) Whether to prune `\_version_` values from tuples
 * `StreamExpression`: (Mandatory)
 
@@ -1316,7 +1316,7 @@ The `update` function wraps another functions and sends the tuples to a SolrClou
 === update Parameters
 
 * `destinationCollection`: (Mandatory) The collection where the tuples will indexed.
-* `batchSize`: (Mandatory) The indexing batch size.
+* `batchSize`: (Optional, defaults to `250`) The indexing batch size.
 * `pruneVersionField`: (Optional, defaults to `true`) Wether to prune `\_version_` values from tuples
 * `StreamExpression`: (Mandatory)