在文档中,我找到了如何以Glue table
格式创建JSON
的方法,但是找不到如何以Parquet
格式创建密码的方法。
我想我可以提供glue.DataFormat
的子类型,但是我不知道该怎么做https://docs.aws.amazon.com/cdk/api/latest/docs/aws-glue-readme.html
答案 0 :(得分:0)
好的,我在Terraform网站上发现了什么工作价值。 https://www.terraform.io/docs/providers/aws/r/glue_catalog_table.html
const glue_DataFormat_Parquet = <glue.DataFormat> {
inputFormat: new glue.InputFormat('org.apache.hadoop.hive.ql.io.parquet.MapredParquetInputFormat'),
outputFormat: new glue.OutputFormat('org.apache.hadoop.hive.ql.io.parquet.MapredParquetOutputFormat'),
serializationLibrary: new glue.SerializationLibrary('org.apache.hadoop.hive.ql.io.parquet.serde.ParquetHiveSerDe')
};