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 451561784c6 Moving to 2.52.0-SNAPSHOT on master branch.
add 77dfa5ae7c8 [runners-flink] #28258 Wait infinitely if the duration
value is less than 1ms in FlinkDetachedRunnerResult
add a0d014ae36f Merge pull request #28262: [runners-flink] #28258 Wait
infinitely if the duration value is less than 1 ms
add bb24ca71b62 Bump github.com/testcontainers/testcontainers-go in /sdks
(#28576)
add 4d1983c3b0e Add GitHub Workflow Replacements for
job_PerformanceTests_BiqQueryIO_Read_Python and
job_PerformanceTests_BiqQueryIO_Write_Python_Batch (#28497)
add 42c80fd8a9f Add Python Load Tests Combine Dataflow Batch github action
(#28431)
add af877ff369c Add Load Tests Combine Dataflow Batch Go workflow (#28527)
add b5b69b134cf [YAML] Transform schema introspection. (#28478)
add fee9808b5ec Fix remaining tests for pandas 2 compatibility (#28524)
add 94327fdac52 Fix sync it (#28588)
add 18ce60c2d9a Add Load Tests GBK Dataflow Batch Go workflow (#28449)
add 0146a8389b4 cleanup jobs (#28528)
No new revisions were added by this update.
Summary of changes:
.github/workflows/README.md | 4 +
.github/workflows/beam_CleanUpGCPResources.yml | 83 ++++++++++++
.../workflows/beam_CleanUpPrebuiltSDKImages.yml | 83 ++++++++++++
.../beam_LoadTests_Go_Combine_Dataflow_Batch.yml | 108 ++++++++++++++++
.../beam_LoadTests_Go_GBK_Dataflow_Batch.yml | 140 +++++++++++++++++++++
...eam_LoadTests_Python_Combine_Dataflow_Batch.yml | 115 +++++++++++++++++
...eam_PerformanceTests_BiqQueryIO_Read_Python.yml | 97 ++++++++++++++
...formanceTests_BiqQueryIO_Write_Python_Batch.yml | 97 ++++++++++++++
.../config_Combine_Go_Batch_10b.txt | 34 +++++
.../config_Combine_Go_Batch_Fanout_4.txt | 34 +++++
.../config_Combine_Go_Batch_Fanout_8.txt | 34 +++++
.../config_Combine_Python_Batch_2GB_10b.txt | 32 +++++
.../config_Combine_Python_Batch_2GB_Fanout_4.txt | 33 +++++
.../config_Combine_Python_Batch_2GB_Fanout_8.txt | 33 +++++
.../config_GBK_Go_Batch_100b.txt | 34 +++++
.../config_GBK_Go_Batch_100kb.txt | 34 +++++
.../config_GBK_Go_Batch_10b.txt | 34 +++++
.../config_GBK_Go_Batch_Fanout_4.txt | 34 +++++
.../config_GBK_Go_Batch_Fanout_8.txt | 34 +++++
.../config_GBK_Go_Batch_Reiteration_10KB.txt | 34 +++++
.../config_GBK_Go_Batch_Reiteration_2MB.txt | 34 +++++
...fig_PerformanceTests_BiqQueryIO_Read_Python.txt | 33 +++++
...ig_PerformanceTests_BiqQueryIO_Write_Python.txt | 33 +++++
.../it/gcp/bigtable/BigtableResourceManager.java | 10 +-
.../gcp/bigtable/BigtableResourceManagerUtils.java | 5 +-
.../gcp/bigtable/BigtableResourceManagerTest.java | 3 +-
.../runners/flink/FlinkDetachedRunnerResult.java | 2 +-
sdks/go.mod | 2 +-
sdks/go.sum | 4 +-
sdks/python/apache_beam/dataframe/frames_test.py | 4 +
.../apache_beam/dataframe/pandas_doctests_test.py | 61 ++++++---
.../dataframe/pandas_top_level_functions.py | 1 +
.../runners/interactive/interactive_runner_test.py | 2 +-
sdks/python/apache_beam/typehints/schemas.py | 6 +
sdks/python/apache_beam/yaml/yaml_provider.py | 92 +++++++++++++-
35 files changed, 1393 insertions(+), 30 deletions(-)
create mode 100644 .github/workflows/beam_CleanUpGCPResources.yml
create mode 100644 .github/workflows/beam_CleanUpPrebuiltSDKImages.yml
create mode 100644
.github/workflows/beam_LoadTests_Go_Combine_Dataflow_Batch.yml
create mode 100644 .github/workflows/beam_LoadTests_Go_GBK_Dataflow_Batch.yml
create mode 100644
.github/workflows/beam_LoadTests_Python_Combine_Dataflow_Batch.yml
create mode 100644
.github/workflows/beam_PerformanceTests_BiqQueryIO_Read_Python.yml
create mode 100644
.github/workflows/beam_PerformanceTests_BiqQueryIO_Write_Python_Batch.yml
create mode 100644
.github/workflows/load-tests-job-configs/config_Combine_Go_Batch_10b.txt
create mode 100644
.github/workflows/load-tests-job-configs/config_Combine_Go_Batch_Fanout_4.txt
create mode 100644
.github/workflows/load-tests-job-configs/config_Combine_Go_Batch_Fanout_8.txt
create mode 100644
.github/workflows/load-tests-job-configs/config_Combine_Python_Batch_2GB_10b.txt
create mode 100644
.github/workflows/load-tests-job-configs/config_Combine_Python_Batch_2GB_Fanout_4.txt
create mode 100644
.github/workflows/load-tests-job-configs/config_Combine_Python_Batch_2GB_Fanout_8.txt
create mode 100644
.github/workflows/load-tests-job-configs/config_GBK_Go_Batch_100b.txt
create mode 100644
.github/workflows/load-tests-job-configs/config_GBK_Go_Batch_100kb.txt
create mode 100644
.github/workflows/load-tests-job-configs/config_GBK_Go_Batch_10b.txt
create mode 100644
.github/workflows/load-tests-job-configs/config_GBK_Go_Batch_Fanout_4.txt
create mode 100644
.github/workflows/load-tests-job-configs/config_GBK_Go_Batch_Fanout_8.txt
create mode 100644
.github/workflows/load-tests-job-configs/config_GBK_Go_Batch_Reiteration_10KB.txt
create mode 100644
.github/workflows/load-tests-job-configs/config_GBK_Go_Batch_Reiteration_2MB.txt
create mode 100644
.github/workflows/performance-tests-job-configs/config_PerformanceTests_BiqQueryIO_Read_Python.txt
create mode 100644
.github/workflows/performance-tests-job-configs/config_PerformanceTests_BiqQueryIO_Write_Python.txt