What about hosting WCF in Azure and scalability?

江枫思渺然 提交于 2020-01-03 10:59:04

问题


I want to host my WCF services in the Azure clouds for scalability reasons. For example there will be service for user authentication. And it will be under High Load (1000+ user/sec).

Does anybody here have real experience with hosting WCF services in the Azure cloud with high user load?

What are best practice, patterns here?

Does Azure has some cloud balancing API for such tasks?

Thanks, Kirill.


回答1:


EDIT April 9, 2014 - updated with latest scalability targets

The Windows Azure load balancer directs traffic to all instances of your Web Role or Worker Role. So, the load gets distributed.

When you set up your WCF service endpoint, it would essentially exist on all role instances, so you can scale to any number of VM instances, to increase traffic-handling ability. However, you have to deal with downstream throttle points. For instance, if you're reading from / writing to Azure Table Storage from all your WCF service hosts, you're limited to 500 2,000 transactions per second, per table partition. Each storage account supports a max target of 20,000 transactions per second (for which you'd need multiple partitions, due to the 2K/sec cap on an individual partition).

Make sure your WCF services are stateless, as there's no guarantee that a client will connect to the same server on a subsequent call.

I've seen some of our customers have very high-volume WCF service usage. I can't imagine 1000 calls per second being an issue, since you can scale out to multiple instances.

EDIT: There are a few WCF-related labs in the Windows Azure Platform Training Kit.



来源:https://stackoverflow.com/questions/6050157/what-about-hosting-wcf-in-azure-and-scalability

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!