Best way to overcome HIVE_PARTITION_SCHEMA_MISMATCH error in Athena while preserving structure of structs?

0

I ran the following Amazon Athena query on a table created by AWS Glue, which had crawled an Amazon S3 export of Synthea data from Amazon HealthLake:

SELECT * FROM "glue01234567890_fhir_export_abcdefghijklmnopqrst";

That resulted in this error:

HIVE_PARTITION_SCHEMA_MISMATCH: There is a mismatch between the table and partition schemas. The types are incompatible and cannot be coerced. The column 'code' in table 'demo.glue01234567890_fhir_export_abcdefghijklmnopqrst' is declared as type 'struct<coding:array<structsystem:string,code:string,display:string>,text:string>', but partition 'partition_0=ImagingStudy' declared column 'id' as type 'string'. This query ran against the "demo" database, unless qualified by the query. Please post the error message on our forum or contact customer support with Query Id

I saw one answer to go to edit the Crawler and then to output -->configuration and "Update all new and existing partitions with metadata from the table." However, that didn't resolve the error for me.

When I edit the schema manually an change column 'code' from struct to string, the error goes away, and Athena brings my attention to the next mismatch:

partition 'partition_0=Immunization' declared column 'patient' as type 'structreference:string'.

I don't think, however, manually replacing all structs with strings will get me the results I want, because I need Glue and Athena to be aware of the fields inside the structs. What is the best approach to overcoming this error while preserving the structure of the data, in this situation where I want to make the HealthLake export queryable by Athena?

I understand I'll want to add a step to the ETL in Glue to first convert to Parquet or ORC for Athena performance reasons, but right now I'm dealing with a small sample dataset and just want to focus on getting a minimum viable end-to-end flow going.

AWS
已提問 2 年前檢視次數 1172 次
1 個回答
0

The reason for the problem is the size of the dataset which confuses the crawler to pick the "correct" column type based on too few examples.

I would start with the general type of String. You can still use Athena to parse it, either directly with the dot notation (SELECT patient.reference FROM...) or using the many JSON functions. See more ways to query JSON here.

MLGuy
已回答 2 年前
  • Thank you for the idea! To help me understand this deeper, I'm interested how you arrive at the conclusion that the size of the dataset is an issue here, and how that would make a difference to this scenario? Great point that Athena is able to parse values of type String as JSON without the need of having type struct.

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南