Hi @azure_learner,
i changed the value of property file pattern to set of objects from UI and saved changed and ran the pipeline but still the output file is giving me results in this format which is wrong
The value is still arrayofObjects
in the Pipeline JSON even after changing in the UI suggest that this might be an intermittent issue.
You can try the below trouble shooting steps first from your end:
- Publish the pipeline changes and re-open the ADF workspace again.
- Clear the browser cache and also try with another browser.
If still facing the issue, instead of changing in the UI, try to edit in the Pipeline JSON itself and save it.
"sink": {
"type": "JsonSink",
"storeSettings": {
"type": "AzureBlobFSWriteSettings"
},
"formatSettings": {
"type": "JsonWriteSettings",
"filePattern": "setOfObjects"
}
},
The commas in between the objects will give the invalid JSON. The correct result JSON from the above pipeline run looks as shown below.
The dataflow will also give the same result file.
Hope this helps.
If the answer is helpful, please click Accept Answer and kindly upvote it. If you have any further questions about this answer, please click Comment.