Keep large responses from stalling on VPC networks - #452
Merged
Merged
Conversation
Encapsulated traffic between locations adds a 40-byte outer IPv6 header. Measured on a staging cell, inner packets larger than 1440 bytes are silently dropped by the provider underlay with no Packet Too Big, so connections carrying large responses hang. Networks created from now on default to 1440; existing Networks keep their persisted value. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
privateip
approved these changes
Sep 13, 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.
Large responses from Instances on a VPC network can stall: the headers arrive, but the body never does, and nothing reports an error. The provider underlay silently drops packets sized for today's default MTU of 1460. New Networks now default to 1440, the largest size proven to deliver in staging.
Existing Networks keep the MTU they already have, and a running Instance picks up a new value only when it is recreated.
For general-purpose Instances, this takes effect together with datum-cloud/galactic#533. Related: datum-cloud/galactic#532.
1440 was measured on one provider's network. A path with more overhead may need a lower value.
🤖 Generated with Claude Code