See 
<https://ci-beam.apache.org/job/beam_PostCommit_XVR_PythonUsingJava_Dataflow/117/display/redirect?page=changes>

Changes:

[noreply] [BEAM-13015] Use a DirectExecutor for state since we are just 
completing


------------------------------------------
[...truncated 102.54 KB...]
test_pipeline = None

    @pytest.mark.xlang_transforms
    def test_cogroup_by_key(self, test_pipeline=None):
      CrossLanguageTestPipelines().run_cogroup_by_key(
>         test_pipeline or self.create_pipeline())

apache_beam/transforms/validate_runner_xlang_test.py:269: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
apache_beam/transforms/validate_runner_xlang_test.py:163: in run_cogroup_by_key
    | beam.Map(lambda x: "{}:{}".format(x[0], ','.join(sorted(x[1])))))
apache_beam/transforms/ptransform.py:614: in __ror__
    result = p.apply(self, pvalueish, label)
apache_beam/pipeline.py:708: in apply
    pvalueish_result = self.runner.apply(transform, pvalueish, self._options)
apache_beam/runners/dataflow/dataflow_runner.py:141: in apply
    return super().apply(transform, input, options)
apache_beam/runners/runner.py:185: in apply
    return m(transform, input, options)
apache_beam/runners/runner.py:215: in apply_PTransform
    return transform.expand(input)
apache_beam/transforms/external.py:510: in expand
    response = service.Expand(request)
../../build/gradleenv/1922375555/lib/python3.6/site-packages/grpc/_channel.py:946:
 in __call__
    return _end_unary_response_blocking(state, call, False, None)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

state = <grpc._channel._RPCState object at 0x7f12da45fb00>
call = <grpc._cython.cygrpc.SegregatedCall object at 0x7f12da554808>
with_call = False, deadline = None

    def _end_unary_response_blocking(state, call, with_call, deadline):
        if state.code is grpc.StatusCode.OK:
            if with_call:
                rendezvous = _MultiThreadedRendezvous(state, call, None, 
deadline)
                return state.response, rendezvous
            else:
                return state.response
        else:
>           raise _InactiveRpcError(state)
E           grpc._channel._InactiveRpcError: <_InactiveRpcError of RPC that 
terminated with:
E               status = StatusCode.UNAVAILABLE
E               details = "failed to connect to all addresses"
E               debug_error_string = 
"{"created":"@1645856615.199410025","description":"Failed to pick 
subchannel","file":"src/core/ext/filters/client_channel/client_channel.cc","file_line":3128,"referenced_errors":[{"created":"@1645856615.199408814","description":"failed
 to connect to all 
addresses","file":"src/core/lib/transport/error_utils.cc","file_line":163,"grpc_status":14}]}"
E           >

../../build/gradleenv/1922375555/lib/python3.6/site-packages/grpc/_channel.py:849:
 _InactiveRpcError
____________________ ValidateRunnerXlangTest.test_partition ____________________
[gw1] linux -- Python 3.6.15 
<https://ci-beam.apache.org/job/beam_PostCommit_XVR_PythonUsingJava_Dataflow/ws/src/build/gradleenv/1922375555/bin/python3.6>

self = 
<apache_beam.transforms.validate_runner_xlang_test.ValidateRunnerXlangTest 
testMethod=test_partition>
test_pipeline = None

    @pytest.mark.xlang_transforms
    def test_partition(self, test_pipeline=None):
      CrossLanguageTestPipelines().run_partition(
>         test_pipeline or self.create_pipeline())

apache_beam/transforms/validate_runner_xlang_test.py:290: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
apache_beam/transforms/validate_runner_xlang_test.py:235: in run_partition
    TEST_PARTITION_URN, None, self.expansion_service))
apache_beam/pvalue.py:137: in __or__
    return self.pipeline.apply(ptransform, self)
apache_beam/pipeline.py:708: in apply
    pvalueish_result = self.runner.apply(transform, pvalueish, self._options)
apache_beam/runners/dataflow/dataflow_runner.py:141: in apply
    return super().apply(transform, input, options)
apache_beam/runners/runner.py:185: in apply
    return m(transform, input, options)
apache_beam/runners/runner.py:215: in apply_PTransform
    return transform.expand(input)
apache_beam/transforms/external.py:510: in expand
    response = service.Expand(request)
../../build/gradleenv/1922375555/lib/python3.6/site-packages/grpc/_channel.py:946:
 in __call__
    return _end_unary_response_blocking(state, call, False, None)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

