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/09/14 13:36:09 UTC

[lucene-solr] branch branch_8x updated: SOLR-14725 update batchSize parameter docs for update() and delete() stream expressions (#1729)

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

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


The following commit(s) were added to refs/heads/branch_8x by this push:
     new 72af208  SOLR-14725 update batchSize parameter docs for update() and delete() stream expressions (#1729)
72af208 is described below

commit 72af208c26b6cb33336ca79e4f71f8ca6df8ca80
Author: Eric Pugh <ep...@opensourceconnections.com>
AuthorDate: Mon Sep 14 09:35:12 2020 -0400

    SOLR-14725 update batchSize parameter docs for update() and delete() stream expressions (#1729)
    
    * batchSize is optional parameter with a default value
    
    * typo
---
 solr/solr-ref-guide/src/stream-decorator-reference.adoc | 6 +++---
 1 file changed, 3 insertions(+), 3 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..7d97cbc 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,8 +1316,8 @@ 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.
-* `pruneVersionField`: (Optional, defaults to `true`) Wether to prune `\_version_` values from tuples
+* `batchSize`: (Optional, defaults to `250`) The indexing batch size.
+* `pruneVersionField`: (Optional, defaults to `true`) Whether to prune `\_version_` values from tuples
 * `StreamExpression`: (Mandatory)
 
 === update Syntax