0

現在、データベースへの最大 10,000 の同時接続を定期的に処理する必要がある e コマース Web サイトを構築しており、これには Windows Azure SQL データベースを使用したいと考えています。ドキュメントからは、これは問題なく処理できるように見えますが、大量のトラフィックを送信した経験がある人はいますか?また、どのように応答しますか? また、価格設定は少し混乱しているようです。これが月額いくらになるか誰か教えてくれませんか?Web サイトは ASP.NET を使用して構築されます。

ありがとう

4

1 に答える 1

0

Standard SQL Azure starts to throttle you at 180 connections (among other factors). Handling 10k concurrent connections to SQL Azure is pretty much guaranteed to not work, unless you find some way to pool them.

I suggest you look into running your own SQL Server on an Azure Virtual Machine. Alternatively, you may want to try SQL Azure Premium ( http://blogs.technet.com/b/dataplatforminsider/archive/2013/07/23/premium-preview-for-windows-azure-sql-database-now-live.aspx ) - however, I am not sure if even SQL Azure Premium will handle 10k concurrent and distinct connections.

于 2013-10-14T15:44:25.617 に答える