@aws-cdk_aws-glue-alpha.OutputFormat

class OutputFormat ๐Ÿ”น

LanguageType name
.NETAmazon.CDK.AWS.Glue.Alpha.OutputFormat
Gogithub.com/aws/aws-cdk-go/awscdkgluealpha/v2#OutputFormat
Javasoftware.amazon.awscdk.services.glue.alpha.OutputFormat
Pythonaws_cdk.aws_glue_alpha.OutputFormat
TypeScript (source)@aws-cdk/aws-glue-alpha ยป OutputFormat

Absolute class name of the Hadoop OutputFormat to use when writing table files.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as glue_alpha from '@aws-cdk/aws-glue-alpha';
const outputFormat = new glue_alpha.OutputFormat('className');

Initializer

new OutputFormat(className: string)

Parameters

  • className string

Properties

NameTypeDescription
className๐Ÿ”นstring
static AVRO๐Ÿ”นInputFormatOutputFormat for Avro files.
static HIVE_IGNORE_KEY_TEXT๐Ÿ”นOutputFormatWrites text data with a null key (value only).
static ORC๐Ÿ”นInputFormatOutputFormat for Orc files.
static PARQUET๐Ÿ”นOutputFormatOutputFormat for Parquet files.

className๐Ÿ”น

Type: string


static AVRO๐Ÿ”น

Type: InputFormat

OutputFormat for Avro files.

See also: https://svn.apache.org/repos/infra/websites/production/hive/content/javadocs/r3.1.3/api/org/apache/hadoop/hive/ql/io/avro/AvroContainerOutputFormat.html


static HIVE_IGNORE_KEY_TEXT๐Ÿ”น

Type: OutputFormat

Writes text data with a null key (value only).

See also: https://svn.apache.org/repos/infra/websites/production/hive/content/javadocs/r3.1.3/api/org/apache/hadoop/hive/ql/io/HiveIgnoreKeyTextOutputFormat.html


static ORC๐Ÿ”น

Type: InputFormat

OutputFormat for Orc files.

See also: https://svn.apache.org/repos/infra/websites/production/hive/content/javadocs/r3.1.3/api/org/apache/hadoop/hive/ql/io/orc/OrcOutputFormat.html


static PARQUET๐Ÿ”น

Type: OutputFormat

OutputFormat for Parquet files.

See also: https://svn.apache.org/repos/infra/websites/production/hive/content/javadocs/r3.1.3/api/org/apache/hadoop/hive/ql/io/parquet/MapredParquetOutputFormat.html