Console app execution on Azure

AmaraCode LLC 261 Reputation points
2020-12-29T18:52:51.893+00:00

I'm unsure which Azure service to utilize. I have a simple .Net Core console app that runs with a command line parameter. I need this app to execute every hour. It is just collecting some data on the web and adding to my storage which I already know how to do. I don't want to have to pay for a VM since this little app will only run for a few seconds at most at the top of each hour.

Is this a candidate for Azure Function or is there another Azure service that better suits my needs?

Thanks in advance.
Scott

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
3,464 questions
Azure Logic Apps
Azure Logic Apps
An Azure service that automates the access and use of data across clouds without writing code.
2,402 questions
0 comments No comments
{count} votes

Accepted answer
  1. Jaliya Udagedara 2,711 Reputation points MVP
    2021-01-04T21:26:17.433+00:00

    This is a very good use case for an Azure Function. You will only get charged for the time the function runs (remember to use Consumption Plan). And since your functionality needs to run every hour, you can use a Timer Trigger for your function.

    1 person found this answer helpful.

0 additional answers

Sort by: Most helpful