mirror of https://github.com/apache/nifi.git
NIFI-2577: Increased default stripe size in ConvertAvroToORC to 64MB
This closes #870.
This commit is contained in:
parent
6af768d0a1
commit
03d3b3961d
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue