fix(docker): bump vector from 0.28.1 to 0.53.0 for ARM page size support#4988
Merged
jgoux merged 1 commit intosupabase:developfrom Mar 25, 2026
Merged
Conversation
8c77d76 to
d5c5aa6
Compare
Contributor
Author
|
CI failures are expected:
Both checks should pass after mirroring. |
|
Thanks for doing it, @okedeji ! :) Cc @sweatybridge, @jgoux, @singh-inder, @7ttp |
jgoux
previously approved these changes
Mar 25, 2026
jgoux
reviewed
Mar 25, 2026
Contributor
|
It seems like I can only run the workflow on the repo's own branches. 😭 |
Contributor
Author
You could just "Mirror Image" workflow directly with timberio/vector:0.53.0-alpine as the image input? |
Contributor
|
I was looking at the wrong workflow... Sorry long day. 🤦 |
Contributor
Author
|
great all passed now! lets gooo |
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.
What kind of change does this PR introduce?
Bug fix
What is the current behavior?
Vector 0.28.1 crashes on ARM Linux systems with non-4KB page sizes (Asahi Linux, CentOS/aarch64, Oracle ARM) due to jemalloc being compiled with a hardcoded 4KB max page size. The container aborts immediately with
Unsupported system page sizebefore processing any logs.Closes #4779
What is the new behavior?
Vector 0.53.0 includes the upstream fix (vectordotdev/vector#18481) which compiles jemalloc with support for pages up to 64KB, covering all common ARM configurations. Two VRL breaking changes in the vector.yaml config are also updated:
parse_nginx_logno longer returnsmethod/path/protocolas separate fields; splitreq.requestinsteadto_timestamp!removed; replaced withparse_timestamp!using explicit formatChanges match the self-hosted fix in supabase/supabase#42525.
Additional context
Requires running the Mirror Dependencies workflow to publish
timberio/vector:0.53.0-alpinetopublic.ecr.aws/supabasebefore merging.