feat(fastly): Allow adjust max_conn#448
Merged
bkochendorfer merged 2 commits intomainfrom Mar 18, 2026
Merged
Conversation
We are seeing Fastly errors with `max_conn`, need to be able to adjust this for high throughput services. ```bash HTTP/2 503 content-type: text/html; charset=utf-8 via: 1.1 varnish, 1.1 varnish accept-ranges: bytes retry-after: 0 server: Varnish date: Wed, 18 Mar 2026 13:52:35 GMT x-served-by: cache-bfi-kbfi7400023-BFI, cache-bfi-kbfi7400023-BFI x-cache: MISS, MISS x-cache-hits: 0, 0 x-timer: S1773841955.060108,VS0,VE26 content-length: 470 <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <head> <title>503 Backend.max_conn reached</title> </head> <body> <h1>Error 503 Backend.max_conn reached</h1> <p>Backend.max_conn reached</p> <h3>Error 54113</h3> <p>Details: cache-bfi-kbfi7400023-BFI 1773841955 1100143237</p> <hr> <p>Varnish cache server</p> </body> </html> ``` (cherry picked from commit 077be02)
Contributor
Release plan
|
jasonthomas
previously approved these changes
Mar 18, 2026
grahamalama
previously approved these changes
Mar 18, 2026
e17c770
jasonthomas
approved these changes
Mar 18, 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
We are seeing Fastly errors with
max_conn, need to be able to adjust this for high throughput services.