This is an automated email from the ASF dual-hosted git repository.
yhu 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 b74a0dc8e65 Add Load Tests Combine Dataflow Batch Java workflow
(#28676)
b74a0dc8e65 is described below
commit b74a0dc8e6592503909530850f1fb6ec826f4a65
Author: Vitaly Terentyev <[email protected]>
AuthorDate: Thu Sep 28 07:50:22 2023 +0400
Add Load Tests Combine Dataflow Batch Java workflow (#28676)
---
.../beam_LoadTests_Java_Combine_Dataflow_Batch.yml | 104 +++++++++++++++++++++
.../config_Combine_Java_Dataflow_Batch_10b.txt | 30 ++++++
...config_Combine_Java_Dataflow_Batch_Fanout_4.txt | 30 ++++++
...config_Combine_Java_Dataflow_Batch_Fanout_8.txt | 30 ++++++
4 files changed, 194 insertions(+)
diff --git a/.github/workflows/beam_LoadTests_Java_Combine_Dataflow_Batch.yml
b/.github/workflows/beam_LoadTests_Java_Combine_Dataflow_Batch.yml
new file mode 100644
index 00000000000..758d196f273
--- /dev/null
+++ b/.github/workflows/beam_LoadTests_Java_Combine_Dataflow_Batch.yml
@@ -0,0 +1,104 @@
+# 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: Load Tests Combine Dataflow Batch Java
+
+on:
+ issue_comment:
+ types: [created]
+ schedule:
+ - cron: '35 7 * * *'
+ 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_LoadTests_Java_Combine_Dataflow_Batch:
+ if: |
+ github.event_name == 'workflow_dispatch' ||
+ github.event_name == 'schedule' ||
+ github.event.comment.body == 'Run Load Tests Java Combine Dataflow Batch'
+ runs-on: [self-hosted, ubuntu-20.04, main]
+ timeout-minutes: 720
+ name: ${{ matrix.job_name }} (${{ matrix.job_phrase }})
+ strategy:
+ matrix:
+ job_name: ["beam_LoadTests_Java_Combine_Dataflow_Batch"]
+ job_phrase: ["Run Load Tests Java Combine Dataflow Batch"]
+ 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: Prepare test arguments
+ uses: ./.github/actions/test-arguments-action
+ with:
+ test-type: load
+ test-language: java
+ argument-file-paths: |
+ ${{ github.workspace
}}/.github/workflows/load-tests-job-configs/config_Combine_Java_Dataflow_Batch_10b.txt
+ ${{ github.workspace
}}/.github/workflows/load-tests-job-configs/config_Combine_Java_Dataflow_Batch_Fanout_4.txt
+ ${{ github.workspace
}}/.github/workflows/load-tests-job-configs/config_Combine_Java_Dataflow_Batch_Fanout_8.txt
+ - name: run Combine Dataflow Batch Java Load Test 1 (10 b records)
+ uses: ./.github/actions/gradle-command-self-hosted-action
+ with:
+ gradle-command: :sdks:java:testing:load-tests:run
+ arguments: |
+ -PloadTest.mainClass=org.apache.beam.sdk.loadtests.CombineLoadTest
\
+ -Prunner=:runners:google-cloud-dataflow-java \
+ '-PloadTest.args=${{
env.beam_LoadTests_Java_Combine_Dataflow_Batch_test_arguments_1 }}' \
+ - name: run Combine Dataflow Batch Java Load Test 2 (fanout 4)
+ uses: ./.github/actions/gradle-command-self-hosted-action
+ with:
+ gradle-command: :sdks:java:testing:load-tests:run
+ arguments: |
+ -PloadTest.mainClass=org.apache.beam.sdk.loadtests.CombineLoadTest
\
+ -Prunner=:runners:google-cloud-dataflow-java \
+ '-PloadTest.args=${{
env.beam_LoadTests_Java_Combine_Dataflow_Batch_test_arguments_2 }}' \
+ - name: run Combine Dataflow Batch Java Load Test 3 (fanout 8)
+ uses: ./.github/actions/gradle-command-self-hosted-action
+ with:
+ gradle-command: :sdks:java:testing:load-tests:run
+ arguments: |
+ -PloadTest.mainClass=org.apache.beam.sdk.loadtests.CombineLoadTest
\
+ -Prunner=:runners:google-cloud-dataflow-java \
+ '-PloadTest.args=${{
env.beam_LoadTests_Java_Combine_Dataflow_Batch_test_arguments_3 }}'
\ No newline at end of file
diff --git
a/.github/workflows/load-tests-job-configs/config_Combine_Java_Dataflow_Batch_10b.txt
b/.github/workflows/load-tests-job-configs/config_Combine_Java_Dataflow_Batch_10b.txt
new file mode 100644
index 00000000000..be6edd016de
--- /dev/null
+++
b/.github/workflows/load-tests-job-configs/config_Combine_Java_Dataflow_Batch_10b.txt
@@ -0,0 +1,30 @@
+# 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.
+
+--region=us-central1
+--appName=load_tests_Java_Dataflow_batch_Combine_1
+--tempLocation=gs://temp-storage-for-perf-tests/loadtests
+--influxMeasurement=java_batch_combine_1
+--publishToInfluxDB=true
+--sourceOptions={"numRecords":200000000,"keySizeBytes":1,"valueSizeBytes":9}
+--fanout=1
+--iterations=1
+--topCount=20
+--numWorkers=5
+--autoscalingAlgorithm=NONE
+--perKeyCombiner=TOP_LARGEST
+--streaming=false
+--runner=DataflowRunner
\ No newline at end of file
diff --git
a/.github/workflows/load-tests-job-configs/config_Combine_Java_Dataflow_Batch_Fanout_4.txt
b/.github/workflows/load-tests-job-configs/config_Combine_Java_Dataflow_Batch_Fanout_4.txt
new file mode 100644
index 00000000000..4f6216c1d8d
--- /dev/null
+++
b/.github/workflows/load-tests-job-configs/config_Combine_Java_Dataflow_Batch_Fanout_4.txt
@@ -0,0 +1,30 @@
+# 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.
+
+--region=us-central1
+--appName=load_tests_Java_Dataflow_batch_Combine_2
+--tempLocation=gs://temp-storage-for-perf-tests/loadtests
+--influxMeasurement=java_batch_combine_2
+--publishToInfluxDB=true
+--sourceOptions={"numRecords":5000000,"keySizeBytes":10,"valueSizeBytes":90}
+--fanout=4
+--iterations=1
+--topCount=20
+--numWorkers=16
+--autoscalingAlgorithm=NONE
+--perKeyCombiner=TOP_LARGEST
+--streaming=false
+--runner=DataflowRunner
\ No newline at end of file
diff --git
a/.github/workflows/load-tests-job-configs/config_Combine_Java_Dataflow_Batch_Fanout_8.txt
b/.github/workflows/load-tests-job-configs/config_Combine_Java_Dataflow_Batch_Fanout_8.txt
new file mode 100644
index 00000000000..68bed0bae78
--- /dev/null
+++
b/.github/workflows/load-tests-job-configs/config_Combine_Java_Dataflow_Batch_Fanout_8.txt
@@ -0,0 +1,30 @@
+# 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.
+
+--region=us-central1
+--appName=load_tests_Java_Dataflow_batch_Combine_3
+--tempLocation=gs://temp-storage-for-perf-tests/loadtests
+--influxMeasurement=java_batch_combine_3
+--publishToInfluxDB=true
+--sourceOptions={"numRecords":2500000,"keySizeBytes":10,"valueSizeBytes":90}
+--fanout=8
+--iterations=1
+--topCount=20
+--numWorkers=16
+--autoscalingAlgorithm=NONE
+--perKeyCombiner=TOP_LARGEST
+--streaming=false
+--runner=DataflowRunner
\ No newline at end of file