Apache Hudi schema evolution

992 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 answers

0
leesf 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.