enum OrcFormatVersion
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.KinesisFirehose.OrcFormatVersion |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awskinesisfirehose#OrcFormatVersion |
Java | software.amazon.awscdk.services.kinesisfirehose.OrcFormatVersion |
Python | aws_cdk.aws_kinesisfirehose.OrcFormatVersion |
TypeScript (source) | aws-cdk-lib » aws_kinesisfirehose » OrcFormatVersion |
The available WriterVersions for ORC output format.
Example
const outputFormat = new firehose.OrcOutputFormat({
formatVersion: firehose.OrcFormatVersion.V0_11,
blockSize: Size.mebibytes(256),
compression: firehose.OrcCompression.NONE,
bloomFilterColumns: ['columnA'],
bloomFilterFalsePositiveProbability: 0.1,
dictionaryKeyThreshold: 0.7,
enablePadding: true,
paddingTolerance: 0.2,
rowIndexStride: 9000,
stripeSize: Size.mebibytes(32),
})
Members
| Name | Description |
|---|---|
| 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. |
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.

.NET
Go
Java
Python
TypeScript (