You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by ma...@apache.org on 2019/02/08 20:58:53 UTC

[nifi] 02/02: NIFI-5989: Update to property names to clarify difference between batch sizes

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

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

commit bc0e68ff2abbfc2a1f38f3fe34812eb4adfc92fd
Author: Mark Payne <ma...@hotmail.com>
AuthorDate: Fri Feb 8 15:58:43 2019 -0500

    NIFI-5989: Update to property names to clarify difference between batch sizes
---
 .../src/main/java/org/apache/nifi/processors/kudu/PutKudu.java           | 1 +
 1 file changed, 1 insertion(+)

diff --git a/nifi-nar-bundles/nifi-kudu-bundle/nifi-kudu-processors/src/main/java/org/apache/nifi/processors/kudu/PutKudu.java b/nifi-nar-bundles/nifi-kudu-bundle/nifi-kudu-processors/src/main/java/org/apache/nifi/processors/kudu/PutKudu.java
index 1a1d9b8..b0eb3f9 100644
--- a/nifi-nar-bundles/nifi-kudu-bundle/nifi-kudu-processors/src/main/java/org/apache/nifi/processors/kudu/PutKudu.java
+++ b/nifi-nar-bundles/nifi-kudu-bundle/nifi-kudu-processors/src/main/java/org/apache/nifi/processors/kudu/PutKudu.java
@@ -142,6 +142,7 @@ public class PutKudu extends AbstractProcessor {
 
     protected static final PropertyDescriptor BATCH_SIZE = new PropertyDescriptor.Builder()
         .name("Batch Size")
+        .displayName("Max Records per Batch")
         .description("The maximum number of Records to process in a single Kudu-client batch, between 1 - 100000. " +
             "Depending on your memory size, and data size per row set an appropriate batch size. " +
             "Gradually increase this number to find out the best one for best performances.")