Is it possible to load nested json into data lake using dataflow in ADF

Sujitha Palakolanu 1 Reputation point
2022-06-14T09:25:37.507+00:00

I am trying load a nested Json object into azure Data lake using Data flow

Nested JSON object will look like

[
{
"EmployeeID" : "1",
"EmployeeName" : "name",
"JobID" : "12",
"JobTitle" : "title",
"JobCreatedDate" : "20211201",
"CompanyID" : "234",
"CompanyName" : "cName",
"Shortlist" : {
"count" : 56,
"data" : [
{
"CandidateID" : "836597",
"CandidateSalesforceId": "0054J000002tmulQAA",
"CandidateName" : "John Smith",
"ActivityDate" : "20220101"
},
{
}, ...
]
},
"Cv Sent" : {
"count" : 3,
"data" : [
{
"CandidateID" : "836597",
"CandidateSalesforceId": "0054J000002tmulQAA",
"CandidateName" : "John Smith",
"ActivityDate" : "20220101"
},
{
}, ...
]
}
},
{
}, ...
]

inner objects data will be populated by left joining views

Azure Data Lake Storage
Azure Data Lake Storage
An Azure service that provides an enterprise-wide hyper-scale repository for big data analytic workloads and is integrated with Azure Blob Storage.
1,540 questions
Azure Data Factory
Azure Data Factory
An Azure service for ingesting, preparing, and transforming data at scale.
11,246 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Samy Abdul 3,376 Reputation points
    2022-06-17T05:21:44.99+00:00

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.