I want to create multiple Data Frame from the Given JSON and write to Delta table in Parallel .
My sample JSON string is below
{
"DocI": {
"Id": 3539,
"DocId": 112606687149
},
"Doc2": {
"Id": 3539,
"ContriId": "12"
},
"Doc3": {},
"Doc4": [
{
"DocGroupId": 185659,
"GroupId": 1,
"showOnContributor": 1
},
{
"DocGroupId": 185669,
"GroupId": 2,
"showOnContributor": 1
}
]
}
For above JSON there should be 4 Data Frame
DocI ,Doc2,Doc3 and Doc4
and Finally we want to write into Fabric Delta table in parallel .
Please suggest if this is possible
2