OrcFormatVersion

class aws_cdk.aws_kinesisfirehose.OrcFormatVersion(*values)

Bases: Enum

The available WriterVersions for ORC output format.

ExampleMetadata:

infused

Example:

output_format = firehose.OrcOutputFormat(
    format_version=firehose.OrcFormatVersion.V0_11,
    block_size=Size.mebibytes(256),
    compression=firehose.OrcCompression.NONE,
    bloom_filter_columns=["columnA"],
    bloom_filter_false_positive_probability=0.1,
    dictionary_key_threshold=0.7,
    enable_padding=True,
    padding_tolerance=0.2,
    row_index_stride=9000,
    stripe_size=Size.mebibytes(32)
)

Attributes

V0_11

Use V0_11 ORC writer version when writing the output of the record transformation.

V0_12

Use V0_12 ORC writer version when writing the output of the record transformation.