Skip to content

Commit

Permalink
Move remaining reference of python3.8 docker image to python 3.9 (#32630
Browse files Browse the repository at this point in the history
)
  • Loading branch information
Abacn authored Oct 2, 2024
1 parent 2829c14 commit 6314775
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@
--parallelism=5
--job_endpoint=localhost:8099
--environment_type=DOCKER
--environment_config=gcr.io/apache-beam-testing/beam-sdk/beam_python3.8_sdk:latest
--environment_config=gcr.io/apache-beam-testing/beam-sdk/beam_python3.9_sdk:latest
--top_count=20
--runner=PortableRunner
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
--parallelism=16
--job_endpoint=localhost:8099
--environment_type=DOCKER
--environment_config=gcr.io/apache-beam-testing/beam-sdk/beam_python3.8_sdk:latest
--environment_config=gcr.io/apache-beam-testing/beam-sdk/beam_python3.9_sdk:latest
--fanout=4
--top_count=20
--runner=PortableRunner
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
--parallelism=16
--job_endpoint=localhost:8099
--environment_type=DOCKER
--environment_config=gcr.io/apache-beam-testing/beam-sdk/beam_python3.8_sdk:latest
--environment_config=gcr.io/apache-beam-testing/beam-sdk/beam_python3.9_sdk:latest
--fanout=8
--top_count=20
--runner=PortableRunner
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@
--parallelism=5
--job_endpoint=localhost:8099
--environment_type=DOCKER
--environment_config=gcr.io/apache-beam-testing/beam-sdk/beam_python3.8_sdk:latest
--environment_config=gcr.io/apache-beam-testing/beam-sdk/beam_python3.9_sdk:latest
--runner=PortableRunner
6 changes: 3 additions & 3 deletions examples/multi-language/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,9 +152,9 @@ python -m apache_beam.runners.portability.expansion_service_main -p <PORT> --ful
```
export DOCKER_ROOT=<Docker root>
./gradlew :sdks:python:container:py38:docker -Pdocker-repository-root=$DOCKER_ROOT -Pdocker-tag=latest
./gradlew :sdks:python:container:py39:docker -Pdocker-repository-root=$DOCKER_ROOT -Pdocker-tag=latest
docker push $DOCKER_ROOT/beam_python3.8_sdk:latest
docker push $DOCKER_ROOT/beam_python3.9_sdk:latest
./gradlew :sdks:java:container:java11:docker -Pdocker-repository-root=$DOCKER_ROOT -Pdocker-tag=latest -Pjava11Home=$JAVA_HOME
Expand All @@ -179,7 +179,7 @@ gsutil rm gs://$GCP_BUCKET/multi-language-beam/output*
--gcpTempLocation=gs://$GCP_BUCKET/multi-language-beam/tmp \
--output=gs://$GCP_BUCKET/multi-language-beam/output \
--sdkContainerImage=$DOCKER_ROOT/beam_java11_sdk:latest \
--sdkHarnessContainerImageOverrides=.*python.*,$DOCKER_ROOT/beam_python3.8_sdk:latest \
--sdkHarnessContainerImageOverrides=.*python.*,$DOCKER_ROOT/beam_python3.9_sdk:latest \
--expansionService=localhost:$EXPANSION_SERVICE_PORT \
--region=${GCP_REGION}"
```
Expand Down

0 comments on commit 6314775

Please sign in to comment.