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 c3cfccae1e1 Add Load Tests ParDo Dataflow Java workflows (#28713)
c3cfccae1e1 is described below

commit c3cfccae1e10ba6a073ee23dce58e4671c543cf8
Author: Vitaly Terentyev <[email protected]>
AuthorDate: Thu Sep 28 19:08:10 2023 +0400

    Add Load Tests ParDo Dataflow Java workflows (#28713)
    
    * Add Load Tests ParDo Dataflow Java workflows
    
    * Refactoring
---
 .../beam_LoadTests_Java_ParDo_Dataflow_Batch.yml   | 117 +++++++++++++++++++++
 ...eam_LoadTests_Java_ParDo_Dataflow_Streaming.yml | 117 +++++++++++++++++++++
 .../java_ParDo_Dataflow_Batch_100_counters.txt     |  29 +++++
 .../java_ParDo_Dataflow_Batch_10_counters.txt      |  29 +++++
 .../java_ParDo_Dataflow_Batch_10_times.txt         |  29 +++++
 .../java_ParDo_Dataflow_Batch_200_times.txt        |  30 ++++++
 .../java_ParDo_Dataflow_Streaming_100_counters.txt |  30 ++++++
 .../java_ParDo_Dataflow_Streaming_10_counters.txt  |  30 ++++++
 .../java_ParDo_Dataflow_Streaming_10_times.txt     |  30 ++++++
 .../java_ParDo_Dataflow_Streaming_200_times.txt    |  30 ++++++
 10 files changed, 471 insertions(+)

diff --git a/.github/workflows/beam_LoadTests_Java_ParDo_Dataflow_Batch.yml 
b/.github/workflows/beam_LoadTests_Java_ParDo_Dataflow_Batch.yml
new file mode 100644
index 00000000000..6bd52d2ebae
--- /dev/null
+++ b/.github/workflows/beam_LoadTests_Java_ParDo_Dataflow_Batch.yml
@@ -0,0 +1,117 @@
+# 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: LoadTests Java ParDo Dataflow Batch
+
+on:
+  issue_comment:
+    types: [created]
+  schedule:
+    - cron: '55 9 * * *'
+  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 }}
+  beam_LoadTests_Java_ParDo_Dataflow_Batch_test_arguments_1: ''
+  beam_LoadTests_Java_ParDo_Dataflow_Batch_test_arguments_2: ''
+  beam_LoadTests_Java_ParDo_Dataflow_Batch_test_arguments_3: ''
+  beam_LoadTests_Java_ParDo_Dataflow_Batch_test_arguments_4: ''
+
+jobs:
+  beam_LoadTests_Java_ParDo_Dataflow_Batch:
+    if: |
+      github.event_name == 'workflow_dispatch' ||
+      github.event_name == 'schedule' ||
+      github.event.comment.body == 'Run Load Tests Java ParDo 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_ParDo_Dataflow_Batch"]
+        job_phrase: ["Run Load Tests Java ParDo 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/java_ParDo_Dataflow_Batch_10_times.txt
+            ${{ github.workspace 
}}/.github/workflows/load-tests-job-configs/java_ParDo_Dataflow_Batch_200_times.txt
+            ${{ github.workspace 
}}/.github/workflows/load-tests-job-configs/java_ParDo_Dataflow_Batch_10_counters.txt
+            ${{ github.workspace 
}}/.github/workflows/load-tests-job-configs/java_ParDo_Dataflow_Batch_100_counters.txt
+      - name: run ParDo Dataflow Batch Java Load Test 1 (10 times)
+        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.ParDoLoadTest \
+            -Prunner=:runners:google-cloud-dataflow-java \
+            '-PloadTest.args=${{ 
env.beam_LoadTests_Java_ParDo_Dataflow_Batch_test_arguments_1 }}' \
+      - name: run ParDo Dataflow Batch Java Load Test 2 (200 times)
+        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.ParDoLoadTest \
+            -Prunner=:runners:google-cloud-dataflow-java \
+            '-PloadTest.args=${{ 
env.beam_LoadTests_Java_ParDo_Dataflow_Batch_test_arguments_2 }}' \
+      - name: run ParDo Dataflow Batch Java Load Test 3 (10 counters)
+        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.ParDoLoadTest \
+            -Prunner=:runners:google-cloud-dataflow-java \
+            '-PloadTest.args=${{ 
env.beam_LoadTests_Java_ParDo_Dataflow_Batch_test_arguments_3 }}' \
+      - name: run ParDo Dataflow Batch Java Load Test 4 (100 counters)
+        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.ParDoLoadTest \
+            -Prunner=:runners:google-cloud-dataflow-java \
+            '-PloadTest.args=${{ 
env.beam_LoadTests_Java_ParDo_Dataflow_Batch_test_arguments_4 }}'
\ No newline at end of file
diff --git a/.github/workflows/beam_LoadTests_Java_ParDo_Dataflow_Streaming.yml 
b/.github/workflows/beam_LoadTests_Java_ParDo_Dataflow_Streaming.yml
new file mode 100644
index 00000000000..dbee457b6ec
--- /dev/null
+++ b/.github/workflows/beam_LoadTests_Java_ParDo_Dataflow_Streaming.yml
@@ -0,0 +1,117 @@
+# 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: LoadTests Java ParDo Dataflow Streaming
+
+on:
+  issue_comment:
+    types: [created]
+  schedule:
+    - cron: '10 11 * * *'
+  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 }}
+  beam_LoadTests_Java_ParDo_Dataflow_Streaming_test_arguments_1: ''
+  beam_LoadTests_Java_ParDo_Dataflow_Streaming_test_arguments_2: ''
+  beam_LoadTests_Java_ParDo_Dataflow_Streaming_test_arguments_3: ''
+  beam_LoadTests_Java_ParDo_Dataflow_Streaming_test_arguments_4: ''
+
+jobs:
+  beam_LoadTests_Java_ParDo_Dataflow_Streaming:
+    if: |
+      github.event_name == 'workflow_dispatch' ||
+      github.event_name == 'schedule' ||
+      github.event.comment.body == 'Run Load Tests Java ParDo Dataflow 
Streaming'
+    runs-on: [self-hosted, ubuntu-20.04, main]
+    timeout-minutes: 240
+    name: ${{ matrix.job_name }} (${{ matrix.job_phrase }})
+    strategy:
+      matrix:
+        job_name: ["beam_LoadTests_Java_ParDo_Dataflow_Streaming"]
+        job_phrase: ["Run Load Tests Java ParDo Dataflow Streaming"]
+    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/java_ParDo_Dataflow_Streaming_10_times.txt
+            ${{ github.workspace 
}}/.github/workflows/load-tests-job-configs/java_ParDo_Dataflow_Streaming_200_times.txt
+            ${{ github.workspace 
}}/.github/workflows/load-tests-job-configs/java_ParDo_Dataflow_Streaming_10_counters.txt
+            ${{ github.workspace 
}}/.github/workflows/load-tests-job-configs/java_ParDo_Dataflow_Streaming_100_counters.txt
+      - name: run ParDo Dataflow Streaming Java Load Test 1 (10 times)
+        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.ParDoLoadTest \
+            -Prunner=:runners:google-cloud-dataflow-java \
+            '-PloadTest.args=${{ 
env.beam_LoadTests_Java_ParDo_Dataflow_Streaming_test_arguments_1 }}' \
+      - name: run ParDo Dataflow Streaming Java Load Test 2 (200 times)
+        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.ParDoLoadTest \
+            -Prunner=:runners:google-cloud-dataflow-java \
+            '-PloadTest.args=${{ 
env.beam_LoadTests_Java_ParDo_Dataflow_Streaming_test_arguments_2 }}' \
+      - name: run ParDo Dataflow Streaming Java Load Test 3 (10 counters)
+        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.ParDoLoadTest \
+            -Prunner=:runners:google-cloud-dataflow-java \
+            '-PloadTest.args=${{ 
env.beam_LoadTests_Java_ParDo_Dataflow_Streaming_test_arguments_3 }}' \
+      - name: run ParDo Dataflow Streaming Java Load Test 4 (100 counters)
+        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.ParDoLoadTest \
+            -Prunner=:runners:google-cloud-dataflow-java \
+            '-PloadTest.args=${{ 
env.beam_LoadTests_Java_ParDo_Dataflow_Streaming_test_arguments_4 }}'
\ No newline at end of file
diff --git 
a/.github/workflows/load-tests-job-configs/java_ParDo_Dataflow_Batch_100_counters.txt
 
