You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by gi...@apache.org on 2024/03/13 03:49:14 UTC

(beam) branch nightly-refs/heads/master updated (d22a7e783ab -> 289bbc45c56)

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 d22a7e783ab Make defaults for optional SchemaTransformProvider methods  (#30560)
     add 35252b92c0f Duet AI  documentation lookup prompts for Beam ML (#30351)
     add 0c8b78a9ff0 Remove Anand, add Shunping to reviewers (#30608)
     add 97f8dae92f2 Put an explanatory comment in trigger files that exist
     add 9a6777ebe7e Merge pull request #30586: Put an explanatory comment in trigger files that exist
     add 986f67fd92b Update blog template with known issues link to CHANGES (#30611)
     add 5a9a7d2f85b Add a known issue for gcsio in the notes of 2.53.0 and 2.54.0. (#30615)
     add 06c76b4e930 Updates the test suite to use the transform service (#30605)
     add 17bbe8262b9 Remove MapState and SetState tests that mix v1 and v2 codepaths erroneously
     add 8945b8fc144 Remove GroupIntoBatches tests that mix v1 and v2 codepaths erroneously
     add bf5551bd118 Remove PubsubSink tests that conflate v1 and v2 codepaths erroneously
     add 0a0186de555 Skip v1 translation steps for pipelines that will run on v2
     add c79b6e157dd Merge pull request #30604: Skip running Dataflow v1 logic when a job will run on v2
     add 289bbc45c56 [Python] Pin keras version for tensorflow inference test (#30614)

No new revisions were added by this update.

Summary of changes:
 .github/REVIEWERS.yml                              |   5 +-
 .../beam_PostCommit_Java_Avro_Versions.json        |   3 +
 .../beam_PostCommit_Java_DataflowV1.json           |   3 +
 .../beam_PostCommit_Java_PVR_Spark3_Streaming.json |   3 +
 .../beam_PostCommit_Java_PVR_Spark_Batch.json      |   3 +
 ...ostCommit_Java_ValidatesRunner_Dataflow_V2.json |   3 +
 ...Java_ValidatesRunner_Dataflow_V2_Streaming.json |   3 +
 ...stCommit_Java_ValidatesRunner_Flink_Java11.json |   3 +
 ...a_ValidatesRunner_SparkStructuredStreaming.json |   3 +
 ...m_PostCommit_Java_ValidatesRunner_Twister2.json |   3 +
 .../beam_PostCommit_Java_ValidatesRunner_ULR.json  |   3 +
 ...o_Versions.json => beam_PostCommit_Python.json} |   0
 .../beam_PostCommit_Python_Examples_Direct.json    |   3 +
 .../beam_PostCommit_Python_Xlang_Gcp_Dataflow.json |   3 +
 .../beam_PostCommit_Python_Xlang_Gcp_Direct.json   |   4 +-
 .../beam_PostCommit_Python_Xlang_IO_Dataflow.json  |   3 +
 .../beam_PostCommit_TransformService_Direct.json   |   3 +
 .../trigger_files/beam_PostCommit_XVR_Flink.json   |   3 +
 ...PostCommit_XVR_PythonUsingJavaSQL_Dataflow.json |   3 +
 CHANGES.md                                         |   3 +
 contributor-docs/release-guide.md                  |   2 +
 .../33_ai_ml_pipelines.md                          |  22 +++++
 .../36_ai_kfp_orchestration.md                     |  51 ++++++++++
 .../37_ai_tfx_orchestration.md                     |  20 ++++
 .../38_ai_runinference.md                          |  37 ++++++++
 .../39_ai_runinference_metrics.md                  |  38 ++++++++
 .../40_ai_bigquery_ml.md                           |  48 ++++++++++
 .../41_ai_model_refresh.md                         |  42 +++++++++
 .../42_ai_custom_inference.md                      |  50 ++++++++++
 .../43_ai_llm_inference.md                         |  60 ++++++++++++
 .../documentation-lookup/33_ai_ml_pipelines.md     |  15 +++
 .../36_ai_kfp_orchestration.md                     |  51 ++++++++++
 .../37_ai_tfx_orchestration.md                     |  20 ++++
 .../documentation-lookup/38_ai_runinference.md     |  39 ++++++++
 .../39_ai_runinference_metrics.md                  |  39 ++++++++
 .../documentation-lookup/40_ai_bigquery_ml.md      |  52 ++++++++++
 .../documentation-lookup/41_ai_model_refresh.md    |  42 +++++++++
 .../documentation-lookup/42_ai_custom_inference.md |  50 ++++++++++
 .../documentation-lookup/43_ai_llm_inference.md    |  60 ++++++++++++
 .../dataflow/DataflowPipelineTranslator.java       |   6 +-
 .../beam/runners/dataflow/DataflowRunner.java      |  11 ++-
 .../dataflow/DataflowPipelineTranslatorTest.java   | 105 ---------------------
 .../beam/runners/dataflow/DataflowRunnerTest.java  |  29 +-----
 .../apache_beam/io/gcp/bigtableio_it_test.py       |  16 +++-
 .../ml/inference/tensorflow_tests_requirements.txt |   1 +
 sdks/python/expansion-service-container/boot.go    |  24 ++++-
 46 files changed, 845 insertions(+), 145 deletions(-)
 copy .github/trigger_files/{beam_PostCommit_Java_Avro_Versions.json => beam_PostCommit_Python.json} (100%)
 create mode 100644 .github/trigger_files/beam_PostCommit_TransformService_Direct.json
 create mode 100644 .github/trigger_files/beam_PostCommit_XVR_Flink.json
 create mode 100644 learning/prompts/documentation-lookup-nolinks/33_ai_ml_pipelines.md
 create mode 100644 learning/prompts/documentation-lookup-nolinks/36_ai_kfp_orchestration.md
 create mode 100644 learning/prompts/documentation-lookup-nolinks/37_ai_tfx_orchestration.md
 create mode 100644 learning/prompts/documentation-lookup-nolinks/38_ai_runinference.md
 create mode 100644 learning/prompts/documentation-lookup-nolinks/39_ai_runinference_metrics.md
 create mode 100644 learning/prompts/documentation-lookup-nolinks/40_ai_bigquery_ml.md
 create mode 100644 learning/prompts/documentation-lookup-nolinks/41_ai_model_refresh.md
 create mode 100644 learning/prompts/documentation-lookup-nolinks/42_ai_custom_inference.md
 create mode 100644 learning/prompts/documentation-lookup-nolinks/43_ai_llm_inference.md
 create mode 100644 learning/prompts/documentation-lookup/33_ai_ml_pipelines.md
 create mode 100644 learning/prompts/documentation-lookup/36_ai_kfp_orchestration.md
 create mode 100644 learning/prompts/documentation-lookup/37_ai_tfx_orchestration.md
 create mode 100644 learning/prompts/documentation-lookup/38_ai_runinference.md
 create mode 100644 learning/prompts/documentation-lookup/39_ai_runinference_metrics.md
 create mode 100644 learning/prompts/documentation-lookup/40_ai_bigquery_ml.md
 create mode 100644 learning/prompts/documentation-lookup/41_ai_model_refresh.md
 create mode 100644 learning/prompts/documentation-lookup/42_ai_custom_inference.md
 create mode 100644 learning/prompts/documentation-lookup/43_ai_llm_inference.md