Skip to main content
Redhat Developers  Logo
  • AI

    Get started with AI

    • Red Hat AI
      Accelerate the development and deployment of enterprise AI solutions.
    • AI learning hub
      Explore learning materials and tools, organized by task.
    • AI interactive demos
      Click through scenarios with Red Hat AI, including training LLMs and more.
    • AI/ML learning paths
      Expand your OpenShift AI knowledge using these learning resources.
    • AI quickstarts
      Focused AI use cases designed for fast deployment on Red Hat AI platforms.
    • No-cost AI training
      Foundational Red Hat AI training.

    Featured resources

    • OpenShift AI learning
    • Open source AI for developers
    • AI product application development
    • Open source-powered AI/ML for hybrid cloud
    • AI and Node.js cheat sheet

    Red Hat AI Factory with NVIDIA

    • Red Hat AI Factory with NVIDIA is a co-engineered, enterprise-grade AI solution for building, deploying, and managing AI at scale across hybrid cloud environments.
    • Explore the solution
  • Learn

    Self-guided

    • Documentation
      Find answers, get step-by-step guidance, and learn how to use Red Hat products.
    • Learning paths
      Explore curated walkthroughs for common development tasks.
    • Guided learning
      Receive custom learning paths powered by our AI assistant.
    • See all learning

    Hands-on

    • Developer Sandbox
      Spin up Red Hat's products and technologies without setup or configuration.
    • Interactive labs
      Learn by doing in these hands-on, browser-based experiences.
    • Interactive demos
      Click through product features in these guided tours.

    Browse by topic

    • AI/ML
    • Automation
    • Java
    • Kubernetes
    • Linux
    • See all topics

    Training & certifications

    • Courses and exams
    • Certifications
    • Skills assessments
    • Red Hat Academy
    • Learning subscription
    • Explore training
  • Build

    Get started

    • Red Hat build of Podman Desktop
      A downloadable, local development hub to experiment with our products and builds.
    • Developer Sandbox
      Spin up Red Hat's products and technologies without setup or configuration.

    Download products

    • Access product downloads to start building and testing right away.
    • Red Hat Enterprise Linux
    • Red Hat AI
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

    Featured

    • Red Hat build of OpenJDK
    • Red Hat JBoss Enterprise Application Platform
    • Red Hat OpenShift Dev Spaces
    • Red Hat Developer Toolset

    References

    • E-books
    • Documentation
    • Cheat sheets
    • Architecture center
  • Community

    Get involved

    • Events
    • Live AI events
    • Red Hat Summit
    • Red Hat Accelerators
    • Community discussions

    Follow along

    • Articles & blogs
    • Developer newsletter
    • Videos
    • Github

    Get help

    • Customer service
    • Customer support
    • Regional contacts
    • Find a partner

    Join the Red Hat Developer program

    • Download Red Hat products and project builds, access support documentation, learning content, and more.
    • Explore the benefits

Performance analysis of storage live migration feature in Red Hat OpenShift Virtualization

Storage Live Migration Performance in Red Hat OpenShift Virtualization 4.21