b/.github/workflows/load-tests-job-configs/java_ParDo_Dataflow_Batch_100_counters.txt
new file mode 100644
index 00000000000..b18650a8e8a
--- /dev/null
+++ 
b/.github/workflows/load-tests-job-configs/java_ParDo_Dataflow_Batch_100_counters.txt
@@ -0,0 +1,29 @@
+#  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_ParDo_4
+--tempLocation=gs://temp-storage-for-perf-tests/loadtests
+--influxMeasurement=java_batch_pardo_4
+--publishToInfluxDB=true
+--sourceOptions={"numRecords":20000000,"keySizeBytes":10,"valueSizeBytes":90}
+--iterations=1
+--numberOfCounters=1
+--numberOfCounterOperations=100
+--numWorkers=5
+--autoscalingAlgorithm=NONE
+--streaming=false
+--runner=DataflowRunner
\ No newline at end of file
diff --git 
a/.github/workflows/load-tests-job-configs/java_ParDo_Dataflow_Batch_10_counters.txt
 
b/.github/workflows/load-tests-job-configs/java_ParDo_Dataflow_Batch_10_counters.txt
new file mode 100644
index 00000000000..c6a7785e02c
--- /dev/null
+++ 
b/.github/workflows/load-tests-job-configs/java_ParDo_Dataflow_Batch_10_counters.txt
@@ -0,0 +1,29 @@
+#  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_ParDo_3
+--tempLocation=gs://temp-storage-for-perf-tests/loadtests
+--influxMeasurement=java_batch_pardo_3
+--publishToInfluxDB=true
+--sourceOptions={"numRecords":20000000,"keySizeBytes":10,"valueSizeBytes":90}
+--iterations=1
+--numberOfCounters=1
+--numberOfCounterOperations=10
+--numWorkers=5
+--autoscalingAlgorithm=NONE
+--streaming=false
+--runner=DataflowRunner
\ No newline at end of file
diff --git 
a/.github/workflows/load-tests-job-configs/java_ParDo_Dataflow_Batch_10_times.txt
 
