question

RajaKrishnaswamy-0721 avatar image
0 Votes"
RajaKrishnaswamy-0721 asked MayankBargali-MSFT answered

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

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-functionsazure-blob-storage
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

1 Answer

MayankBargali-MSFT avatar image
0 Votes"
MayankBargali-MSFT answered

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

5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.