This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch nightly-refs/heads/master
in repository https://gitbox.apache.org/repos/asf/beam.git
from ffb43321a0a [YAML] Add optional output type parameter to mappings.
(#29077)
add 8b8af7fee89 Change level of initialization exception to error, make
errors obvious (#29078)
add 1ff014d6101 Move metrics report fully to GHA (#29136)
add 60c2ba56f60 Set correct markers for the other test scenario. (#29141)
add a411a71bc46 [RRIO] create RedisClient utility (#29081)
add 16d68c120fc [yaml] Normalize JdbcIO (#28971)
add 32d1cc0a381 Bump Dataflow dev container versions to
beam-master-20231026 (#29153)
add f4574bc9721 Fix cleanup dataproc cluster name pattern (#29154)
add 3b890399e11 Automatically switch to upload_graph when the graph is
large (#28621)
No new revisions were added by this update.
Summary of changes:
.github/workflows/beam_Metrics_Report.yml | 26 +--
.test-infra/dataproc/cleanup.sh | 7 +-
.test-infra/jenkins/job_Metrics_Report.groovy | 77 --------
CHANGES.md | 1 +
runners/google-cloud-dataflow-java/build.gradle | 4 +-
.../beam/runners/dataflow/DataflowRunner.java | 24 ++-
.../beam/runners/dataflow/DataflowRunnerTest.java | 36 +++-
.../java/org/apache/beam/fn/harness/FnHarness.java | 5 +-
.../io/jdbc/JdbcReadSchemaTransformProvider.java | 13 ++
.../io/jdbc/JdbcWriteSchemaTransformProvider.java | 39 +++-
sdks/java/io/rrio/build.gradle | 12 ++
.../beam/io/requestresponse/RedisClient.java | 188 ++++++++++++++++++
.../beam/io/requestresponse/RedisClientTestIT.java | 209 +++++++++++++++++++++
.../RedisExternalResourcesRule.java | 71 +++++++
.../ml/inference/vertex_ai_inference_it_test.py | 3 +-
sdks/python/apache_beam/yaml/standard_io.yaml | 33 ++++
16 files changed, 627 insertions(+), 121 deletions(-)
delete mode 100644 .test-infra/jenkins/job_Metrics_Report.groovy
create mode 100644
sdks/java/io/rrio/src/main/java/org/apache/beam/io/requestresponse/RedisClient.java
create mode 100644
sdks/java/io/rrio/src/test/java/org/apache/beam/io/requestresponse/RedisClientTestIT.java
create mode 100644
sdks/java/io/rrio/src/test/java/org/apache/beam/io/requestresponse/RedisExternalResourcesRule.java