What are the drawbacks of running a database inside a virtual machine? How do I overcome them? [closed]

Though many DB vendors were very slow to do this, nearly all of them now officially support their software running in a virtualized environment.

We run many Oracle 11g instances in linux on top of ESXi, and it is certainly possible to get very good performance. As with all hardware scaling, you just need to make sure that the virtualization host has plenty of resources (RAM, CPU), and that your disk layer is up to the task of delivering whatever IO performance you require.


As ErikA says, this is becoming more and more common. I'm in the SQL Server camp and don't personally have any production systems running in VM's, but I would not be hesitant to (after a little more study on the topic). There are definitely some things to take into consideration before you go down that path, though (at least for SQL Server). Disk IO (as others have mentioned) and memory allocation are just 2 examples. Things will be different between different hypervisors as well.

Brent Ozar is a recognized expert in virtualizing SQL Server, specifically in VMWare. I would highly recommend reading through his material.

http://www.brentozar.com/community/virtualization-best-practices/


There is can and then there is should. A corvette can go 150 mph, but should you on public highways? You can harm yourself unnecessarily.

Databases are guest operating systems. By design when they start they grab blocks of a resource and manage it directly for performance reasons. As soon as you make the core operating system of the database server a guest in virtualized hosting environment then you are placing an arbitration layer with the hypervisor between the block allocated element of disk and RAM and the database server. It will slow down. The more inefficient your queries, the more it will slow. These inefficiencies may be masked today on dedicated hardware, but as soon as you introduce arbitration to your dependent resource you are going to find out real fast.

What a lot of bean counters who are demanding virtualization fail to recognize is that database servers, as guest operating systems, offer their own consolidation layer. There is no reason why you cannot move consolidate multiple logical database instances on one physical server, even to the point of moving IP addresses, setting up additional host names, etc..., to allow for this natural coalescing of services to take place. And, with this model not only do you retain the cost savings that the management is pushing for reduced number of physical hosts, but you retain the block access to physical resources without the impingement of the arbitrary hypervisor, which can make beneficial decisions sometimes and not others.

The same holds true for other guest operating systems, like Java. Virtualization solutions are typically busy environments and the hypervisor has to make lots of decisions on who "gets the token" on a resource. Anytime you can eliminate that layer you are going to be better off.

Coalesce multiple instances using the natural guest operating system layer first. Odds are you will be able to hit your platform consolidation and performance targets easier.


There are two things to realize here:

  • Unit of DB performance per unit of Hardware is a bit lower for a virtualized db. This means you need to buy a little more hardware to get the same level of performance.
  • That doesn't mean the same level or a desired level of performance is unobtainable. The gains you get from improved management and other benefits (like easier HA) often way more than offset the marginally increased hardware costs.

That said, where I work our Sql Server installation is one of only two servers that I have no intention of virtualizing any time soon (the other is the primary DC).


Running SQL Server is a VM will be fine, provided that you can provide enough resources to the VM to run your application. If in the physical world you need 24 cores and 256 Gigs of RAM then you need to provide 24 vCPUs and 256 Gigs of RAM in the virtual world.

I just wrote an article in last months SQL Server magazine all about running SQL Server under VMware's vSphere.