pub struct MigrationStream {
pub phase: MigrationPhase,
pub rounds: u32,
pub dirty_page_threshold: u64,
pub tracker: DirtyPageTracker,
pub pages_sent: u64,
pub total_pages_sent: u64,
pub total_bytes_sent: u64,
pub max_rounds: u32,
}Expand description
Live migration stream controller
Fields§
§phase: MigrationPhaseCurrent migration phase
rounds: u32Number of pre-copy rounds performed
dirty_page_threshold: u64Dirty page threshold for transitioning to stop-and-copy
tracker: DirtyPageTrackerDirty page tracker
pages_sent: u64Pages sent in current round
total_pages_sent: u64Total pages sent across all rounds
total_bytes_sent: u64Total bytes sent
max_rounds: u32Maximum rounds before forcing stop-and-copy