Migrating Windows scheduled tasks or windows services to Azure Web Jobs
We have couple of scheduled tasks associated with web application which we plan to move to Azure. Some are console apps and using Windows task scheduler to run them in time intervals.
Some are in form on windows services and we have pragmatically scheduled the tasks in threads. These tasks may connect to SQL database, cleanup storage or even send bulk emails to users.
What are the recommendations for moving those to Azure. Webjobs is the prime candidate so far we found. Basically our requirement is scheduling and monitoring. Any suggestions, samples or links to resources are welcome.
Another option to shchedule tasks is "Azure Function", it's based on the webjob SDK and it offers "Webjobs as a Service", no deployment is necessary.
Morover you can use a "dynamic service plan" with Azure Functions, with this service plan you pay only when the function is running.
Here is a post which compare Azure Functions and Webjobs.
链接地址: http://www.djcxy.com/p/38898.html