I'm new to Azure Data Factory. I'm trying to solve the following problem:
- Read csv file from Azure Blob
- Parse it row by row and dump each row into an existing cosmos db
I am currently looking into a solution that does:
- Copy data from source (csv) to sink (Azure Storage Table)
- ForEach activity that parses the table and copies the rows into the db
Is this a correct approach, and if it is, how should I set up the dynamic content of the ForEach activity?
Note:
I've tried this solution (link) but I get an error message saying
Reading or replacing offers is not supported for serverless accounts
which means that
CosmosDB Serverless is not currently supported as Sink for the Data flow in Azure Data Factory.
@activity('Lookup1').output.value
– Leon Yue