@Generated(value="software.amazon.awssdk:codegen") public final class OrcSerDe extends Object implements SdkPojo, Serializable, ToCopyableBuilder<OrcSerDe.Builder,OrcSerDe>
A serializer to use for converting data to the ORC format before storing it in Amazon S3. For more information, see Apache ORC.
| Modifier and Type | Class and Description |
|---|---|
static interface |
OrcSerDe.Builder |
| Modifier and Type | Method and Description |
|---|---|
Integer |
blockSizeBytes()
The Hadoop Distributed File System (HDFS) block size.
|
List<String> |
bloomFilterColumns()
The column names for which you want Kinesis Data Firehose to create bloom filters.
|
Double |
bloomFilterFalsePositiveProbability()
The Bloom filter false positive probability (FPP).
|
static OrcSerDe.Builder |
builder() |
OrcCompression |
compression()
The compression code to use over data blocks.
|
String |
compressionAsString()
The compression code to use over data blocks.
|
Double |
dictionaryKeyThreshold()
Represents the fraction of the total number of non-null rows.
|
Boolean |
enablePadding()
Set this to
true to indicate that you want stripes to be padded to the HDFS block boundaries. |
boolean |
equals(Object obj) |
boolean |
equalsBySdkFields(Object obj) |
OrcFormatVersion |
formatVersion()
The version of the file to write.
|
String |
formatVersionAsString()
The version of the file to write.
|
<T> Optional<T> |
getValueForField(String fieldName,
Class<T> clazz) |
boolean |
hasBloomFilterColumns()
For responses, this returns true if the service returned a value for the BloomFilterColumns property.
|
int |
hashCode() |
Double |
paddingTolerance()
A number between 0 and 1 that defines the tolerance for block padding as a decimal fraction of stripe size.
|
Integer |
rowIndexStride()
The number of rows between index entries.
|
List<SdkField<?>> |
sdkFields() |
static Class<? extends OrcSerDe.Builder> |
serializableBuilderClass() |
Integer |
stripeSizeBytes()
The number of bytes in each stripe.
|
OrcSerDe.Builder |
toBuilder() |
String |
toString()
Returns a string representation of this object.
|
clone, finalize, getClass, notify, notifyAll, wait, wait, waitcopypublic final Integer stripeSizeBytes()
The number of bytes in each stripe. The default is 64 MiB and the minimum is 8 MiB.
public final Integer blockSizeBytes()
The Hadoop Distributed File System (HDFS) block size. This is useful if you intend to copy the data from Amazon S3 to HDFS before querying. The default is 256 MiB and the minimum is 64 MiB. Kinesis Data Firehose uses this value for padding calculations.
public final Integer rowIndexStride()
The number of rows between index entries. The default is 10,000 and the minimum is 1,000.
public final Boolean enablePadding()
Set this to true to indicate that you want stripes to be padded to the HDFS block boundaries. This
is useful if you intend to copy the data from Amazon S3 to HDFS before querying. The default is
false.
true to indicate that you want stripes to be padded to the HDFS block
boundaries. This is useful if you intend to copy the data from Amazon S3 to HDFS before querying. The
default is false.public final Double paddingTolerance()
A number between 0 and 1 that defines the tolerance for block padding as a decimal fraction of stripe size. The default value is 0.05, which means 5 percent of stripe size.
For the default values of 64 MiB ORC stripes and 256 MiB HDFS blocks, the default block padding tolerance of 5 percent reserves a maximum of 3.2 MiB for padding within the 256 MiB block. In such a case, if the available size within the block is more than 3.2 MiB, a new, smaller stripe is inserted to fit within that space. This ensures that no stripe crosses block boundaries and causes remote reads within a node-local task.
Kinesis Data Firehose ignores this parameter when OrcSerDe$EnablePadding is false.
For the default values of 64 MiB ORC stripes and 256 MiB HDFS blocks, the default block padding tolerance of 5 percent reserves a maximum of 3.2 MiB for padding within the 256 MiB block. In such a case, if the available size within the block is more than 3.2 MiB, a new, smaller stripe is inserted to fit within that space. This ensures that no stripe crosses block boundaries and causes remote reads within a node-local task.
Kinesis Data Firehose ignores this parameter when OrcSerDe$EnablePadding is false.
public final OrcCompression compression()
The compression code to use over data blocks. The default is SNAPPY.
If the service returns an enum value that is not available in the current SDK version, compression will
return OrcCompression.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available from
compressionAsString().
SNAPPY.OrcCompressionpublic final String compressionAsString()
The compression code to use over data blocks. The default is SNAPPY.
If the service returns an enum value that is not available in the current SDK version, compression will
return OrcCompression.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available from
compressionAsString().
SNAPPY.OrcCompressionpublic final boolean hasBloomFilterColumns()
isEmpty() method on the property).
This is useful because the SDK will never return a null collection or map, but you may need to differentiate
between the service returning nothing (or null) and the service returning an empty collection or map. For
requests, this returns true if a value for the property was specified in the request builder, and false if a
value was not specified.public final List<String> bloomFilterColumns()
The column names for which you want Kinesis Data Firehose to create bloom filters. The default is
null.
Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
This method will never return null. If you would like to know whether the service returned this field (so that
you can differentiate between null and empty), you can use the hasBloomFilterColumns() method.
null.public final Double bloomFilterFalsePositiveProbability()
The Bloom filter false positive probability (FPP). The lower the FPP, the bigger the Bloom filter. The default value is 0.05, the minimum is 0, and the maximum is 1.
public final Double dictionaryKeyThreshold()
Represents the fraction of the total number of non-null rows. To turn off dictionary encoding, set this fraction to a number that is less than the number of distinct keys in a dictionary. To always use dictionary encoding, set this threshold to 1.
public final OrcFormatVersion formatVersion()
The version of the file to write. The possible values are V0_11 and V0_12. The default
is V0_12.
If the service returns an enum value that is not available in the current SDK version, formatVersion
will return OrcFormatVersion.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available
from formatVersionAsString().
V0_11 and V0_12. The
default is V0_12.OrcFormatVersionpublic final String formatVersionAsString()
The version of the file to write. The possible values are V0_11 and V0_12. The default
is V0_12.
If the service returns an enum value that is not available in the current SDK version, formatVersion
will return OrcFormatVersion.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available
from formatVersionAsString().
V0_11 and V0_12. The
default is V0_12.OrcFormatVersionpublic OrcSerDe.Builder toBuilder()
toBuilder in interface ToCopyableBuilder<OrcSerDe.Builder,OrcSerDe>public static OrcSerDe.Builder builder()
public static Class<? extends OrcSerDe.Builder> serializableBuilderClass()
public final boolean equalsBySdkFields(Object obj)
equalsBySdkFields in interface SdkPojopublic final String toString()
Copyright © 2023. All rights reserved.