Hi All,
My Requirement is every 10 minutes once, I need to download the CSV data from a URL for every 10 minutes once into Azure BLOB. Can I use Azure Functions for this requirement? Please recommended your suggestions.
Hi All,
My Requirement is every 10 minutes once, I need to download the CSV data from a URL for every 10 minutes once into Azure BLOB. Can I use Azure Functions for this requirement? Please recommended your suggestions.
@RajaKrishnaswamy-0721 You can use Azure function timer trigger that will run every 10 min (setting the NCRONTAB expressions) and use azure storage output binding to save the blob. Please refer to the usage section.
Alternative you can also use logic app that will have recurrence trigger to run your logic app every 10 min. Then use HTTP action in your workflow to call your URL to get the data and store the response to the Create blob action of storage blob connector.
9 people are following this question.