You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@beam.apache.org by "Abacn (via GitHub)" <gi...@apache.org> on 2023/05/26 18:30:24 UTC

[GitHub] [beam] Abacn opened a new pull request, #26913: Always install dev wheel if passed to sdk_version

Abacn opened a new pull request, #26913:
URL: https://github.com/apache/beam/pull/26913

   Fixes #26912
   
   **Please** add a meaningful description for your change here
   
   ------------------------
   
   Thank you for your contribution! Follow this checklist to help us incorporate your contribution quickly and easily:
   
    - [ ] Mention the appropriate issue in your description (for example: `addresses #123`), if applicable. This will automatically add a link to the pull request in the issue. If you would like the issue to automatically close on merging the pull request, comment `fixes #<ISSUE NUMBER>` instead.
    - [ ] Update `CHANGES.md` with noteworthy changes.
    - [ ] If this contribution is large, please file an Apache [Individual Contributor License Agreement](https://www.apache.org/licenses/icla.pdf).
   
   See the [Contributor Guide](https://beam.apache.org/contribute) for more tips on [how to make review process smoother](https://beam.apache.org/contribute/get-started-contributing/#make-the-reviewers-job-easier).
   
   To check the build health, please visit [https://github.com/apache/beam/blob/master/.test-infra/BUILD_STATUS.md](https://github.com/apache/beam/blob/master/.test-infra/BUILD_STATUS.md)
   
   GitHub Actions Tests Status (on master branch)
   ------------------------------------------------------------------------------------------------
   [![Build python source distribution and wheels](https://github.com/apache/beam/workflows/Build%20python%20source%20distribution%20and%20wheels/badge.svg?branch=master&event=schedule)](https://github.com/apache/beam/actions?query=workflow%3A%22Build+python+source+distribution+and+wheels%22+branch%3Amaster+event%3Aschedule)
   [![Python tests](https://github.com/apache/beam/workflows/Python%20tests/badge.svg?branch=master&event=schedule)](https://github.com/apache/beam/actions?query=workflow%3A%22Python+Tests%22+branch%3Amaster+event%3Aschedule)
   [![Java tests](https://github.com/apache/beam/workflows/Java%20Tests/badge.svg?branch=master&event=schedule)](https://github.com/apache/beam/actions?query=workflow%3A%22Java+Tests%22+branch%3Amaster+event%3Aschedule)
   [![Go tests](https://github.com/apache/beam/workflows/Go%20tests/badge.svg?branch=master&event=schedule)](https://github.com/apache/beam/actions?query=workflow%3A%22Go+tests%22+branch%3Amaster+event%3Aschedule)
   
   See [CI.md](https://github.com/apache/beam/blob/master/CI.md) for more information about GitHub Actions CI.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@beam.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [beam] Abacn commented on a diff in pull request #26913: Always install dev wheel if passed to sdk_version

Posted by "Abacn (via GitHub)" <gi...@apache.org>.
Abacn commented on code in PR #26913:
URL: https://github.com/apache/beam/pull/26913#discussion_r1207375171


##########
sdks/python/container/piputil.go:
##########
@@ -148,8 +148,11 @@ func findBeamSdkWhl(files []string, acceptableWhlSpecs []string) string {
 // SDK from source tarball provided in sdkSrcFile.
 func installSdk(files []string, workDir string, sdkSrcFile string, acceptableWhlSpecs []string, required bool) error {
 	sdkWhlFile := findBeamSdkWhl(files, acceptableWhlSpecs)
+
 	if sdkWhlFile != "" {
-		err := pipInstallPackage(files, workDir, sdkWhlFile, false, false, []string{"gcp"})
+		// by default, pip rejects to install wheel if same version already installed
+		isDev := strings.Contains(sdkWhlFile, ".dev")

Review Comment:
   tarball is not affected. checked the log if passing a tarball (same pipeline options above expect sdk_location)
   
   ```
   DEBUG 2023-05-26T21:15:34.103230283Z Found artifact: dataflow_python_sdk.tar
   INFO 2023-05-26T21:15:34.103325167Z 2023/05/26 21:15:34 Installing setup packages ...
   INFO 2023-05-26T21:15:34.645905671Z Processing /var/opt/google/staged/dataflow_python_sdk.tar
   INFO 2023-05-26T21:15:35.031355177Z Preparing metadata (setup.py): started
   ...
   INFO 2023-05-26T21:16:30.151314981Z Successfully built apache-beam
   INFO 2023-05-26T21:16:31.978811453Z Installing collected packages: apache-beam
   INFO 2023-05-26T21:16:31.979188478Z Attempting uninstall: apache-beam
   INFO 2023-05-26T21:16:31.989685770Z Found existing installation: apache-beam 2.49.0.dev0
   INFO 2023-05-26T21:16:31.989707826Z Not uninstalling apache-beam at /usr/local/lib/python3.11/site-packages, outside environment /opt/apache/beam-venv/beam-venv-worker-sdk-0-0
   INFO 2023-05-26T21:16:31.989723246Z Can't uninstall 'apache-beam'. No files were found to uninstall.
   ...
   INFO 2023-05-26T21:16:37.762490639Z Successfully installed apache-beam-2.49.0.dev0
   DEBUG 2023-05-26T21:16:38.099652894Z Executing Python (worker sdk-0-0_sibling_1): python -m apache_beam.runners.worker.sdk_worker_main
   DEBUG 2023-05-26T21:16:38.268671515Z Executing Python (worker sdk-0-0): python -m apache_beam.runners.worker.sdk_worker_main
   ```
   
   btw now install from tarball costs 1 minute with sibling worker enabled (previously took 3.5 min when every cpu core run a container)
   
   though it seems PostCommit test still not run with sibling worker



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@beam.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [beam] Abacn commented on pull request #26913: Always install dev wheel if passed to sdk_version

Posted by "Abacn (via GitHub)" <gi...@apache.org>.
Abacn commented on PR #26913:
URL: https://github.com/apache/beam/pull/26913#issuecomment-1564830913

   validated on dataflow runner, jobId: `2023-05-26_12_18_05-14047341300483962410`
   
   Now there are extra logging:
   
   ```
   INFO 2023-05-26T19:22:03.931196268Z Processing /var/opt/google/staged/apache_beam-2.49.0.dev0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
   INFO 2023-05-26T19:22:04.167323216Z Installing collected packages: apache-beam
   INFO 2023-05-26T19:22:04.171056083Z Attempting uninstall: apache-beam
   INFO 2023-05-26T19:22:04.183056675Z Found existing installation: apache-beam 2.49.0.dev0
   INFO 2023-05-26T19:22:04.183087447Z Not uninstalling apache-beam at /usr/local/lib/python3.11/site-packages, outside environment /opt/apache/beam-venv/beam-venv-worker-sdk-0-0
   INFO 2023-05-26T19:22:04.183095105Z Can't uninstall 'apache-beam'. No files were found to uninstall.
   INFO 2023-05-26T19:22:10.642116225Z Successfully installed apache-beam-2.49.0.dev0
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@beam.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [beam] Abacn commented on pull request #26913: Always install dev wheel if passed to sdk_version

Posted by "Abacn (via GitHub)" <gi...@apache.org>.
Abacn commented on PR #26913:
URL: https://github.com/apache/beam/pull/26913#issuecomment-1564835686

   R: @tvalentyn @AnandInguva


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@beam.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [beam] Abacn commented on a diff in pull request #26913: Always install dev wheel if passed to sdk_version

Posted by "Abacn (via GitHub)" <gi...@apache.org>.
Abacn commented on code in PR #26913:
URL: https://github.com/apache/beam/pull/26913#discussion_r1207445252


##########
sdks/python/container/piputil.go:
##########
@@ -148,8 +148,11 @@ func findBeamSdkWhl(files []string, acceptableWhlSpecs []string) string {
 // SDK from source tarball provided in sdkSrcFile.
 func installSdk(files []string, workDir string, sdkSrcFile string, acceptableWhlSpecs []string, required bool) error {
 	sdkWhlFile := findBeamSdkWhl(files, acceptableWhlSpecs)
+
 	if sdkWhlFile != "" {
-		err := pipInstallPackage(files, workDir, sdkWhlFile, false, false, []string{"gcp"})
+		// by default, pip rejects to install wheel if same version already installed
+		isDev := strings.Contains(sdkWhlFile, ".dev")

Review Comment:
   I see, I might have checked streaming pipeline (which is the case for #26908 that discovered 
   
   checked a batch python postcommit job it indeed run on sibling worker



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@beam.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [beam] Abacn commented on a diff in pull request #26913: Always install dev wheel if passed to sdk_version

Posted by "Abacn (via GitHub)" <gi...@apache.org>.
Abacn commented on code in PR #26913:
URL: https://github.com/apache/beam/pull/26913#discussion_r1207375171


##########
sdks/python/container/piputil.go:
##########
@@ -148,8 +148,11 @@ func findBeamSdkWhl(files []string, acceptableWhlSpecs []string) string {
 // SDK from source tarball provided in sdkSrcFile.
 func installSdk(files []string, workDir string, sdkSrcFile string, acceptableWhlSpecs []string, required bool) error {
 	sdkWhlFile := findBeamSdkWhl(files, acceptableWhlSpecs)
+
 	if sdkWhlFile != "" {
-		err := pipInstallPackage(files, workDir, sdkWhlFile, false, false, []string{"gcp"})
+		// by default, pip rejects to install wheel if same version already installed
+		isDev := strings.Contains(sdkWhlFile, ".dev")

Review Comment:
   tarball is not affected. checked the log if passing a tarball (same pipeline options above expect sdk_location)
   
   ```
   DEBUG 2023-05-26T21:15:34.103230283Z Found artifact: dataflow_python_sdk.tar
   INFO 2023-05-26T21:15:34.103325167Z 2023/05/26 21:15:34 Installing setup packages ...
   INFO 2023-05-26T21:15:34.645905671Z Processing /var/opt/google/staged/dataflow_python_sdk.tar
   INFO 2023-05-26T21:15:35.031355177Z Preparing metadata (setup.py): started
   ...
   INFO 2023-05-26T21:16:30.151314981Z Successfully built apache-beam
   INFO 2023-05-26T21:16:31.978811453Z Installing collected packages: apache-beam
   INFO 2023-05-26T21:16:31.979188478Z Attempting uninstall: apache-beam
   INFO 2023-05-26T21:16:31.989685770Z Found existing installation: apache-beam 2.49.0.dev0
   INFO 2023-05-26T21:16:31.989707826Z Not uninstalling apache-beam at /usr/local/lib/python3.11/site-packages, outside environment /opt/apache/beam-venv/beam-venv-worker-sdk-0-0
   INFO 2023-05-26T21:16:31.989723246Z Can't uninstall 'apache-beam'. No files were found to uninstall.
   ...
   INFO 2023-05-26T21:16:37.762490639Z Successfully installed apache-beam-2.49.0.dev0
   DEBUG 2023-05-26T21:16:38.099652894Z Executing Python (worker sdk-0-0_sibling_1): python -m apache_beam.runners.worker.sdk_worker_main
   DEBUG 2023-05-26T21:16:38.268671515Z Executing Python (worker sdk-0-0): python -m apache_beam.runners.worker.sdk_worker_main
   ```
   
   installs successfully.
   
   btw now install from tarball costs 1 minute with sibling worker enabled (previously took 3.5 min when every cpu core run a container)
   
   though it seems PostCommit test still not run with sibling worker



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@beam.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [beam] tvalentyn commented on a diff in pull request #26913: Always install dev wheel if passed to sdk_version

Posted by "tvalentyn (via GitHub)" <gi...@apache.org>.
tvalentyn commented on code in PR #26913:
URL: https://github.com/apache/beam/pull/26913#discussion_r1207427071


##########
sdks/python/container/piputil.go:
##########
@@ -148,8 +148,11 @@ func findBeamSdkWhl(files []string, acceptableWhlSpecs []string) string {
 // SDK from source tarball provided in sdkSrcFile.
 func installSdk(files []string, workDir string, sdkSrcFile string, acceptableWhlSpecs []string, required bool) error {
 	sdkWhlFile := findBeamSdkWhl(files, acceptableWhlSpecs)
+
 	if sdkWhlFile != "" {
-		err := pipInstallPackage(files, workDir, sdkWhlFile, false, false, []string{"gcp"})
+		// by default, pip rejects to install wheel if same version already installed
+		isDev := strings.Contains(sdkWhlFile, ".dev")

Review Comment:
   > though it seems PostCommit test still not run with sibling worker
   
   hmmm... batch tests running on more than 1 core machines, should use sibling workers. if you have a job id, I can take a look why it's not used.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@beam.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [beam] codecov[bot] commented on pull request #26913: Always install dev wheel if passed to sdk_version

Posted by "codecov[bot] (via GitHub)" <gi...@apache.org>.
codecov[bot] commented on PR #26913:
URL: https://github.com/apache/beam/pull/26913#issuecomment-1564786969

   ## [Codecov](https://app.codecov.io/gh/apache/beam/pull/26913?src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) Report
   > Merging [#26913](https://app.codecov.io/gh/apache/beam/pull/26913?src=pr&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) (d8bf71c) into [master](https://app.codecov.io/gh/apache/beam/commit/6865eefac5633198c71fd1ec75b514e8a390d002?el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) (6865eef) will **decrease** coverage by `0.01%`.
   > The diff coverage is `n/a`.
   
   ```diff
   @@            Coverage Diff             @@
   ##           master   #26913      +/-   ##
   ==========================================
   - Coverage   71.28%   71.27%   -0.01%     
   ==========================================
     Files         766      766              
     Lines      103470   103470              
   ==========================================
   - Hits        73754    73752       -2     
   - Misses      28177    28179       +2     
     Partials     1539     1539              
   ```
   
   | Flag | Coverage Δ | |
   |---|---|---|
   | go | `53.08% <ø> (-0.01%)` | :arrow_down: |
   
   Flags with carried forward coverage won't be shown. [Click here](https://docs.codecov.io/docs/carryforward-flags?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#carryforward-flags-in-the-pull-request-comment) to find out more.
   
   [see 1 file with indirect coverage changes](https://app.codecov.io/gh/apache/beam/pull/26913/indirect-changes?src=pr&el=tree-more&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
   
   :mega: We’re building smart automated test selection to slash your CI/CD build times. [Learn more](https://about.codecov.io/iterative-testing/?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@beam.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [beam] Abacn closed pull request #26913: Always install dev wheel if passed to sdk_version

Posted by "Abacn (via GitHub)" <gi...@apache.org>.
Abacn closed pull request #26913: Always install dev wheel if passed to sdk_version
URL: https://github.com/apache/beam/pull/26913


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@beam.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [beam] github-actions[bot] commented on pull request #26913: Always install dev wheel if passed to sdk_version

Posted by "github-actions[bot] (via GitHub)" <gi...@apache.org>.
github-actions[bot] commented on PR #26913:
URL: https://github.com/apache/beam/pull/26913#issuecomment-1564836954

   Stopping reviewer notifications for this pull request: review requested by someone other than the bot, ceding control


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@beam.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [beam] tvalentyn commented on a diff in pull request #26913: Always install dev wheel if passed to sdk_version

Posted by "tvalentyn (via GitHub)" <gi...@apache.org>.
tvalentyn commented on code in PR #26913:
URL: https://github.com/apache/beam/pull/26913#discussion_r1207337331


##########
sdks/python/container/piputil.go:
##########
@@ -148,8 +148,11 @@ func findBeamSdkWhl(files []string, acceptableWhlSpecs []string) string {
 // SDK from source tarball provided in sdkSrcFile.
 func installSdk(files []string, workDir string, sdkSrcFile string, acceptableWhlSpecs []string, required bool) error {
 	sdkWhlFile := findBeamSdkWhl(files, acceptableWhlSpecs)
+
 	if sdkWhlFile != "" {
-		err := pipInstallPackage(files, workDir, sdkWhlFile, false, false, []string{"gcp"})
+		// by default, pip rejects to install wheel if same version already installed
+		isDev := strings.Contains(sdkWhlFile, ".dev")

Review Comment:
   is this the problem for just wheels or also if tar.gz is passed ? 
   
   



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@beam.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [beam] Abacn commented on a diff in pull request #26913: Always install dev wheel if passed to sdk_version

Posted by "Abacn (via GitHub)" <gi...@apache.org>.
Abacn commented on code in PR #26913:
URL: https://github.com/apache/beam/pull/26913#discussion_r1207375171


##########
sdks/python/container/piputil.go:
##########
@@ -148,8 +148,11 @@ func findBeamSdkWhl(files []string, acceptableWhlSpecs []string) string {
 // SDK from source tarball provided in sdkSrcFile.
 func installSdk(files []string, workDir string, sdkSrcFile string, acceptableWhlSpecs []string, required bool) error {
 	sdkWhlFile := findBeamSdkWhl(files, acceptableWhlSpecs)
+
 	if sdkWhlFile != "" {
-		err := pipInstallPackage(files, workDir, sdkWhlFile, false, false, []string{"gcp"})
+		// by default, pip rejects to install wheel if same version already installed
+		isDev := strings.Contains(sdkWhlFile, ".dev")

Review Comment:
   tarball is not affected. checked the log if passing a tarball (same pipeline options above expect sdk_location)
   
   ```
   DEBUG 2023-05-26T21:15:34.103230283Z Found artifact: dataflow_python_sdk.tar
   INFO 2023-05-26T21:15:34.103325167Z 2023/05/26 21:15:34 Installing setup packages ...
   INFO 2023-05-26T21:15:34.645905671Z Processing /var/opt/google/staged/dataflow_python_sdk.tar
   INFO 2023-05-26T21:15:35.031355177Z Preparing metadata (setup.py): started
   ...
   INFO 2023-05-26T21:16:30.151314981Z Successfully built apache-beam
   INFO 2023-05-26T21:16:31.978811453Z Installing collected packages: apache-beam
   INFO 2023-05-26T21:16:31.979188478Z Attempting uninstall: apache-beam
   INFO 2023-05-26T21:16:31.989685770Z Found existing installation: apache-beam 2.49.0.dev0
   ...
   INFO 2023-05-26T21:16:37.762490639Z Successfully installed apache-beam-2.49.0.dev0
   DEBUG 2023-05-26T21:16:38.099652894Z Executing Python (worker sdk-0-0_sibling_1): python -m apache_beam.runners.worker.sdk_worker_main
   DEBUG 2023-05-26T21:16:38.268671515Z Executing Python (worker sdk-0-0): python -m apache_beam.runners.worker.sdk_worker_main
   ```
   
   btw now install from tarball costs 1 minute with sibling worker enabled (previously took 3.5 min when every cpu core run a container)
   
   though it seems PostCommit test still not run with sibling worker



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@beam.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [beam] Abacn commented on pull request #26913: Always install dev wheel if passed to sdk_version

Posted by "Abacn (via GitHub)" <gi...@apache.org>.
Abacn commented on PR #26913:
URL: https://github.com/apache/beam/pull/26913#issuecomment-1564900107

   retest this please


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@beam.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [beam] Abacn commented on a diff in pull request #26913: Always install dev wheel if passed to sdk_version

Posted by "Abacn (via GitHub)" <gi...@apache.org>.
Abacn commented on code in PR #26913:
URL: https://github.com/apache/beam/pull/26913#discussion_r1207378645


##########
sdks/python/container/piputil.go:
##########
@@ -148,8 +148,11 @@ func findBeamSdkWhl(files []string, acceptableWhlSpecs []string) string {
 // SDK from source tarball provided in sdkSrcFile.
 func installSdk(files []string, workDir string, sdkSrcFile string, acceptableWhlSpecs []string, required bool) error {
 	sdkWhlFile := findBeamSdkWhl(files, acceptableWhlSpecs)
+
 	if sdkWhlFile != "" {
-		err := pipInstallPackage(files, workDir, sdkWhlFile, false, false, []string{"gcp"})
+		// by default, pip rejects to install wheel if same version already installed
+		isDev := strings.Contains(sdkWhlFile, ".dev")

Review Comment:
   So yes it's just for wheels



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@beam.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [beam] Abacn merged pull request #26913: Always install dev wheel if passed to sdk_version

Posted by "Abacn (via GitHub)" <gi...@apache.org>.
Abacn merged PR #26913:
URL: https://github.com/apache/beam/pull/26913


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@beam.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org