Database/Web servers as a Virtual Machines vs Bare Metal? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T11:56:22Z http://stackoverflow.com/feeds/question/450917 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/450917/database-web-servers-as-a-virtual-machines-vs-bare-metal 1 Database/Web servers as a Virtual Machines vs Bare Metal? Matias Nino 2009-01-16T16:06:24Z 2009-01-24T19:02:32Z <p>Hi! </p> <p>I manage a database (Oracle 8i) and web server (IIS) for about 50 simultaneous users on average and a theoretical limit of 100 simultaneous users. A mid level system.</p> <p>We just got a dual-socket Quad-core XEON - 16GB RAM - SAS-RAID-10 beast and I am exploring the possibilities of taking these two separate servers and merging them into two virtual machines both running on the new server (Server 2009 Hyper-V). </p> <p>1) In general, what are the performance penalties (as well as any gotchas and hidden consequences) of running both the database and web servers as virtual machines on one mega server vs running them on two separate slower boxes? Is it a big NO-NO or it is something worth trying for a mid-level system that will never need to scale? </p> <p>2) What are the general performance penalties (in percentage) and gotchas for virtualizing just the database server? We run Oracle 8i (but are considering moving to MS SQL Server).</p> <p>3) If only stress tests can determine an reasonable answer, what would be the easiest way to test these scenarios (tools / configuration).</p> <p>Thanks in advance for any generous knowledge-sharing.</p> http://stackoverflow.com/questions/450917/database-web-servers-as-a-virtual-machines-vs-bare-metal/450945#450945 0 Answer by Joel Coehoorn for Database/Web servers as a Virtual Machines vs Bare Metal? Joel Coehoorn 2009-01-16T16:12:24Z 2009-01-16T16:12:24Z <p>With regards to databases, see this question:<br /> <a href="http://stackoverflow.com/questions/149318/virtualized-sql-server-why-not">http://stackoverflow.com/questions/149318/virtualized-sql-server-why-not</a></p> <p>Note that this is specific to sql server, but many of the same principles will apply for oracle.</p> <p>As for web servers, virtualization is a great idea. It can make it easier to increase reliability and scalability.</p> http://stackoverflow.com/questions/450917/database-web-servers-as-a-virtual-machines-vs-bare-metal/451012#451012 0 Answer by kristof for Database/Web servers as a Virtual Machines vs Bare Metal? kristof 2009-01-16T16:28:14Z 2009-01-16T16:28:14Z <p>I recently came across <a href="http://pandalabs.pandasecurity.com/archive/Virtualization-Security-Part-2.aspx" rel="nofollow">an article dealing with Virtualization Security</a>. I thought it would be worth mentioning here.</p> http://stackoverflow.com/questions/450917/database-web-servers-as-a-virtual-machines-vs-bare-metal/451036#451036 2 Answer by Kevin for Database/Web servers as a Virtual Machines vs Bare Metal? Kevin 2009-01-16T16:32:48Z 2009-01-16T20:05:21Z <p>If you are looking to do this, I would check Microsoft's site and best practices on how to do it. There is a podcast on Deep Fried Bytes that talks about how the Microsoft.com site is setup to use virtual servers and some of their practices on how they implement it. They don't seem to have performance penalties on how they run it, but I am not certain of the details (it also talks about how they use server virtualization like a real organization would and not a company with unlimited amounts of money to throw at a problem). </p> <p>I believe this is the podcast:</p> <p><a href="http://deepfriedbytes.com/podcast/episode-8-behind-the-scenes-at-microsoft-com/" rel="nofollow">http://deepfriedbytes.com/podcast/episode-8-behind-the-scenes-at-microsoft-com/</a></p> http://stackoverflow.com/questions/450917/database-web-servers-as-a-virtual-machines-vs-bare-metal/452037#452037 0 Answer by Matt Rogish for Database/Web servers as a Virtual Machines vs Bare Metal? Matt Rogish 2009-01-16T21:13:47Z 2009-01-16T21:13:47Z <p>I think at your level of concurrent user connections, and the power of the machine, you won't have too many performance issues running SQL Server on a VM. </p> <p>We have a mix of VMWare ESX VMs and bare-metal OS' running app, web, and DB servers and without a doubt the heaviest loaded DBMS system is on bare-metal machine (Quad proc quad core, etc.). All the little guys, though, live on VMs, and we haven't noticed any problems (even using iSCSI over GigE).</p> <p>One thing to consider is you won't get any fault tolerance out of a single setup like this because a CPU failure will bring down the entire box, thus blowing up your whole app. </p> <p>More info on SQL Server HA and Hyper-V, just FYI: <a href="http://blogs.technet.com/andrew/archive/2008/11/10/sql-server-2008-hyper-v-and-high-availability.aspx" rel="nofollow">http://blogs.technet.com/andrew/archive/2008/11/10/sql-server-2008-hyper-v-and-high-availability.aspx</a></p> http://stackoverflow.com/questions/450917/database-web-servers-as-a-virtual-machines-vs-bare-metal/476459#476459 0 Answer by warren for Database/Web servers as a Virtual Machines vs Bare Metal? warren 2009-01-24T18:33:39Z 2009-01-24T18:33:39Z <p>Be aware that Oracle has its own guidelines on running in a virtual machine.</p> <p>The product I work with utilizes Oracle on the back-end, and for heavy use, the overhead of a VM has had negative effects on it.</p> <p>8i is well past EOL, and was around before virtualization was a Big Thing(tm), so moving to a new edition of Oracle might also be a good plan at the time your migrate to virtualization.</p> <p>Oracle blog article on 11g in a VM - <a href="http://blogs.oracle.com/MingMan/2007/11/oracle_database_11g_successful.html" rel="nofollow">http://blogs.oracle.com/MingMan/2007/11/oracle_database_11g_successful.html</a></p> <p>If you're concerned about timing, also be aware of known clock-drift issues in hypervisors, and available fixes (either from the OS or virtualization vendors).</p> http://stackoverflow.com/questions/450917/database-web-servers-as-a-virtual-machines-vs-bare-metal/476502#476502 0 Answer by bradmurray for Database/Web servers as a Virtual Machines vs Bare Metal? bradmurray 2009-01-24T19:02:32Z 2009-01-24T19:02:32Z <p>If possible I would recommend running Oracle at the host level and the web/app server(s) as a virtual server inside it.</p>