fix(vm): dynamic domain wait timeout#2616
Merged
Merged
Conversation
87965cc to
9fcd157
Compare
6b85814 to
e51dbad
Compare
Signed-off-by: Daniil Antoshin <daniil.antoshin@flant.com>
e51dbad to
303ca63
Compare
yaroslavborbat
approved these changes
Jul 10, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Under inbound-slot contention the migration target's virt-launcher panicked with
timed out waiting for domain to be defined(~240–360s) and an otherwise valid live migration failed. While a migration waits for a free inbound slot, the target had no domain defined yet, so its fixed domain-wait deadline expired.This bumps
3p-kubevirttov1.6.2-v12n.59, which keeps the target's domain-wait alive while the migration is held by the inbound migration limiter. The deadline is extended only by an explicit keepalive and is bounded by a hard ceiling, so ordinary requests don't reset it and a genuinely stuck target still times out.Why do we need it, and what problem does it solve?
Live migrations that had to queue for an inbound slot were failing by target timeout instead of proceeding once a slot freed up. Users saw valid migrations fail under contention.
What is the expected result?
Migrations that wait for an inbound slot succeed instead of failing by target timeout; existing migration e2e stays green.
Checklist
Changelog entries