Groups | Blog | Home
all groups > sql server clustering > august 2006 >

sql server clustering : Load balance


Casper Hornstrup
8/27/2006 12:00:00 AM
Hi.

My application is based on ASP.NET 2.0 and SQL Server 2005. Most of my
data-processing happen on the SQL Server (in two stored procedures written
in C#) - the webserver don't do much in this setup. I'm investigating ways
to have load balancing of the data-processing accross multiple (physical)
SQL Servers in addition to having failover support in case one SQL Server
does fail. Do I need to design my application specifically to support
distributed processing or can SQL Server 2005 do this transparently? What
options do I have?

Regards,
Casper

Hilary Cotter
8/27/2006 12:31:29 PM
Have a look at peer-to-peer replication. It will give you the scale out
performance you need. However it will not do the failover you are looking
for. For this you need clustering, or data mirroring. If you need to have
some processing done on one node, and then farm out other processing to
different nodes, you might be able to use DPVs, service broker, or merge
replication for this.

It really depends on your requirements.

--
Hilary Cotter
Looking for a SQL Server replication book?
http://www.nwsu.com/0974973602.html

Looking for a FAQ on Indexing Services/SQL FTS
http://www.indexserverfaq.com

[quoted text, click to view]

Michael Hotek
8/28/2006 1:54:12 PM
To load balance the processing, you would want to look at Service Broker
since you can create a single queue and then have multiple brokers handle
the processing requests.

However, you need to take a look into Database Mirroring if you want to be
redundant as well as fault tolerant since Database Mirroring will
transparently fail over the broker queues.

--
Mike Hotek
MHS Enterprises, Inc
http://www.mssqlserver.com


[quoted text, click to view]

AddThis Social Bookmark Button