English 中文(简体)
Running SQL Azure as a Cluster Node
原标题:

Seeing as to how I can t find anything at all about it on the interwebs, I suspect that the answer is no, but I figured I d ask...

Does anyone know (for certain) if you can run SQL Azure as a node in a cluster of servers? Essentially, we ve invested in a SQL server and are looking at adding another node to the cluster. However, it would be really cool if instead of purchasing another box, we could instead just tack on SQL Azure as a part of our cluster. This would allow us to "test the waters" with Azure in our production environment until we feel more confident in it s dependability.

最佳回答

I wonder why are you looking to adding a node to the cluster, since clustering is only for high availability not for scalability. Adding a node adds higher redundancy in case of disaster, but 0 extra performance and 0 extra throughput.

And to answer the question: no, you cannot. SQL clusters work by sharing a drive on a SCSI bus. Even is SQL Azure would be capable of participating in a cluster, you would need a pretty long bus to reach into the clouds...

问题回答

暂无回答




相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Transaction handling with TransactionScope

I am implementing Transaction using TransactionScope with the help this MSDN article http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx I just want to confirm that is ...

System.Web.Mvc.Controller Initialize

i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...

Microsoft.Contracts namespace

For what it is necessary Microsoft.Contracts namespace in asp.net? I mean, in what cases I could write using Microsoft.Contracts;?

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签