Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

Why do I have "incompatible Parquet schema" error after changing a column type from double to string ?

avatar
Explorer

File 'hdfs://xxx:8020/data/hive/warehouse/xxxx.db/test_bak/8743abe2968ecbe7-3f9c13700000000_2053286657_dat...' has an incompatible Parquet schema for column 'xxxx.test_bak.ordered_revenue'. Column type: STRING, Parquet schema: optional double ordered_revenue [i:20 d:1 r:0]

 

I made this change in Hue.

1 ACCEPTED SOLUTION

avatar
Expert Contributor

Hello

 

The table column type must match the columnar file format of the Parquet file, else you will result in the error you got

 

One way if you prefer to use string instead of double for that data attribute, you can recreate the parquet file with the column type of string

View solution in original post

1 REPLY 1

avatar
Expert Contributor

Hello

 

The table column type must match the columnar file format of the Parquet file, else you will result in the error you got

 

One way if you prefer to use string instead of double for that data attribute, you can recreate the parquet file with the column type of string