fix(container): reuse pinned protoc in runtime image - #12535
Merged
Conversation
Signed-off-by: Cursor Agent <cursoragent@cursor.com> Co-authored-by: Dan Gil <dagil-nvidia@users.noreply.github.com>
nv-nmailhot
approved these changes
Aug 1, 2026
dagil-nvidia
marked this pull request as ready for review
August 1, 2026 16:47
Collaborator
Author
|
/ok to test 2f7f6fa |
Contributor
WalkthroughThe runtime Docker image now installs the ChangesRuntime image
Estimated code review effort: 1 (Trivial) | ~2 minutes 🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
Comment |
Signed-off-by: Cursor Agent <cursoragent@cursor.com> Co-authored-by: Dan Gil <dagil-nvidia@users.noreply.github.com>
dagil-nvidia
enabled auto-merge (squash)
August 1, 2026 17:21
|
/ok to test 8366fc6 |
This comment has been minimized.
This comment has been minimized.
Collaborator
Author
|
/ok to test 8366fc6 |
Merged
2 tasks
pvijayakrish
pushed a commit
that referenced
this pull request
Aug 4, 2026
…-pick → release/1.4.0] (#12584) Signed-off-by: Dan Gil <dagil@nvidia.com> Co-authored-by: Cursor Agent <cursoragent@cursor.com> Co-authored-by: Dan Gil <dagil-nvidia@users.noreply.github.com>
hhzhang16
added a commit
that referenced
this pull request
Aug 4, 2026
dyn-3691-extract-shared-target-pid-cuda-customstorage-operation-layer * 'main' of https://github.com/ai-dynamo/dynamo: (50 commits) docs(cli): correct removed vLLM prefill-worker flag reference (#12581) docs(operator): reserve webhook Ignore for emergencies (#12563) ci(docs): make previews and checks match what actually publishes (#12339) refactor(vllm): organize custom encoder modules (#12416) feat(llm): Select reasoning output field via env var (#11464) feat(runtime): add TLS support to TCP request plane (#10921) fix: convert conditional disagg sglang warning to httperror 400 (#12578) feat(operator): add runtime feature gates (#12421) refactor(runtime): extract PushRouter transport seam behind StreamingDispatch trait (#12447) feat(replay): add deterministic canonical offline reports (#12363) build: bump ModelExpress to 0.5.0(OPS-7978) (#12455) fix(mocker): use logical KV tokens for decode timing (#12583) fix(examples): update Triton example for CUDA 13 + fix libdcgm copy (DYN-3697) (#12577) refactor(operator): implement composition-first DGD reconciliation (#12283) feat(frontend): add basetenkenizer backend (#12376) fix(profiler): configure rapid mocker without planner (#12573) docs(vllm): correct worker-role flags and document --kv-transfer-config (#12568) ci: add Kubernetes deploy test to nightly (#12090) fix(container): reuse pinned protoc in runtime image (#12535) feat(self-host): flip DYN_SELF_HOST_METADATA default to ON (gh-8749) (#11417) ... Signed-off-by: Hannah Zhang <hannahz@nvidia.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.
Overview
Fix the v1.4.0 RC crate-staging failure where
dynamo-vllm-sidecarcannot compilevllm_grpc.protobecausegoogle/protobuf/struct.protois absent from the runtime test image.Summary
protoc25.3 binary and its matching well-known schemas fromwheel_builderinto the Dynamo runtime image./usr/local/bin/protoc.protobuf-compilerpackage from the runtime stage instead of mixing it with schemas from another protobuf version.Validation
python3 container/render.py --framework dynamo --target runtime --device cuda --cuda-version 13.0 --platform linux/amd64wheel_builder, then copies its compiler andgoogle/protobufschema tree intoruntime.PROTOC=/usr/local/bin/protocand checks forgoogle/protobuf/struct.protoduring the image build.git diff --check main...HEADpre-commitremains unavailable because the executable is not installed in this environment.Details
The wheel-builder stage already downloads
protoc25.3 and unpacks the schemas from the same release archive. Runtime test images rebuild Rust crates, but the runtime stage previously installed Ubuntu's olderprotobuf-compilerwithout its recommended schema package. Reusing the wheel-builder toolchain keeps the compiler and well-known types version-matched.Where Should The Reviewer Start?
container/templates/dynamo_runtime.DockerfileRelated Issues
This PR is not linked to an issue:
Summary by CodeRabbit