How to change data type in glue dataset catalogue

0

I managed to use glue crawler to crawled data (parquet file) from s3, however the column with type "boolean" is recognised as "string" when checking the data schema. Although i can edit the schema on the metadata catalogue, this is breaking the query on Athena as the data type is not recognised as boolean. Is there anyway to configure the serde parameter for glue crawler to automatically recognise this?

Additional information:

  • I have created the table using python pandas. Had workaround converting boolean to string given "True/False" is not recognised by glue/Athena.
  • Tried create table using Athena to ingest from s3. However, no data was shown when querying,
  • Tried visual ETL. Can't transform string to boolean.

Any suggestion would be appreciated.

Andy
已提问 1 个月前530 查看次数
1 回答
1

Alternatively, you can try using the XMLClassifier provided by Glue. This Classifier is often better at inferring data types than the default BuiltInClassifiers. To use the XMLClassifier, select it in the Classifiers section when creating or updating your Glue Crawler.

Sources:

profile picture
专家
已回答 1 个月前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则