Azure Function, for downloading CSV data from a URL for every 10 minutes in to Azure BLOB

Raja Krishnaswamy 1 Reputation point
2021-08-03T06:55:41.31+00:00

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.

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
5,669 questions
Azure Blob Storage
Azure Blob Storage
An Azure service that stores unstructured data in the cloud as blobs.
3,141 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. MayankBargali-MSFT 70,891 Reputation points
    2021-08-03T07:37:15.063+00:00

    @Raja Krishnaswamy 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.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.