Reputation: 363
We have a following requirement to ingest data into an Excel file.
What would be the optimal approach to implement this? Would it be better to implement server side CSOM or other Azure tools?
Your help is much appreciated.
Upvotes: 0
Views: 2592
Reputation: 2351
I probably would approach this like so (few components but the least amount of custom code)
Flow
Because
While there are 3 components you need to use in best case scenario it will take literally under 10 lines of code to do what you need to. Rest is just 'clicking'.
You could potentially skip data factory and call Databricks via REST api with logic apps, but why bother when there are out of the box components to do that.
Upvotes: 1