-5

My company bought a Dell PowerEdge t710 server with:

48 GB ram 4x4 
GB ethernet ports.
RAID 5 for PERC H700
4 x 1TB, SATA, 3.5-in, 7.2K RPM Hard Drive (Hot Plug)

My job is to configure Hyper-V system infrastructure on this server. The requirements are:

  1. Domain controller
  2. File server
  3. Microsoft Exchange server
  4. Intranet server - SharePoint
  5. Development server (with SVN and SQL server 2008)

I will install Hyper-v Server 2008 R2 on bare metal.

My question is:

  1. What kind of raid configuration should I have, in order to ensure the file server (virtual Windows Server2008) is at max performance?
  2. Also how would you suggest I do in order to make the partitions have 1TB for the file server?
  3. My other question is where do I store the VHD files for better performance and backup?
  4. My last question is how would you guys do it?
Tablemaker
  • 1,159
  • 1
  • 11
  • 23
user97195
  • 37
  • 5
  • 1
    I don't understand.. you say that the server is purchased, but you're listing different disk options. Do you have to chose wich disks to use? – pauska Oct 13 '11 at 07:27
  • @pauska Where do you see diffrent disk options here I am talking about partitions! – user97195 Oct 13 '11 at 07:40
  • 1
    "3-8x 3.5" or 3-16x 2.5" HDDs Hard Drive 4 x 1TB" – pauska Oct 13 '11 at 07:46
  • 1
    My gut says your performance is going to suck... big time. Exchange and SQL Server will hammer your disks and I think your other VMs are going to suffer as a result. – Ben Pilbrow Oct 13 '11 at 07:53
  • @pauska correct that is how the invoice says the real 3-8x 3.5 HDD – user97195 Oct 13 '11 at 08:04
  • @BenPilbrow that is why I am asking the experts here I high performance and not sucking one :) What do you suggest how should I configure the VMs and other Server? – user97195 Oct 13 '11 at 08:05
  • @pauska correct that is how the invoice says the real bare metal has 4 disk 3.5 HDD each one 1TB capacity – user97195 Oct 13 '11 at 08:10
  • And how are we supposed to figure out what "the real 3-8x 3.5 HDD" is? Does that mean that you have 3, or 4, or 5, or 6, or 7, or 8 3,5" HDD's? What kind of rotation speed? Sizes? – pauska Oct 13 '11 at 08:10
  • I would suggest exchange and SQL server get their own dedicated, physical servers. Also, I still don't fully understand your question. *How many disks are there*? – Ben Pilbrow Oct 13 '11 at 08:11
  • @pauska there are 4 disks 1TB 3.5" installed on bare metal with current configuration two Virtual Disks Raid 5 Disk 0 - 1800GB Disk 1 993GB. – user97195 Oct 13 '11 at 08:18
  • @BenPilbrow 4disks 1tb. The MSSQL with host small databases also the DC and exchange are not gonna have more than 50 users. – user97195 Oct 13 '11 at 08:21
  • 2
    http://catb.org/esr/faqs/smart-questions.html – MDMarra Oct 13 '11 at 11:04
  • 3
    The way you're asking this question I can only suggest you hire someone who knows what he's doing to set this up for you. This kind of setup is not for the inexperienced and getting it wrong means a lot of time and money down the drain. – John Gardeniers Oct 13 '11 at 11:36

1 Answers1

4

With 4x1TB S-ATA disks you only have one real option considering the amount of services you're going to run, and that is to use one RAID10 set wich gives you 2TB free (raw) disk space without any hot-spare (wich could be quite dangerous). If you're nervous then you'll need to run RAID5 with 3 disks and 1 hot-spare, wich also gives you 2TB of storage - but at a hefty performance penalty.

That being said.. we don't have any idea how many users these virtual servers are going to support, or how they behave. It's impossible to give a precise answer.

  • SQL Server: Depends highly on the type of transactions. If you're a heavy user of temp tables and/or high number of log transactions then I can guarantee that this server will swim upstream in I/O and eventually drown..
  • Sharepoint: Highly dependant on the amount of users and how the users use it. It's basically a web-based fileshare, and doesnt require much if all your users do is to download/upload documents from time to time.
  • Exchange: Exchange 2010 behaves well with low-end disks such as large S-ATA drives because of the newly designed storage engine wich favours asymmetrical writes. We run 800 mailboxes here on 5x2TB RAID5 without problems (abeit with a hefty controller in front with lots of cache)
  • SVN/fileshare: Impossible to answer without knowing the amount of users and how they use it. SVN can kill your S-ATA disks if there are constant check-in's or check-out's of thousands of small files.. but that isn't exactly normal
  • Domain controller: Low amount of disk I/O, can run on just about anything
pauska
  • 19,532
  • 4
  • 55
  • 75
  • Thanks for your answer @pauska I will explain the other server roles. The SVN will host 3-10 users. The SharePoint with host maximum 20 users. Also the SQL will host midrange databases. The SVN/SQL are for a team of 3 developers and I dont see it as a problem. Pauska hope that this information is hopeful if you decide to add anything to your answer. Again thanks for you support – user97195 Oct 13 '11 at 08:56
  • The server is going to be choking on those SATA disks most of the time. It really needs a handful of SAS spindles to keep that sort of workload running well. Though you'll survive with what you've got... – Chris S Oct 13 '11 at 13:00