An infrastructure architect is designing a virtualized host dedicated to running a latency-sensitive, high-throughput database platform. To achieve maximum hardware efficiency, the deployment must eliminate memory management overhead and kernel context switching caused by an underlying host operating system. Which hypervisor architecture should be selected to meet these strict performance requirements?
- A Type 1 hypervisor, because it installs directly onto bare-metal hardware and manages physical compute resources without a host operating system layer.Answer
- BA Type 2 hypervisor, because it relies on the host operating system's device drivers to bypass kernel scheduler latency for guest virtual machines.
- CA Type 2 hypervisor, because executing as a user-mode application on top of a desktop operating system simplifies direct hardware pass-through.
- DA Type 1 hypervisor, because it runs as a service inside a Linux host OS kernel to optimize physical memory ballooning.
Answer
A Type 1 hypervisor should be selected because it installs directly onto bare-metal hardware and manages physical compute resources without a host operating system layer.
Type 1 hypervisors (also known as bare-metal hypervisors) run directly on the physical computer hardware without requiring a host operating system. Because there is no intermediary operating system consuming hardware resources or scheduling threads, Type 1 hypervisors provide maximum performance, low latency, and direct management of CPU, RAM, and storage, making them ideal for enterprise database servers.
Step-by-Step Solution
Key Concept
Type 1 (Bare-Metal) vs. Type 2 (Hosted) Hypervisor Architecture