You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by ib...@apache.org on 2019/10/18 14:21:22 UTC

[beam] branch master updated: [BEAM-8412] xlang test: set sdk worker parallelism to 1

This is an automated email from the ASF dual-hosted git repository.

ibzib pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/master by this push:
     new 3ff698e  [BEAM-8412] xlang test: set sdk worker parallelism to 1
     new 16b4afa  Merge pull request #9817 from ibzib/xlang-test
3ff698e is described below

commit 3ff698e477920686bf44466309909db2d701bd6c
Author: Kyle Weaver <kc...@google.com>
AuthorDate: Thu Oct 17 14:55:47 2019 +0200

    [BEAM-8412] xlang test: set sdk worker parallelism to 1
---
 sdks/python/test-suites/portable/py2/build.gradle | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/sdks/python/test-suites/portable/py2/build.gradle b/sdks/python/test-suites/portable/py2/build.gradle
index 5ceac52..20a3de4 100644
--- a/sdks/python/test-suites/portable/py2/build.gradle
+++ b/sdks/python/test-suites/portable/py2/build.gradle
@@ -128,6 +128,8 @@ task crossLanguagePortableWordCount {
         "--shutdown_sources_on_final_watermark",
         "--environment_cache_millis=10000",
         "--expansion_service_jar=${testServiceExpansionJar}",
+        // Writes to local filesystem might fail for multiple SDK workers.
+        "--sdk_worker_parallelism=1"
     ]
     exec {
       executable 'sh'