apache / hudi

Upserts, Deletes And Incremental Processing on Big Data.
https://hudi.apache.org/
Apache License 2.0
5.46k stars 2.43k forks source link

[SUPPORT] Cannot create numer field name #12135

Closed muyihao closed 1 month ago

muyihao commented 1 month ago

Describe the problem you faced

Is Hudi considering supporting numeric field names? In version 0.14, the table schema is still based on Avro format. If a field name starts with a number, such as "19", there is an exception when creating the table because Avro does not support field names that start with a number.

rangareddy commented 1 month ago

Hudi doesn't support column names starting with integer as avro schema validation will fail for this.

Please refer the 10553 issue for more details.