Repository: nifi Updated Branches: refs/heads/master 6af768d0a -> 03d3b3961
NIFI-2577: Increased default stripe size in ConvertAvroToORC to 64MB This closes #870. Project: http://git-wip-us.apache.org/repos/asf/nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/03d3b396 Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/03d3b396 Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/03d3b396 Branch: refs/heads/master Commit: 03d3b3961d9fb91a9f1ca83d883522ac11f7a86c Parents: 6af768d Author: Matt Burgess <[email protected]> Authored: Mon Aug 15 19:50:20 2016 -0400 Committer: Pierre Villard <[email protected]> Committed: Tue Aug 16 11:53:05 2016 +0200 ---------------------------------------------------------------------- .../java/org/apache/nifi/processors/hive/ConvertAvroToORC.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/nifi/blob/03d3b396/nifi-nar-bundles/nifi-hive-bundle/nifi-hive-processors/src/main/java/org/apache/nifi/processors/hive/ConvertAvroToORC.java ---------------------------------------------------------------------- diff --git a/nifi-nar-bundles/nifi-hive-bundle/nifi-hive-processors/src/main/java/org/apache/nifi/processors/hive/ConvertAvroToORC.java b/nifi-nar-bundles/nifi-hive-bundle/nifi-hive-processors/src/main/java/org/apache/nifi/processors/hive/ConvertAvroToORC.java index 6100bd1..b5233b8 100644 --- a/nifi-nar-bundles/nifi-hive-bundle/nifi-hive-processors/src/main/java/org/apache/nifi/processors/hive/ConvertAvroToORC.java +++ b/nifi-nar-bundles/nifi-hive-bundle/nifi-hive-processors/src/main/java/org/apache/nifi/processors/hive/ConvertAvroToORC.java @@ -103,7 +103,7 @@ public class ConvertAvroToORC extends AbstractProcessor { .description("The size of the memory buffer (in bytes) for writing stripes to an ORC file") .required(true) .addValidator(StandardValidators.DATA_SIZE_VALIDATOR) - .defaultValue("100 KB") + .defaultValue("64 MB") .build(); public static final PropertyDescriptor BUFFER_SIZE = new PropertyDescriptor.Builder()
