How to create AWS Glue table where partitions have different columns? ('HIVE_PARTITION_SCHEMA_MISMATCH')

后端 未结 4 1365
隐瞒了意图╮
隐瞒了意图╮ 2020-12-24 01:50

As per this AWS Forum Thread, does anyone know how to use AWS Glue to create an AWS Athena table whose partitions contain different schemas (in this case different subsets o

4条回答
  •  难免孤独
    2020-12-24 02:17

    It also fixed my issue! If somebody need to provision This Configuration Crawler with Terraform so here is how I did it:

    resource "aws_glue_crawler" "crawler-s3-rawdata" {
      database_name = "my_glue_database"
      name          = "my_crawler"
      role          = "my_iam_role.arn"
    
      configuration = <

提交回复
热议问题