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

jgresock pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git


The following commit(s) were added to refs/heads/main by this push:
     new 1d24c080ab NiFiNIFI-13103 Make AutoCommit default to no value set in 
PutDatabaseRecord. Remove unneeded carriage return.
1d24c080ab is described below

commit 1d24c080abdf583823933bc99eda3f9b38e7aaab
Author: Jim Steinebrey <[email protected]>
AuthorDate: Wed May 1 13:27:16 2024 -0400

    NiFiNIFI-13103 Make AutoCommit default to no value set in 
PutDatabaseRecord. Remove unneeded carriage return.
    
    Signed-off-by: Joe Gresock <[email protected]>
    This closes #8723.
---
 .../java/org/apache/nifi/processors/standard/PutDatabaseRecord.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/nifi-extension-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/PutDatabaseRecord.java
 
b/nifi-extension-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/PutDatabaseRecord.java
index 79b98d20e2..ddc584f802 100644
--- 
a/nifi-extension-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/PutDatabaseRecord.java
+++ 
b/nifi-extension-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/PutDatabaseRecord.java
@@ -369,8 +369,8 @@ public class PutDatabaseRecord extends AbstractProcessor {
     static final PropertyDescriptor MAX_BATCH_SIZE = new Builder()
             .name("put-db-record-max-batch-size")
             .displayName("Maximum Batch Size")
-            .description("Specifies maximum number of statements to be 
included in each batch. Zero means the batch size is not limited, "
-                    + "which can cause memory usage issues for a large number 
of statements.")
+            .description("Specifies maximum number of sql statements to be 
included in each batch sent to the database. Zero means the batch size is not 
limited, "
+                    + "and all statements are put into a single batch which 
can cause high memory usage issues for a very large number of statements.")
             .defaultValue("1000")
             .required(false)
             .addValidator(StandardValidators.NON_NEGATIVE_INTEGER_VALIDATOR)

Reply via email to