what's your experience with iSCSI and SQL Cluster setup's? We bought HP StorageWorks MSA2324i. We'll place our high-volume transaction processing system on it.
Asked
Active
Viewed 285 times
0
-
Are you using vSphere at all? MSCS on iSCSI ain't supported by VMware. – SteveBurkett Sep 17 '10 at 14:24
-
It may not be supported to run MSCS with iSCSI under vSphere but it works just fine. – mrdenny Sep 17 '10 at 19:23
-
No, we're not using vSphere, no virtualization. – Sep 17 '10 at 19:30
3 Answers
1
We've got one going; works great. Be absolutely sure you know what you're doing setting it up, it's easy to flub the configuration and get poor performance.

Chris S
- 77,945
- 11
- 124
- 216
0
I'm yet to find a SQL FOC install where everything was setup properly...
Here are some things that i find that are usually not setup correctly:
- Read the storage providers best practices... Usually what you need to setup is already spelled out in best practices documentation.
- Do performance testing to ensure everything is working properly..
- Do failover/DR testing to ensure everything is working properly..
- Check your page file setting; usually we have to modify these on a heavily used cluster.
- Ensure that AWE/Page locking is setup correctly on 32bit environments.
- Setup "Preferred Owners" for each group object to properly distribute load when the cluster comes online. I worked on a cluster recent that had all the groups pointed to one node in the cluster. Needless to say when it rebooted in the middle of the night... Everything was on one node and memory starved.
- Remember that in a cluster you need to look at modified performance metrics. Example: PLE in sql server. You need to query this from the database engine instead of perfmon stats to get it for just one instance.

Chad
- 181
- 1
- 3
- 6
-
-
We've developed our own stress-testing tool for processing transaction system and that's our main test. – Sep 17 '10 at 19:32
-
-
We have a big problem, please help. BSOD (Blue Screen Of Death) appears on one of the nodes when we turn off one switch! We thought it was the problem with network conf on iSCSI adapters, they were on same subnet. We fixed that and it was OK (for 1 day) - now we have the same error. – Sep 17 '10 at 19:41
-
I've analyzed the dump file, the cause was msiscsi.sys. I've located hotfix, installed it and so far no BSOD. http://support.microsoft.com/kb/979711/en-us – Sep 17 '10 at 22:14
0
iSCSI and SQL clusters will work just fine as long as your network isn't already running at capacity and it has enough room for the additional network traffic.

mrdenny
- 27,174
- 4
- 41
- 69
-
On that note, absolutely segregate your iSCSI traffic from, well, everything else. Separate physical LANs preferred. This is a standard best practice. – Jeremy Sep 17 '10 at 19:32
-
OK, I'll check this out. Also, we had to setup each iSCSI adapter on separate subnet. Thx! – Sep 17 '10 at 19:35
-