state = <grpc._channel._RPCState object at 0x7f8f97046860>
call = <grpc._cython.cygrpc.SegregatedCall object at 0x7f8f97073088>
with_call = False, deadline = None

    def _end_unary_response_blocking(state, call, with_call, deadline):
        if state.code is grpc.StatusCode.OK:
            if with_call:
                rendezvous = _MultiThreadedRendezvous(state, call, None, 
deadline)
                return state.response, rendezvous
            else:
                return state.response
        else:
>           raise _InactiveRpcError(state)
E           grpc._channel._InactiveRpcError: <_InactiveRpcError of RPC that 
terminated with:
E               status = StatusCode.UNAVAILABLE
E               details = "failed to connect to all addresses"
E               debug_error_string = 
"{"created":"@1645856615.628088322","description":"Failed to pick 
subchannel","file":"src/core/ext/filters/client_channel/client_channel.cc","file_line":3128,"referenced_errors":[{"created":"@1645856615.628087285","description":"failed
 to connect to all 
addresses","file":"src/core/lib/transport/error_utils.cc","file_line":163,"grpc_status":14}]}"
E           >

../../build/gradleenv/1922375555/lib/python3.6/site-packages/grpc/_channel.py:849:
 _InactiveRpcError
_____________________ ValidateRunnerXlangTest.test_prefix ______________________
[gw2] linux -- Python 3.6.15 
<https://ci-beam.apache.org/job/beam_PostCommit_XVR_PythonUsingJava_Dataflow/ws/src/build/gradleenv/1922375555/bin/python3.6>

self = 
<apache_beam.transforms.validate_runner_xlang_test.ValidateRunnerXlangTest 
testMethod=test_prefix>
test_pipeline = None

    @pytest.mark.xlang_transforms
    def test_prefix(self, test_pipeline=None):
      CrossLanguageTestPipelines().run_prefix(
>         test_pipeline or self.create_pipeline())

apache_beam/transforms/validate_runner_xlang_test.py:254: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
apache_beam/transforms/validate_runner_xlang_test.py:98: in run_prefix
    self.expansion_service))
apache_beam/pvalue.py:137: in __or__
    return self.pipeline.apply(ptransform, self)
apache_beam/pipeline.py:708: in apply
    pvalueish_result = self.runner.apply(transform, pvalueish, self._options)
apache_beam/runners/dataflow/dataflow_runner.py:141: in apply
    return super().apply(transform, input, options)
apache_beam/runners/runner.py:185: in apply
    return m(transform, input, options)
apache_beam/runners/runner.py:215: in apply_PTransform
    return transform.expand(input)
apache_beam/transforms/external.py:510: in expand
    response = service.Expand(request)
../../build/gradleenv/1922375555/lib/python3.6/site-packages/grpc/_channel.py:946:
 in __call__
    return _end_unary_response_blocking(state, call, False, None)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

state = <grpc._channel._RPCState object at 0x7eff13110438>
call = <grpc._cython.cygrpc.SegregatedCall object at 0x7eff1305aec8>
with_call = False, deadline = None

    def _end_unary_response_blocking(state, call, with_call, deadline):
        if state.code is grpc.StatusCode.OK:
            if with_call:
                rendezvous = _MultiThreadedRendezvous(state, call, None, 
deadline)
                return state.response, rendezvous
            else:
                return state.response
        else:
>           raise _InactiveRpcError(state)
E           grpc._channel._InactiveRpcError: <_InactiveRpcError of RPC that 
terminated with:
E               status = StatusCode.UNAVAILABLE
E               details = "failed to connect to all addresses"
E               debug_error_string = 
"{"created":"@1645856615.888840528","description":"Failed to pick 
subchannel","file":"src/core/ext/filters/client_channel/client_channel.cc","file_line":3128,"referenced_errors":[{"created":"@1645856615.888839422","description":"failed
 to connect to all 
addresses","file":"src/core/lib/transport/error_utils.cc","file_line":163,"grpc_status":14}]}"
E           >

../../build/gradleenv/1922375555/lib/python3.6/site-packages/grpc/_channel.py:849:
 _InactiveRpcError
=============================== warnings summary ===============================
apache_beam/io/filesystems_test.py:54
  