b/.github/workflows/load-tests-job-configs/java_ParDo_Dataflow_Batch_10_times.txt
new file mode 100644
index 00000000000..8e692050c25
--- /dev/null
+++ 
b/.github/workflows/load-tests-job-configs/java_ParDo_Dataflow_Batch_10_times.txt
@@ -0,0 +1,29 @@
+#  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_ParDo_1
+--tempLocation=gs://temp-storage-for-perf-tests/loadtests
+--influxMeasurement=java_batch_pardo_1
+--publishToInfluxDB=true
+--sourceOptions={"numRecords":20000000,"keySizeBytes":10,"valueSizeBytes":90}
+--iterations=10
+--numberOfCounters=1
+--numberOfCounterOperations=0
+--numWorkers=5
+--autoscalingAlgorithm=NONE
+--streaming=false
+--runner=DataflowRunner
\ No newline at end of file
diff --git 
a/.github/workflows/load-tests-job-configs/java_ParDo_Dataflow_Batch_200_times.txt
 
b/.github/workflows/load-tests-job-configs/java_ParDo_Dataflow_Batch_200_times.txt
new file mode 100644
index 00000000000..795990ee7ba
--- /dev/null
+++ 
b/.github/workflows/load-tests-job-configs/java_ParDo_Dataflow_Batch_200_times.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_ParDo_2
+--tempLocation=gs://temp-storage-for-perf-tests/loadtests
+--influxMeasurement=java_batch_pardo_2
+--publishToInfluxDB=true
+--sourceOptions={"numRecords":20000000,"keySizeBytes":10,"valueSizeBytes":90}
+--iterations=200
+--numberOfCounters=1
+--numberOfCounterOperations=0
+--numWorkers=5
+--autoscalingAlgorithm=NONE
+--streaming=false
+--inputWindowDurationSec=1200
+--runner=DataflowRunner
\ No newline at end of file
diff --git 
a/.github/workflows/load-tests-job-configs/java_ParDo_Dataflow_Streaming_100_counters.txt
 
