I have a relatively low bandwidth Azure Web Role application and also several processes that run under a Worker Role. My worker role also spends most of its time idle as well.

Is there a way to do a Poll of something like my Worker Role loop within my Web Role?

The closest request I can find is: http://www.mygreatwindowsazureidea.com/forums/34192-windows-azure-feature-voting/suggestions/397209-provide-multiple-roles-per-instance?ref=title

有帮助吗?

解决方案

Yes - simply add a Run() method to your Web role. Also, with Azure v1.3, you can now have more than just an http and https endpoint in your Web role, allowing you to host processes that require a tcp port, for instance.

I just blogged about overloading a Web role.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top