This is an automated email from the ASF dual-hosted git repository.
damccorm 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 155f8507d07 Add CloudML Benchmarks Dataflow workflow (#28941)
155f8507d07 is described below
commit 155f8507d07f663f9e3c69fedc907e590ad6f7f4
Author: Vitaly Terentyev <[email protected]>
AuthorDate: Fri Oct 13 20:23:50 2023 +0400
Add CloudML Benchmarks Dataflow workflow (#28941)
* Add CloudML Benchmarks Dataflow workflow
* Fix tag
---
.../workflows/beam_CloudML_Benchmarks_Dataflow.yml | 93 ++++++++++++++++++++++
.../beam_CloudML_Benchmarks_Dataflow_arguments.txt | 23 ++++++
2 files changed, 116 insertions(+)
diff --git a/.github/workflows/beam_CloudML_Benchmarks_Dataflow.yml
b/.github/workflows/beam_CloudML_Benchmarks_Dataflow.yml
new file mode 100644
index 00000000000..c34d9b5118e
--- /dev/null
+++ b/.github/workflows/beam_CloudML_Benchmarks_Dataflow.yml
@@ -0,0 +1,93 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements. See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+name: CloudML Benchmarks Dataflow
+
+on:
+ issue_comment:
+ types: [created]
+ schedule:
+ - cron: '10 21 * * *'
+ workflow_dispatch:
+
+#Setting explicit permissions for the action to avoid the default permissions
which are `write-all` in case of pull_request_target event
+permissions:
+ actions: write
+ pull-requests: read
+ checks: read
+ contents: read
+ deployments: read
+ id-token: none
+ issues: read
+ discussions: read
+ packages: read
+ pages: read
+ repository-projects: read
+ security-events: read
+ statuses: read
+
+# This allows a subsequently queued workflow run to interrupt previous runs
+concurrency:
+ group: '${{ github.workflow }} @ ${{ github.event.issue.number || github.sha
|| github.head_ref || github.ref }}-${{ github.event.schedule ||
github.event.comment.body || github.event.sender.login }}'
+ cancel-in-progress: true
+
+env:
+ GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
+ GRADLE_ENTERPRISE_CACHE_USERNAME: ${{ secrets.GE_CACHE_USERNAME }}
+ GRADLE_ENTERPRISE_CACHE_PASSWORD: ${{ secrets.GE_CACHE_PASSWORD }}
+
+jobs:
+ beam_CloudML_Benchmarks_Dataflow:
+ if: |
+ github.event_name == 'workflow_dispatch' ||
+ github.event_name == 'schedule' ||
+ github.event.comment.body == 'Run TFT Criteo Benchmarks'
+ runs-on: [self-hosted, ubuntu-20.04, main]
+ timeout-minutes: 360
+ name: ${{ matrix.job_name }} (${{ matrix.job_phrase }})
+ strategy:
+ matrix:
+ job_name: ["beam_CloudML_Benchmarks_Dataflow"]
+ job_phrase: ["Run TFT Criteo Benchmarks"]
+ steps:
+ - uses: actions/checkout@v3
+ - name: Setup repository
+ uses: ./.github/actions/setup-action
+ with:
+ comment_phrase: ${{ matrix.job_phrase }}
+ github_token: ${{ secrets.GITHUB_TOKEN }}
+ github_job: ${{ matrix.job_name }} (${{ matrix.job_phrase }})
+ - name: Setup Python environment
+ uses: ./.github/actions/setup-environment-action
+ with:
+ python-version: |
+ 3.8
+ 3.9
+ - name: Prepare test arguments
+ uses: ./.github/actions/test-arguments-action
+ with:
+ test-type: load
+ test-language: python
+ argument-file-paths: |
+ ${{ github.workspace
}}/.github/workflows/load-tests-job-configs/beam_CloudML_Benchmarks_Dataflow_arguments.txt
+ # The env variables are created and populated in the
test-arguments-action as
"<github.job>_test_arguments_<argument_file_paths_index>"
+ - name: run TFT Criteo Benchmarks
+ uses: ./.github/actions/gradle-command-self-hosted-action
+ with:
+ gradle-command: :sdks:python:test-suites:dataflow:tftTests
+ arguments: |
+ -PpythonVersion=3.9 \
+ -Prunner=DataflowRunner \
+ '-Popts=${{ env.beam_CloudML_Benchmarks_Dataflow_test_arguments_1
}}'
\ No newline at end of file
diff --git
a/.github/workflows/load-tests-job-configs/beam_CloudML_Benchmarks_Dataflow_arguments.txt
b/.github/workflows/load-tests-job-configs/beam_CloudML_Benchmarks_Dataflow_arguments.txt
new file mode 100644
index 00000000000..b1b45c4cc9e
--- /dev/null
+++
b/.github/workflows/load-tests-job-configs/beam_CloudML_Benchmarks_Dataflow_arguments.txt
@@ -0,0 +1,23 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+--metrics_dataset=beam_cloudml
+--publish_to_big_query=true
+--region=us-central1
+--staging_location=gs://temp-storage-for-perf-tests/loadtests
+--temp_location=gs://temp-storage-for-perf-tests/loadtests
+--runner=DataflowRunner
+--requirements_file=apache_beam/testing/benchmarks/cloudml/requirements.txt
\ No newline at end of file