有没有办法在 Azure Web 角色中托管 Azure Worker 代码?
我有一个带宽相对较低的 Azure Web 角色应用程序,还有几个在辅助角色下运行的进程。我的工人角色也大部分时间都在闲置。
有没有办法在我的 Web 角色中对我的工作角色循环进行轮询?
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的 - 只需将 Run() 方法添加到您的 Web 角色即可。此外,借助 Azure v1.3,您的 Web 角色中现在不仅可以拥有 http 和 https 端点,还可以让您托管需要 TCP 端口的进程。
我刚刚博客有关重载的内容Web 角色。
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.