aames0130 commented on issue #4565:
URL: https://github.com/apache/seatunnel/issues/4565#issuecomment-1702266088
How do I write schema field type map of a object list type in mongoDB ?
the mongo data like
```json
{
"groupName": "mygroup",
"memberList": [
{
"name":"alex",
"age":33
},
{
"name":"bob",
"age":25
}
]
}
```
the SeaTunnel config
```ini
source{
schema{
fields {
groupName = string
memberList = "array<object>"
}
}
}
```
It failed !!
The schema of memberList is not right. What's the correct schema of
memberList ?
Thanks a lot .
Aames
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]