b/.github/workflows/load-tests-job-configs/java_ParDo_Dataflow_Streaming_100_counters.txt
new file mode 100644
index 00000000000..adcfb461913
--- /dev/null
+++ 
b/.github/workflows/load-tests-job-configs/java_ParDo_Dataflow_Streaming_100_counters.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_streaming_ParDo_4
+--tempLocation=gs://temp-storage-for-perf-tests/loadtests
+--influxMeasurement=java_streaming_pardo_4
+--publishToInfluxDB=true
+--sourceOptions={"numRecords":20000000,"keySizeBytes":10,"valueSizeBytes":90}
+--iterations=1
+--numberOfCounters=1
+--numberOfCounterOperations=100
+--numWorkers=5
+--autoscalingAlgorithm=NONE
+--streaming=true
+--inputWindowDurationSec=1200
+--runner=DataflowRunner
\ No newline at end of file
diff --git 
a/.github/workflows/load-tests-job-configs/java_ParDo_Dataflow_Streaming_10_counters.txt
 
b/.github/workflows/load-tests-job-configs/java_ParDo_Dataflow_Streaming_10_counters.txt
new file mode 100644
index 00000000000..a954c0b8180
--- /dev/null
+++ 
b/.github/workflows/load-tests-job-configs/java_ParDo_Dataflow_Streaming_10_counters.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_streaming_ParDo_3
+--tempLocation=gs://temp-storage-for-perf-tests/loadtests
+--influxMeasurement=java_streaming_pardo_3
+--publishToInfluxDB=true
+--sourceOptions={"numRecords":20000000,"keySizeBytes":10,"valueSizeBytes":90}
+--iterations=1
+--numberOfCounters=1
+--numberOfCounterOperations=10
+--numWorkers=5
+--autoscalingAlgorithm=NONE
+--streaming=true
+--inputWindowDurationSec=1200
+--runner=DataflowRunner
\ No newline at end of file
diff --git 
a/.github/workflows/load-tests-job-configs/java_ParDo_Dataflow_Streaming_10_times.txt
 
b/.github/workflows/load-tests-job-configs/java_ParDo_Dataflow_Streaming_10_times.txt
new file mode 100644
index 00000000000..9b579c428be
--- /dev/null
+++ 
b/.github/workflows/load-tests-job-configs/java_ParDo_Dataflow_Streaming_10_times.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_streaming_ParDo_1
+--tempLocation=gs://temp-storage-for-perf-tests/loadtests
+--influxMeasurement=java_streaming_pardo_1
+--publishToInfluxDB=true
+--sourceOptions={"numRecords":20000000,"keySizeBytes":10,"valueSizeBytes":90}
+--iterations=10
+--numberOfCounters=1
+--numberOfCounterOperations=0
+--numWorkers=5
+--autoscalingAlgorithm=NONE
+--streaming=true
+--inputWindowDurationSec=1200
+--runner=DataflowRunner
\ No newline at end of file
diff --git 
a/.github/workflows/load-tests-job-configs/java_ParDo_Dataflow_Streaming_200_times.txt
 
b/.github/workflows/load-tests-job-configs/java_ParDo_Dataflow_Streaming_200_times.txt
new file mode 100644
index 00000000000..6b08284cd06
--- /dev/null
+++ 
b/.github/workflows/load-tests-job-configs/java_ParDo_Dataflow_Streaming_200_times.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_streaming_ParDo_2
+--tempLocation=gs://temp-storage-for-perf-tests/loadtests
+--influxMeasurement=java_streaming_pardo_2
+--publishToInfluxDB=true
+--sourceOptions={"numRecords":20000000,"keySizeBytes":10,"valueSizeBytes":90}
+--iterations=200
+--numberOfCounters=1
+--numberOfCounterOperations=0
+--numWorkers=5
+--autoscalingAlgorithm=NONE
+--streaming=true
+--inputWindowDurationSec=1200
+--runner=DataflowRunner
\ No newline at end of file

Reply via email to