- Rename com.uber.hoodie to org.apache.hudi - Flag to pass com.uber.hoodie Input formats for hoodie-sync - Works with HUDI demo. - Also tested for backwards compatibility with datasets built by com.uber.hoodie packages - Migration guide : https://cwiki.apache.org/confluence/display/HUDI/Migration+Guide+From+com.uber.hoodie+to+org.apache.hudi
14 lines
526 B
JSON
14 lines
526 B
JSON
{
|
|
"namespace": "example.avro",
|
|
"type": "record",
|
|
"name": "User",
|
|
"fields": [
|
|
{"name": "field1", "type": ["null", "string"], "default": null},
|
|
{"name": "field2", "type": ["null", "string"], "default": null},
|
|
{"name": "name", "type": ["null", "string"], "default": null},
|
|
{"name": "favorite_number", "type": ["null", "long"], "default": null},
|
|
{"name": "favorite_color", "type": ["null", "string"], "default": null},
|
|
{"name": "favorite_movie", "type": ["null", "string"], "default": null}
|
|
]
|
|
}
|