<https://ci-beam.apache.org/job/beam_PostCommit_XVR_PythonUsingJava_Dataflow/ws/src/sdks/python/apache_beam/io/filesystems_test.py>:54:
 DeprecationWarning: invalid escape sequence \c
    self.assertIsNone(FileSystems.get_scheme('c:\\abc\cdf'))  # pylint: 
disable=anomalous-backslash-in-string

apache_beam/io/filesystems_test.py:62
  
<https://ci-beam.apache.org/job/beam_PostCommit_XVR_PythonUsingJava_Dataflow/ws/src/sdks/python/apache_beam/io/filesystems_test.py>:62:
 DeprecationWarning: invalid escape sequence \d
    self.assertTrue(isinstance(FileSystems.get_filesystem('c:\\abc\def'),  # 
pylint: disable=anomalous-backslash-in-string

-- Docs: https://docs.pytest.org/en/latest/warnings.html
- generated xml file: 
<https://ci-beam.apache.org/job/beam_PostCommit_XVR_PythonUsingJava_Dataflow/ws/src/sdks/python/pytest_xlangValidateRunner.xml>
 -
==================== 10 failed, 2 warnings in 27.99 seconds ====================

> Task 
> :runners:google-cloud-dataflow-java:validatesCrossLanguageRunnerPythonUsingJava
>  FAILED

> Task :runners:google-cloud-dataflow-java:validatesCrossLanguageRunnerCleanup
Stopping expansion service pid: 1292945.
Stopping expansion service pid: 1292946.

> Task :runners:google-cloud-dataflow-java:cleanupXVR UP-TO-DATE

> Task :runners:google-cloud-dataflow-java:cleanUpDockerPythonImages
Untagged: us.gcr.io/apache-beam-testing/java-postcommit-it/python:20220226060919
Tag: [us.gcr.io/apache-beam-testing/java-postcommit-it/python:20220226060919]
- referencing digest: 
[us.gcr.io/apache-beam-testing/java-postcommit-it/python@sha256:9a07fe2e3a0ff962fbae941be1b2fb9e2f118666c470dfb884f5646eefa7f6cb]

Deleted 
[[us.gcr.io/apache-beam-testing/java-postcommit-it/python:20220226060919] 
(referencing 
[us.gcr.io/apache-beam-testing/java-postcommit-it/python@sha256:9a07fe2e3a0ff962fbae941be1b2fb9e2f118666c470dfb884f5646eefa7f6cb])].

> Task :runners:google-cloud-dataflow-java:cleanUpDockerJavaImages
Untagged: us.gcr.io/apache-beam-testing/java-postcommit-it/java:20220226060919
Untagged: 
us.gcr.io/apache-beam-testing/java-postcommit-it/java@sha256:57071f84e8c059165427854939f320987afa136d68a986aea5759ead4308799d
Deleted: sha256:4e32e37864bc68318125a76ef0fa338524cafb7f77fa2a169144f6814553fd85
Deleted: sha256:c00537d001219dd3e8b0bf71f1e9a88d38533070e8d096a6cba4864a9b99c04c
Deleted: sha256:7356189c1f8ce026a1441a075588a6852ead60617d6102b589d5559a9919cd44
Deleted: sha256:cbd8ab8e45cd70ccdad533f608cc9ae4a0e167973310467e538ee2dab8d728bd
Deleted: sha256:fa98161932c2896d7b9344003a2e438187b775cc20ede3cfd8b1b1576bb9b36b
Deleted: sha256:6506706b56e6c4712959678b8b681391270d6cfedf2af05ffa447666b6dd1b5d
Deleted: sha256:e0ddb54021f5eff7c72b5490e861f6e565593ddb5a624c5ba6e9a4b32bd8c78f
Deleted: sha256:cb40401b676bffd3ddbefe8edbf4a5b80cf36a75fcb3fb0b87f2652522fd6a9a
Deleted: sha256:a01916a7448aef44f322d3d25fd3a59055a89878e661ad040fc7f4d855460009
Deleted: sha256:2a9b1794c893b5d28d5cdf473e38cae31dc482902bfb11db44c858683ee24c85
Deleted: sha256:e5ea8e40a31fa6315e4879b829466bbc5a9dff1519019da5fa80b280044e97a8
Deleted: sha256:d4a21b9e2775699caba069af1be42bdca7908e8865358304e2aba91e1b90e1da
Deleted: sha256:4c93692a61420974de0b523ec8433c20cda1c0058eac4fd9eb7452047f6faadb
Deleted: sha256:c13bb82166abc297bfb0caee109ca66eb6728516d5466b77aa084edae6c15a49
Deleted: sha256:6733000ba6844b60cb6d21bb94b4b8807e7c61f29e637e78c1dcc670d8b530d7
Deleted: sha256:1dcdfc045b01d933e5f0979159bc9ebc2acb5747a31d39439b61f0df59c80a11
Deleted: sha256:7c7d59410b9db30d3a0b3ec9829acdd0975ad77db0b3ed5030ce9c7bef044012
Deleted: sha256:9308453c8ec6dfe81b9bf0bc08db305648eb767a8a545dd837b4e4d915932572
Deleted: sha256:0869ef44d19af3e4e6570d759933bde874d8c06bf2c771342cc2424980fb22ab
Deleted: sha256:d2520b9d8f4ffd44b0dd3ef6122a9efd324d879e0b16a158292bf72fe872d622
Deleted: sha256:bf25a9a9d12f2464f856c5edf13c0bce2e1c8380265475d4e4e356d25316c543
Deleted: sha256:9914e3badc0cf98182b300e0eee2ca729cbfc8dafaf144cf3a3de448b6f1d15c
Deleted: sha256:66de27058f30f4c1d85da12d1f2221f255a013c91acfc6a48547dd59687415a3
Deleted: sha256:f82bfecfb4d68d5be699a2ce5e44966f7028fa78cd31bd2967ca3123d06160cc
Deleted: sha256:b1152631795cb65a5106b6d6dc2be7b8f4bed646a0d1934b15730405d082c808
Deleted: sha256:404e51a0a6b2c181d694eea5d3b935be58edc6c893a22c539e24d3bcef32d061
Deleted: sha256:6e8171897e405c751e667bb2871833ec6d262c0651b8597b6e73b0c895c97d00
Deleted: sha256:227ab51e9e6842cf94ada7cd31766a2cc607cbf50605c48a2bd26a8373432fea
Deleted: sha256:0db36bdd92b252f9e27bf2f98e6eaaac2216cc57a5762feec2dcb905f9b7c34b
Deleted: sha256:30f247c7b22e750410997dbbc5b2f569e9072d43a2c8f58fd0685e68b8a364ba
Tag: [us.gcr.io/apache-beam-testing/java-postcommit-it/java:20220226060919]
- referencing digest: 
[us.gcr.io/apache-beam-testing/java-postcommit-it/java@sha256:57071f84e8c059165427854939f320987afa136d68a986aea5759ead4308799d]

Deleted [[us.gcr.io/apache-beam-testing/java-postcommit-it/java:20220226060919] 
(referencing 
[us.gcr.io/apache-beam-testing/java-postcommit-it/java@sha256:57071f84e8c059165427854939f320987afa136d68a986aea5759ead4308799d])].
Removing untagged image 
us.gcr.io/apache-beam-testing/java-postcommit-it/java@sha256:57071f84e8c059165427854939f320987afa136d68a986aea5759ead4308799d
Digests:
- 
us.gcr.io/apache-beam-testing/java-postcommit-it/java@sha256:57071f84e8c059165427854939f320987afa136d68a986aea5759ead4308799d
Deleted 
[us.gcr.io/apache-beam-testing/java-postcommit-it/java@sha256:57071f84e8c059165427854939f320987afa136d68a986aea5759ead4308799d].

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task 
':runners:google-cloud-dataflow-java:validatesCrossLanguageRunnerPythonUsingJava'.
> Process 'command 'sh'' finished with non-zero exit value 1

* Try:
> Run with --stacktrace option to get the stack trace.
> Run with --info or --debug option to get more log output.
> Run with --scan to get full insights.

* Get more help at https://help.gradle.org

Deprecated Gradle features were used in this build, making it incompatible with 
Gradle 8.0.

You can use '--warning-mode all' to show the individual deprecation warnings 
and determine if they come from your own scripts or plugins.

See 
https://docs.gradle.org/7.3.2/userguide/command_line_interface.html#sec:command_line_warnings

Execution optimizations have been disabled for 1 invalid unit(s) of work during 
this build to ensure correctness.
Please consult deprecation warnings for more details.

BUILD FAILED in 14m 54s
113 actionable tasks: 79 executed, 28 from cache, 6 up-to-date

Publishing build scan...
https://gradle.com/s/ysjltrwobjvho

Build step 'Invoke Gradle script' changed build result to FAILURE
Build step 'Invoke Gradle script' marked build as failure

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to