Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Job Scheduling in Windows Azure in c#.net

Tags:

c#

azure

I want to implement a job scheduler in my windows azure application.

My aim is to execute a specific application at each day at a particular time. For the that implementation I have some choice

1-Using Quartz.net

2-Windows scheduler

If there is any built in method available in C#.net for implement that. I hard about Windows Azure HPC Scheduler. Is it scheduler ?.

like image 220
Hope Avatar asked Dec 15 '22 22:12

Hope


1 Answers

The Job Scheduler functionality was recently added to Windows Azure allowing you to easily schedule jobs on specific intervals:

enter image description here

Here is a blog post explain how you can use these jobs to communicate with Web Sites, Web Roles and even Worker Roles: http://fabriccontroller.net/blog/posts/job-scheduling-in-windows-azure/

like image 128
Sandrino Di Mattia Avatar answered Jan 06 '23 10:01

Sandrino Di Mattia