Skip to content

PostCommit Java Nexmark Dataflow V2 Java #8

PostCommit Java Nexmark Dataflow V2 Java

PostCommit Java Nexmark Dataflow V2 Java #8

# 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: PostCommit Java Nexmark Dataflow V2 Java
on:
issue_comment:
types: [created]
schedule:
- cron: '0 */6 * * *'
workflow_dispatch:
# This allows a subsequently queued workflow run to interrupt previous runs
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.issue.number || github.event.pull_request.head.label || github.sha || github.head_ref || github.ref }}-${{ github.event.schedule || github.event.comment.id || github.event.sender.login}}'
cancel-in-progress: true
#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: write
checks: write
contents: read
deployments: read
id-token: none
issues: write
discussions: read
packages: read
pages: read
repository-projects: read
security-events: read
statuses: read
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 }}
GRADLE_COMMAND_ARGUMENTS: |
-Pnexmark.args=--manageResources=false
--monitorJobs=true
--bigQueryTable=nexmark
--bigQueryDataset=nexmark
--project=apache-beam-testing
--resourceNameMode=QUERY_RUNNER_AND_MODE
--exportSummaryToBigQuery=false
--tempLocation=gs://temp-storage-for-perf-tests/nexmark
--influxDatabase=beam_test_metrics
--influxHost=http://10.128.0.96:8086
--baseInfluxMeasurement=nexmark
--exportSummaryToInfluxDB=true
--influxRetentionPolicy=forever
--region=us-central1
--suite=STRESS
--numWorkers=4
--maxNumWorkers=4
--autoscalingAlgorithm=NONE
--nexmarkParallel=16
--enforceEncodability=true
--enforceImmutability=true
--runner=DataflowRunner
jobs:
beam_PostCommit_Java_Nexmark_Dataflow_V2_Java:
name: ${{matrix.job_name}} (${{matrix.job_phrase_1}} ${{matrix.java_version}} ${{matrix.job_phrase_2}})
runs-on: [self-hosted, ubuntu-20.04, main]
timeout-minutes: 240
strategy:
fail-fast: false
matrix:
job_name: [beam_PostCommit_Java_Nexmark_Dataflow_V2_Java]
job_phrase_1: [Run Dataflow Runner V2 Java]
job_phrase_2: [Nexmark Tests]
streaming: [false, true]
java_version: ['11','17']
if: |
github.event_name == 'workflow_dispatch' ||
github.event_name == 'schedule' ||
(contains(github.event.comment.body, 'Run Dataflow Runner V2 Java') &&
contains(github.event.comment.body, 'Nexmark Tests'))
steps:
- uses: actions/checkout@v4
- 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/setup-java@v3.8.0
with:
distribution: 'temurin'
java-version: ${{ matrix.java_version }}
- name: run PostCommit Java ${{matrix.java_version}} Nexmark Dataflow V2 (streaming = ${{ matrix.streaming }}) script
uses: ./.github/actions/gradle-command-self-hosted-action
with:
gradle-command: :sdks:java:testing:nexmark:run
arguments: |
-PcompileAndRunTestsWithJava${{ matrix.java_version }} \
-Pjava${{ matrix.java_version }}Home=$JAVA_HOME_${{ matrix.java_version }}_X64 \
-Pnexmark.runner.version=V2 \
-Pnexmark.runner=:runners:google-cloud-dataflow-java \
'${{ env.GRADLE_COMMAND_ARGUMENTS }}--influxTags={"runnerVersion":"V2","javaVersion":"${{matrix.java_version}}"}--streaming=${{ matrix.streaming }}'