-
Notifications
You must be signed in to change notification settings - Fork 6.7k
Update apache/beam_python3.14_sdk Docker tag to v2.76.0 #14558
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -17,7 +17,7 @@ FROM python:3.14-slim | |
| WORKDIR /pipeline | ||
|
|
||
| # Set the entrypoint to Apache Beam SDK worker launcher. | ||
| COPY --from=apache/beam_python3.14_sdk:2.73.0 /opt/apache/beam /opt/apache/beam | ||
| COPY --from=apache/beam_python3.14_sdk:2.76.0 /opt/apache/beam /opt/apache/beam | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The Apache Beam SDK container version has been updated to References
|
||
| ENTRYPOINT [ "/opt/apache/beam/boot" ] | ||
|
|
||
| # Install the requirements. | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -17,7 +17,7 @@ FROM ubuntu:focal | |
| WORKDIR /pipeline | ||
|
|
||
| # Set the entrypoint to Apache Beam SDK worker launcher. | ||
| COPY --from=apache/beam_python3.14_sdk:2.73.0 /opt/apache/beam /opt/apache/beam | ||
| COPY --from=apache/beam_python3.14_sdk:2.76.0 /opt/apache/beam /opt/apache/beam | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The Apache Beam SDK container version has been updated to References
|
||
| ENTRYPOINT [ "/opt/apache/beam/boot" ] | ||
|
|
||
| # Install Python with pip, dev tools, distutils, and a C++ compiler. | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -30,7 +30,7 @@ RUN pip install --no-cache-dir --upgrade pip \ | |
| # Copy SDK entrypoint binary from Apache Beam image, which makes it possible to | ||
| # use the image as SDK container image. | ||
| # The Beam version should match the version specified in requirements.txt | ||
| COPY --from=apache/beam_python3.14_sdk:2.73.0 /opt/apache/beam /opt/apache/beam | ||
| COPY --from=apache/beam_python3.14_sdk:2.76.0 /opt/apache/beam /opt/apache/beam | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The Apache Beam SDK container version has been updated to References
|
||
|
|
||
| # Copy Flex Template launcher binary from the launcher image, which makes it | ||
| # possible to use the image as a Flex Template base image. | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -27,5 +27,5 @@ RUN pip install --no-cache-dir --upgrade pip \ | |
| && pip check | ||
|
|
||
| # Set the entrypoint to Apache Beam SDK worker launcher. | ||
| COPY --from=apache/beam_python3.14_sdk:2.73.0 /opt/apache/beam /opt/apache/beam | ||
| COPY --from=apache/beam_python3.14_sdk:2.76.0 /opt/apache/beam /opt/apache/beam | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The Apache Beam SDK container version has been updated to References
|
||
| ENTRYPOINT [ "/opt/apache/beam/boot" ] | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -28,7 +28,7 @@ RUN update-alternatives --install /usr/bin/java java /usr/local/openjdk-8/bin/ja | |
| WORKDIR /pipeline | ||
|
|
||
| # Copy files from official SDK image. | ||
| COPY --from=apache/beam_python3.14_sdk:2.73.0 /opt/apache/beam /opt/apache/beam | ||
| COPY --from=apache/beam_python3.14_sdk:2.76.0 /opt/apache/beam /opt/apache/beam | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The Apache Beam SDK container version has been updated to |
||
| # Set the entrypoint to Apache Beam SDK launcher. | ||
| ENTRYPOINT [ "/opt/apache/beam/boot" ] | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -25,5 +25,5 @@ RUN pip install --no-cache-dir --upgrade pip \ | |
|
|
||
| # Set the entrypoint to Apache Beam SDK worker launcher. | ||
| # Check this matches the apache-beam version in the requirements.txt | ||
| COPY --from=apache/beam_python3.14_sdk:2.73.0 /opt/apache/beam /opt/apache/beam | ||
| COPY --from=apache/beam_python3.14_sdk:2.76.0 /opt/apache/beam /opt/apache/beam | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The Apache Beam SDK container version has been updated to References
|
||
| ENTRYPOINT [ "/opt/apache/beam/boot" ] | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The Apache Beam SDK container version has been updated to
2.76.0, but theapache-beamversion specified inrequirements.txtis still2.37.0. This version mismatch between the SDK harness and the SDK library can lead to runtime compatibility issues on Dataflow. While it is acceptable to defer related changes in other files to subsequent pull requests, the version inrequirements.txtshould eventually be updated to2.76.0to match.References