Arun-kc edited a comment on issue #4267: URL: https://github.com/apache/hudi/issues/4267#issuecomment-992131104
@Carl-Zhou-CN I tried `ALTER TABLE table_name RECOVER PARTITIONS;`, but its not working.  hoodie.datasource.hive_sync.use_jdbc -> false Tried this approach too, but to no vain. @nikita-sheremet-clearscale Yes, I'm using Glue in this scenario. I'm using a hudi connector that was subscribed when the version was 0.5.1. Now in marketplace the version is shown as 0.9.0. I'm not sure if the subscribed version gets updated automatically. I will check on the IP part and will let you know. Just to let you know, the hudi table I'm creating it manually in Athena using the following DDL ```sql CREATE EXTERNAL TABLE `my_hudi_table`( `_hoodie_commit_time` string, `_hoodie_commit_seqno` string, `_hoodie_record_key` string, `_hoodie_partition_path` string, `_hoodie_file_name` string, `id` string, `last_update_time` string) PARTITIONED BY ( `creation_date` string) ROW FORMAT SERDE 'org.apache.hadoop.hive.ql.io.parquet.serde.ParquetHiveSerDe' STORED AS INPUTFORMAT 'org.apache.hudi.hadoop.HoodieParquetInputFormat' OUTPUTFORMAT 'org.apache.hadoop.hive.ql.io.parquet.MapredParquetOutputFormat' LOCATION 's3://<BUCKET>/tmp/myhudidataset_001' ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
