feat(vm): add conntrack synchronization for live migration#1939
Open
feat(vm): add conntrack synchronization for live migration#1939
Conversation
Signed-off-by: Daniil Loktev <70405899+loktev-d@users.noreply.github.com>
Signed-off-by: Daniil Loktev <70405899+loktev-d@users.noreply.github.com>
Contributor
|
Workflow has started. The target step completed with status: failure. |
Signed-off-by: Daniil Loktev <lokt.daniil@gmail.com>
Contributor
|
Workflow has started. The target step completed with status: failure. |
Contributor
|
Workflow has started. The target step completed with status: failure. |
Contributor
|
Workflow has started. The target step completed with status: failure. |
Contributor
|
Workflow has started. The target step completed with status: failure. |
Contributor
|
Workflow has started. The target step completed with status: failure. |
Signed-off-by: Daniil Loktev <70405899+loktev-d@users.noreply.github.com>
Signed-off-by: Daniil Loktev <70405899+loktev-d@users.noreply.github.com>
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
What this PR does
This PR implements Conntrack (CT) synchronization for VM live migration. During live migration, TCP connection state is preserved by exporting conntrack entries from Cilium on the source node and importing them on the target node before the VM becomes active.
Key Changes
New conntrack package (
pkg/virt-handler/conntrack/):cilium.go- HTTP client for Cilium's conntrack export/import API via Unix socketsource.go- Source-side handler that exports CT entries and sends them to targettarget.go- Target-side handler that receives CT entries and imports them to Ciliumprotocol.go- Wire protocol for CT data transfer (version + length-prefixed binary)cmd/virt-launcher-hook/main.go— libvirt QEMU hook binary installed at/etc/libvirt/hooks/qemu:Fires on
started begin(after memory transfer, before VM resume on target)Connects to virt-handler's hook socket, sends
wait, blocks until CT import completes or times outProvides the synchronization gate that prevents VM resume until conntrack is injected
200ms hook timeout — starts when
started beginhook fires and prevents indefinite VM pause if CT data doesn't arrive in time; VM resumes without CT sync on timeout (same behavior as without this feature)CT Sync Flow
Why do we need it, and what problem does it solve?
What is the expected result?
Checklist
Changelog entries