NIFI-2577: Increased default stripe size in ConvertAvroToORC to 64MB

This closes #870.
This commit is contained in:
Matt Burgess 2016-08-15 19:50:20 -04:00 committed by Pierre Villard
parent 6af768d0a1
commit 03d3b3961d
1 changed files with 1 additions and 1 deletions

View File

@ -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") .description("The size of the memory buffer (in bytes) for writing stripes to an ORC file")
.required(true) .required(true)
.addValidator(StandardValidators.DATA_SIZE_VALIDATOR) .addValidator(StandardValidators.DATA_SIZE_VALIDATOR)
.defaultValue("100 KB") .defaultValue("64 MB")
.build(); .build();
public static final PropertyDescriptor BUFFER_SIZE = new PropertyDescriptor.Builder() public static final PropertyDescriptor BUFFER_SIZE = new PropertyDescriptor.Builder()