Apache Hudi schema evolution

999 Views Asked by At

Can anyone share the right approach for handling schema changes in apache hudi? Example: renaming a column from col1 to col2 or changing the data type from long to int. (Pyspark)

1

There are 1 best solutions below

0
On

hudi supports avro schema compatibility, so do not support renaming and changing from long to int (int to long is supported). And there are some discussions about supporting full schema evolution in community.