How to set "compressionType" property in Glue Table via CDK
0
I'm using a Table resource to create a Glue Table like so:
this.glueTable = new Table(scope, `${props.glueTableName}`, {
database: this.glueDatabase,
tableName: props.glueTableName,
bucket: props.bucket,
partitionKeys: props.partitionKeys,
dataFormat: props.dataFormat,
columns: props.columns
});
I need to explicitly set the compressionType
of this table to "none"
. I see there is a way to do it via the console, where we go to Edit Table
, and then fill in the compressionType under Table properties
.
Can anyone point me to the prop to use if I want to do it using cdk?
asked 5 months ago43 views
1 Answers
Relevant questions
Update Records with AWS Glue
asked 3 months agoHow to set "compressionType" property in Glue Table via CDK
asked 5 months agoWhat's the meaning of an AWS Glue Database name in italic?
asked 3 months agoHow to upload a parquet format file of RDS table data to S3 without using snapshots
asked 5 months agoCreate a Glue table (Presto/Athena view) for analyzing ALB logs using CloudFormation or Terraform
asked 6 months agoCan Glue crawler be configured to include only the most recent partition in a table?
asked a month agoMSCK REPAIR TABLE behaves differently when executed via Spark Context vs Athena Console/boto3
asked a month agoPartition schema mismatch in Glue Table
asked a month agoGlue table not showing in console
asked 3 months agoIs there a way to create a Redshift Table from a Glue table's schema?
Accepted Answerasked 2 months ago