nsivabalan commented on issue #2508:
URL: https://github.com/apache/hudi/issues/2508#issuecomment-813499168
For eg: I tried array of records with some fields, and it looks good w/ bulk
insert and row writer enabled.
```
{
"type" : "record",
"name" : "triprec",
"fields" : [ {
"name" : "timestamp",
"type" : "long"
}, {
"name" : "_row_key",
"type" : "string"
}, {
"name" : "rider",
"type" : "string"
}, {
"name" : "tip_history",
"type" : {
"type" : "array",
"items" : {
"type" : "record",
"name" : "tip_history",
"fields" : [ {
"name" : "amount",
"type" : "double"
}, {
"name" : "currency",
"type" : "string"
} ]
},
"default" : [ ]
}
} ]
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]