andreydevyatkin commented on code in PR #28742:
URL: https://github.com/apache/beam/pull/28742#discussion_r1347743319


##########
.github/workflows/beam_LoadTests_Java_CoGBK_Dataflow_Batch_Java.yml:
##########
@@ -0,0 +1,133 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more

Review Comment:
   Please rename the workflow file to:
   ```
   beam_LoadTests_Java_CoGBK_Dataflow_Batch_V2_JavaVersions.yml
   ```



##########
.github/workflows/beam_LoadTests_Java_CoGBK_Dataflow_Batch_Java.yml:
##########
@@ -0,0 +1,133 @@
+# 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 CoGBK Dataflow Batch Java
+
+on:
+  issue_comment:
+    types: [created]
+  schedule:
+    - cron: '0 10 * * *'
+  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_CoGBK_Dataflow_V2_Batch_Java:
+    if: |
+      github.event_name == 'workflow_dispatch' ||
+      github.event_name == 'schedule' ||
+      (contains(github.event.comment.body, 'Run Load Tests Java') &&
+         contains(github.event.comment.body, 'CoGBK Dataflow V2 Batch'))
+    runs-on: [self-hosted, ubuntu-20.04, main]
+    timeout-minutes: 720
+    name: ${{matrix.job_name}} (${{matrix.job_phrase_1}} 
${{matrix.java_version}} ${{matrix.job_phrase_2}})
+    strategy:
+      fail-fast: false
+      matrix:
+        job_name: ["beam_LoadTests_Java_CoGBK_Dataflow_V2_Batch_Java"]
+        job_phrase_1: ["Run Load Tests Java"]
+        job_phrase_2: ["CoGBK Dataflow V2 Batch"]
+        java_version: ['11','17']
+    steps:
+      - uses: actions/checkout@v3
+      - name: Setup repository
+        uses: ./.github/actions/setup-action
+        with:
+          comment_phrase: ${{ matrix.job_phrase_1 }} ${{matrix.java_version}} 
${{ matrix.job_phrase_2 }}
+          github_token: ${{ secrets.GITHUB_TOKEN }}
+          github_job: ${{ matrix.job_name }} ${{ matrix.job_phrase_1 }} 
${{matrix.java_version}} ${{ matrix.job_phrase_2 }}
+      - name: Set up Java${{ matrix.java_version }}
+        uses: actions/[email protected]
+        with:
+          distribution: 'temurin'
+          java-version: ${{ matrix.java_version }}

Review Comment:
   ```suggestion
         - name: Setup environment
           uses: ./.github/actions/setup-environment-action
           with:
             java-version: ${{ matrix.java_version }}
   ```
   Please apply it for all workflow files in this PR



##########
.github/workflows/beam_LoadTests_Java_CoGBK_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 CoGBK Dataflow Batch
+
+on:
+  issue_comment:
+    types: [created]
+  schedule:
+    - cron: '30 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 }}
+
+jobs:
+  beam_LoadTests_Java_CoGBK_Dataflow_Batch:
+    if: |
+      github.event_name == 'workflow_dispatch' ||
+      github.event_name == 'schedule' ||
+      github.event.comment.body == 'Run Load Tests Java CoGBK Dataflow Batch'
+    runs-on: [self-hosted, ubuntu-20.04, main]
+    timeout-minutes: 960
+    name: ${{ matrix.job_name }} (${{ matrix.job_phrase }})
+    strategy:
+      matrix:
+        job_name: ["beam_LoadTests_Java_CoGBK_Dataflow_Batch"]
+        job_phrase: ["Run Load Tests Java CoGBK 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-cogbk/java_CoGBK_Dataflow_Batch_100b_Single_Key.txt
+            ${{ github.workspace 
}}/.github/workflows/load-tests-job-configs/java-cogbk/java_CoGBK_Dataflow_Batch_100b_Multiple_Keys.txt
+            ${{ github.workspace 
}}/.github/workflows/load-tests-job-configs/java-cogbk/java_CoGBK_Dataflow_Batch_10kB.txt
+            ${{ github.workspace 
}}/.github/workflows/load-tests-job-configs/java-cogbk/java_CoGBK_Dataflow_Batch_2MB.txt
+      # The env variable is created and populated in the test-arguments-action 
as "beam_LoadTests_Java_CoGBK_Dataflow_Batch_test_arguments_1"

Review Comment:
   The comment above is not fixed. Please apply this changes for all workflow 
files:
   ```
   # The env variables are created and populated in the test-arguments-action 
as "<github.job>_test_arguments_<argument_file_paths_index>"
   ```



##########
.github/workflows/beam_LoadTests_Java_CoGBK_Dataflow_Batch_Java.yml:
##########
@@ -0,0 +1,133 @@
+# 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 CoGBK Dataflow Batch Java

Review Comment:
   ```suggestion
   name: LoadTests Java CoGBK Dataflow V2 Batch JavaVersions
   ```



##########
.github/workflows/load-tests-job-configs/java-cogbk/java_CoGBK_Dataflow_Batch_100b_Multiple_Keys.txt:
##########
@@ -0,0 +1,28 @@
+#  Licensed to the Apache Software Foundation (ASF) under one

Review Comment:
   I think grouping files in the `/java-cogbk` directory is redundant. Let's 
leave these files in the `load-tests-job-configs` directory



##########
.github/workflows/beam_LoadTests_Java_CoGBK_Dataflow_V2_Streaming_Java.yml:
##########
@@ -0,0 +1,133 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more

Review Comment:
   Please rename the workflow file to:
   ```
   beam_LoadTests_Java_CoGBK_Dataflow_V2_Streaming_JavaVersions.yml
   ```



##########
.github/workflows/beam_LoadTests_Java_CoGBK_SparkStructuredStreaming_Batch.yml:
##########
@@ -0,0 +1,114 @@
+# 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 CoGBK SparkStructuredStreaming Batch

Review Comment:
   nit: remove whitespace
   ```suggestion
   name: LoadTests Java CoGBK SparkStructuredStreaming Batch
   ```



##########
.github/workflows/beam_LoadTests_Java_CoGBK_Dataflow_V2_Streaming_Java.yml:
##########
@@ -0,0 +1,133 @@
+# 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 CoGBK Dataflow V2 Streaming Java

Review Comment:
   ```suggestion
   name: LoadTests Java CoGBK Dataflow V2 Streaming JavaVersions
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to