July 29, 2026
Abhishek Bose
Related topics:
Migration
Related products:
Red Hat OpenShift Virtualization

    Storage live migration is a critical feature in modern virtualized environments, allowing administrators to move a running virtual machine's (VM) disk images from one storage volume to another with minimal downtime. This capability provides the flexibility to transition between storage providers or balance workloads across different storage classes without interrupting the virtual workload.

    This article evaluates the performance and reliability of storage live migration within Red Hat OpenShift Virtualization. I focus on the analysis of native storage live migration results from OpenShift Virtualization version 4.21.

    What is OpenShift Virtualization?

    Built on the open source KVM hypervisor, OpenShift Virtualization is an operator included with Red Hat OpenShift. It offers simplified VM migration, and the ability to run virtual machines and containers in a consistent and integrated environment.

    Test environment: Infrastructure and software

    To ensure a reliable performance baseline, I utilized a dedicated hardware stack at the Red Hat Scale Lab. The setup consists of three control plane nodes and six worker nodes.

    Hardware configuration

    • Compute Nodes: Dell PowerEdge R650 servers.
    • CPU: 112x Intel(R) Xeon(R) Gold 6330 CPU @ 2.00GHz.
    • Memory: 512 GB.
    • Network: 25 Gb/s connectivity.
    • Storage (Source): OpenShift Data Foundation (ODF) using directly attached NVMe devices.
    • Storage (Target): LVM storage cluster using 3x 1.5TB directly attached NVMe devices to the worker nodes.

    Software Stack

    • OpenShift Container Platform: 4.21.2
    • OpenShift Data Foundation (ODF): 4.20.9.
    • OpenShift Virtualization: 4.21.3.
    Worker nodes within an ODF cluster migrated to worker nodes defined by LVM.
    Figure 1: Worker nodes within an ODF cluster migrated to worker nodes defined by LVM.

    The performance and test results presented in this article are specific to the environment I've described and illustrated in figure 1, including OpenShift versions, hardware setup, and storage configuration. Variations in infrastructure—such as different storage systems, network configurations, hardware specifications, or software versions—may lead to different results. This document highlights the pattern or trend expected from these tests, rather than the actual numbers.

    Performance analysis

    My evaluation involved two primary test scenarios:

    1. No load tests: Migrating VMs across storageclasses while no I/O is running to observe baseline scaling.
    2. With load tests: Executing I/O workloads using fio (using simple-fio) during VM migration.

    Baseline scaling (no load)

    In scenarios with no I/O, the total storage migration time scales linearly as the number of VMs increases. While the total time grew, the average migration time per VM remained nearly constant. For example, a single VM migrated in 11 seconds, while 100 VMs took 653 seconds and 200 VMs took 1,337 seconds (see figure 2).

    Migration completion time for increasing VM count.
    Figure 2: Migration completion time for increasing VM count, with the average migration time per VM remaining nearly constant.

    The above testing was executed using all default migration parameters.

    Next, I kept all other parameters the same and modified the following parameters:

    • parallelMigrationsPerCluster from 5 (default) to 10
    • parallelOutboundMigrationsPerNode from 2 (default) to 4

    The migration time with the tuned parameters was almost half (figure 3) compared to what was observed with default values.

    Migration completion time for increasing VM count, comparing default and tuned options.
    Figure 3: Migration completion time for increasing VM count, comparing default and tuned options.

    The migration parameters should be tuned while taking into account the CPU, memory and network load on the OpenShift nodes.

    Scale observations

    When scaling to 200 VMs, several system behaviors were noted:

    • Pod latency: Pod start latency increased to approximately 40 seconds (up from less than 10 seconds in normal scenarios).
    • Controller load: The virt-controller reached 800% CPU utilization.

    Multi-namespace scaling (no load)

    OpenShift Virtualization 4.21 supports migration of VMs across multiple namespaces. Testing the migration of 100 VMs distributed across multiple namespaces (from 1 to 100 namespaces) showed consistent total migration times, ranging between 700 and 750 seconds. This suggests that namespace distribution does not negatively impact the total duration of VM migrations (figure 4).

    Migration completion time of 100VMs scaled from 1 to 100 namespaces.
    Figure 4: Migration completion time of 100 VMs scaled from 1 to 100 namespaces.

    Migration under I/O load

    I used 8 VMs for load testing with VM migration. Each VM had a 70 GB disk size, and the total migration data set was around 560 GB.

    Mix random workload

    When using 8 KB random workload (70% read / 30% write), under a fixed high load (1400 IOPS /VM), the I/O performance dropped significantly when the migration started. However, once the migration was complete the IOPS jumped sharply to process the queued I/Os and then again IOPS hovered around 1400 which signifies that migration does not impact the overall performance (figure 5).

    Random workload IOPS performance during storage live migration of 8 VMs while IO is running in the VMs.
    Figure 5: Random workload results for IOPS performance during storage live migration of 8 VMs while IO is running in the VMs.

    The response time (latency) decreased as the VM moved from ODF to local LVM storage (figure 6) because local LVM storage always performs better than ODF storage.

    Random workload results showing average latency during storage live migration of 8 VMs while IO is running in the VMs.
    Figure 6: Random workload results showing average latency during storage live migration of 8 VMs while IO is running in the VMs.

    Sequential read

    In this case, I chose a 1 MB block size and a fixed high I/O rate (280 IOPS/VM) as the workload. Migration was executed approximately 6 minutes after the I/O was started, and performance was slightly impacted during the migration process. Once the migration was complete, the performance was once again back to the original requested I/O rate (figure 7).

    Sequential read results for throughput performance during storage live migration of 8 VMs while IO is running in the VMs.
    Figure 7: Sequential read results for throughput performance during storage live migration of 8 VMs while IO is running in the VMs.

    The response time followed the same pattern as the previous random workload, where the latency was higher when the VMs were using ODF storage while the latency reduced after the migration process was complete (figure 8).

    Sequential read results for average latency during storage live migration of 8 VMs while IO is running in the VMs.
    Figure 8: Sequential read results for average latency during storage live migration of 8 VMs while IO is running in the VMs.

    Conclusion and recommendations

    VM storage live migration in OpenShift Virtualization is a robust tool for workload management. While it performs excellently under low I/O loads, users should be cautious with high I/O workloads.

    For optimal results:

    • Prioritize low load: Schedule migrations during periods of low VM activity to ensure performance stability.
    • Monitor controller resources: Be aware of virt-controller CPU demands during high-scale migrations (100+ VMs).
    • Leverage 4.21 native VM migration: Upgrading to version 4.21 provides measurable improvements in total migration time at high scale.
    • Leverage multi-threaded IO: Multiple IO-threads were not supported with live migration using MTC (<OCP-4.19) but are now supported with native storage live migration (OCP-virt 4.20+).

    Thanks to the Red Hat Performance and Scale Team, with special thanks to Shekhar Berry, Jenifer Abrams and Alexander Wels for guidance and reviewing this document.

    Related Posts

    • Deploy hosted control planes with OpenShift Virtualization: Distributed hosting

    • Proximity automation with Red Hat Ansible Automation Platform and Red Hat OpenShift Virtualization

    • Facing a forced migration? You have a choice with OpenShift Virtualization

    • Right-sizing recommendations for OpenShift Virtualization

    Recent Posts

    • Performance analysis of storage live migration feature in Red Hat OpenShift Virtualization

    • Introduction to Anthony, the voice-driven desktop

    • Build a distributed RAG pipeline with Ray Data on OpenShift AI

    • OSFT explained: Prevent catastrophic forgetting in LLM fine-tuning

    • Enrich OpenShift compliance results with custom metadata

    Red Hat Developers logo LinkedIn YouTube Twitter Facebook

    Platforms

    • Red Hat AI
    • Red Hat Enterprise Linux
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

    Build

    • Developer Sandbox
    • Developer tools
    • Interactive tutorials
    • API catalog

    Quicklinks

    • Learning resources
    • E-books
    • Cheat sheets
    • Blog
    • Events
    • Newsletter

    Communicate

    • About us
    • Contact sales
    • Find a partner
    • Report a website issue
    • Site status dashboard
    • Report a security problem

    RED HAT DEVELOPER

    Build here. Go anywhere.

    We serve the builders. The problem solvers who create careers with code.

    Join us if you’re a developer, software engineer, web designer, front-end designer, UX designer, computer scientist, architect, tester, product manager, project manager or team lead.

    Sign me up

    Red Hat legal and privacy links

    • About Red Hat
    • Jobs
    • Events
    • Locations
    • Contact Red Hat
    • Red Hat Blog
    • Inclusion at Red Hat
    • Cool Stuff Store
    • Red Hat Summit
    © 2026 Red Hat

    Red Hat legal and privacy links

    • Privacy statement
    • Terms of use
    • All policies and guidelines
    • Digital accessibility

    Chat Support

    Please log in with your Red Hat account to access chat support.