Reputation: 3696
I know that in Author & Deploy draft we can create objects one by one, like data sets, linked service, pipelines etc. But what if you have all those JSONs stored in a single file, why can't you just copy and paste it all to draft and deploy them all in one shot? I know there will be dependency of objects on one another, but that ADF should be able to determine. As of now, copying individual objects one by one and deploying individually is a pain. I know there are programmatic ways to do it easily. But I am specifically asking about Author & Deploy feature.
Upvotes: 0
Views: 227
Reputation: 1738
I would assume the biggest reason they do not handle this is as you mention the dependency checking they would have to perform.
An alternative idea, if you use visual studio you can download Microsoft Azure DataFactory Tools, another link. This will give you a DataFactory project template inside visual studio. You can then store all of your JSON files in the Data Factory project and then "Publish" the project to a DataFactory in azure from visual studio. You also get the benefit of being able to check in the files into source control.
Hope this helps.
Upvotes: 1