|
|
|
SSC Journeyman
      
Group: General Forum Members
Last Login: Wednesday, May 08, 2013 12:48 PM
Points: 96,
Visits: 397
|
|
Hey folks,
I am going to be setting up a new sql instance in the next while at work and I want to make it have high availability/fail-over. I want to put the database files up on our SAN and have 2 physical servers clustered together. Is there a better way to do this, perhaps utilizing mirroring with SQL (though I believe that would eliminate the ability to use the SAN) or some other technology that would produce good performance?
I know this is a pretty broad question but I want to see what others think before I pull the trigger on this.
Thanks
|
|
|
|
|
SSC-Dedicated
           
Group: General Forum Members
Last Login: Today @ 11:58 AM
Points: 37,665,
Visits: 29,918
|
|
Not really enough info there.
To decide on a HA/DR setup you need to start with the data loss and downtime SLAs and go from there, also budget and some idea of what kinds of disasters the solution has to withstand. Also, clustering has a single-point of failure in the storage and no redundant copy of the data. Log shipping and mirroring have two (or more) copies of the data.
Ha/DR setups have nothing to do with performance. You cluster or mirror or logship to survive the failure of some component or components
Gail Shaw Microsoft Certified Master: SQL Server 2008, MVP SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
We walk in the dark places no others will enter We stand on the bridge and no one may pass
|
|
|
|
|
SSC Journeyman
      
Group: General Forum Members
Last Login: Wednesday, May 08, 2013 12:48 PM
Points: 96,
Visits: 397
|
|
| The SAN has redundancy built in so that is why I am leaning towards it.
|
|
|
|
|
SSC-Dedicated
           
Group: General Forum Members
Last Login: Today @ 11:58 AM
Points: 37,665,
Visits: 29,918
|
|
chrisph (11/14/2012) The SAN has redundancy built in so that is why I am leaning towards it. Err...... Check with your SAN vendor that whatever form of 'redundancy' they have is certified to work with SQL Server databases, otherwise your 'redundant' copy may be a waste of bits.
Everything that I said about HA/DR stands, redundancy in the SAN or not. HA/DR design starts with your SLAs, not your hardware.
Gail Shaw Microsoft Certified Master: SQL Server 2008, MVP SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
We walk in the dark places no others will enter We stand on the bridge and no one may pass
|
|
|
|
|
SSCommitted
      
Group: General Forum Members
Last Login: Yesterday @ 8:09 AM
Points: 1,558,
Visits: 1,396
|
|
Gail wasn't advocating not using a SAN. She was merely saying not to count on the SAN's redundancy to save you in a disaster. If the whole SAN goes down, built-in redundancy is gone too. Mirroring and log shipping gives you multiple copies of the data, but if you put all partners on the same SAN, you lost that redundancy as well if you lose the whole SAN.
As Gail stated, it depends on what you are trying to protect against and what your SLAs are (how much data can you lose and how long can you be down for in the case of a disaster).
My blog: SQL Soldier Twitter: @SQLSoldier Microsoft Certified Master: SQL Server 2008 Sr. Product Consultant and Chief SQL Server Evangelist @ Idera My book: Pro SQL Server 2008 Mirroring
|
|
|
|