You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@beam.apache.org by GitBox <gi...@apache.org> on 2021/06/18 20:55:46 UTC

[GitHub] [beam] tysonjh commented on a change in pull request #15012: [BEAM-12068] Run Dataflow V2 performance benchmarks on Java 11

tysonjh commented on a change in pull request #15012:
URL: https://github.com/apache/beam/pull/15012#discussion_r653933151



##########
File path: .test-infra/jenkins/job_LoadTests_CoGBK_Dataflow_V2_Java11.groovy
##########
@@ -0,0 +1,260 @@
+/*
+ * 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.
+ */
+
+import CommonJobProperties as commonJobProperties
+import CommonTestProperties
+import LoadTestsBuilder as loadTestsBuilder
+import PhraseTriggeringPostCommitBuilder
+import CronJobBuilder
+import InfluxDBCredentialsHelper
+
+def loadTestConfigurations = { mode, isStreaming, datasetName ->
+  [
+    [
+      title          : 'Load test: CoGBK 2GB 100  byte records - single key',
+      test           : 'org.apache.beam.sdk.loadtests.CoGroupByKeyLoadTest',
+      runner         : CommonTestProperties.Runner.DATAFLOW,
+      pipelineOptions: [
+        project               : 'apache-beam-testing',
+        region                : 'us-central1',
+        appName               : "load_tests_Java11_Dataflow_V2_${mode}_CoGBK_1",
+        tempLocation          : 'gs://temp-storage-for-perf-tests/loadtests',
+        publishToBigQuery     : true,
+        bigQueryDataset       : datasetName,
+        bigQueryTable         : "java11_dataflow_v2_${mode}_CoGBK_1",
+        influxMeasurement     : "java_${mode}_cogbk_1",
+        influxTags            : """
+                                  {
+                                    "runnerVersion": "v2",
+                                    "jdk": "java11"
+                                  }
+                                """.trim().replaceAll("\\s", ""),
+        publishToInfluxDB     : true,
+        sourceOptions         : """
+          {
+            "numRecords": 20000000,
+            "keySizeBytes": 10,
+            "valueSizeBytes": 90,
+            "numHotKeys": 1
+          }
+        """.trim().replaceAll("\\s", ""),
+        coSourceOptions       : """
+              {
+                "numRecords": 2000000,
+                "keySizeBytes": 10,
+                "valueSizeBytes": 90,
+                "numHotKeys": 1000
+              }
+            """.trim().replaceAll("\\s", ""),
+        iterations            : 1,
+        numWorkers            : 5,
+        autoscalingAlgorithm  : "NONE",
+        streaming             : isStreaming
+      ]
+    ],
+    [
+      title          : 'Load test: CoGBK 2GB 100 byte records - multiple keys',
+      test           : 'org.apache.beam.sdk.loadtests.CoGroupByKeyLoadTest',
+      runner         : CommonTestProperties.Runner.DATAFLOW,
+      pipelineOptions: [
+        project               : 'apache-beam-testing',
+        region                : 'us-central1',
+        appName               : "load_tests_Java11_Dataflow_V2_${mode}_CoGBK_2",
+        tempLocation          : 'gs://temp-storage-for-perf-tests/loadtests',
+        publishToBigQuery     : true,
+        bigQueryDataset       : datasetName,
+        bigQueryTable         : "java11_dataflow_v2_${mode}_CoGBK_2",
+        influxMeasurement     : "java_${mode}_cogbk_2",
+        influxTags            : """
+                                  {
+                                    "runnerVersion": "v2",
+                                    "jdk": "java11"
+                                  }
+                                """.trim().replaceAll("\\s", ""),
+        publishToInfluxDB     : true,
+        sourceOptions         : """
+                  {
+                    "numRecords": 20000000,
+                    "keySizeBytes": 10,
+                    "valueSizeBytes": 90,
+                    "numHotKeys": 5
+                  }
+                """.trim().replaceAll("\\s", ""),
+        coSourceOptions       : """
+                          {
+                            "numRecords": 2000000,
+                            "keySizeBytes": 10,
+                            "valueSizeBytes": 90,
+                            "numHotKeys": 1000
+                          }
+                        """.trim().replaceAll("\\s", ""),
+        iterations            : 1,
+        numWorkers            : 5,
+        autoscalingAlgorithm  : "NONE",
+        streaming             : isStreaming
+      ]
+    ],
+    [
+
+      title          : 'Load test: CoGBK 2GB reiteration 10kB value',
+      test           : 'org.apache.beam.sdk.loadtests.CoGroupByKeyLoadTest',
+      runner         : CommonTestProperties.Runner.DATAFLOW,
+      pipelineOptions: [
+        project               : 'apache-beam-testing',
+        region                : 'us-central1',
+        appName               : "load_tests_Java11_Dataflow_V2_${mode}_CoGBK_3",
+        tempLocation          : 'gs://temp-storage-for-perf-tests/loadtests',
+        publishToBigQuery     : true,
+        bigQueryDataset       : datasetName,
+        bigQueryTable         : "java11_dataflow_v2_${mode}_CoGBK_3",
+        influxMeasurement     : "java_${mode}_cogbk_3",
+        influxTags            : """
+                                  {
+                                    "runnerVersion": "v2",
+                                    "jdk": "java11"
+                                  }
+                                """.trim().replaceAll("\\s", ""),
+        publishToInfluxDB     : true,
+        sourceOptions         : """
+                              {
+                                "numRecords": 2000000,
+                                "keySizeBytes": 10,
+                                "valueSizeBytes": 90,
+                                "numHotKeys": 200000
+                              }
+                            """.trim().replaceAll("\\s", ""),
+        coSourceOptions       : """
+                              {
+                                "numRecords": 2000000,
+                                "keySizeBytes": 10,
+                                "valueSizeBytes": 90,
+                                "numHotKeys": 1000
+                              }
+                            """.trim().replaceAll("\\s", ""),
+        iterations            : 4,
+        numWorkers            : 5,
+        autoscalingAlgorithm  : "NONE",
+        streaming             : isStreaming
+      ]
+
+    ],
+    [
+      title          : 'Load test: CoGBK 2GB reiteration 2MB value',
+      test           : 'org.apache.beam.sdk.loadtests.CoGroupByKeyLoadTest',
+      runner         : CommonTestProperties.Runner.DATAFLOW,
+      pipelineOptions: [
+        project               : 'apache-beam-testing',
+        region                : 'us-central1',
+        appName               : "load_tests_Java11_Dataflow_V2_${mode}_CoGBK_4",
+        tempLocation          : 'gs://temp-storage-for-perf-tests/loadtests',
+        publishToBigQuery     : true,
+        bigQueryDataset       : datasetName,
+        bigQueryTable         : "java11_dataflow_v2_${mode}_CoGBK_4",
+        influxMeasurement     : "java_${mode}_cogbk_4",
+        influxTags            : """
+                                  {
+                                    "runnerVersion": "v2",
+                                    "jdk": "java11"
+                                  }
+                                """.trim().replaceAll("\\s", ""),
+        publishToInfluxDB     : true,
+        sourceOptions         : """
+                              {
+                                "numRecords": 2000000,
+                                "keySizeBytes": 10,
+                                "valueSizeBytes": 90,
+                                "numHotKeys": 1000
+                              }
+                            """.trim().replaceAll("\\s", ""),
+        coSourceOptions       : """
+                              {
+                                "numRecords": 2000000,
+                                "keySizeBytes": 10,
+                                "valueSizeBytes": 90,
+                                "numHotKeys": 1000
+                              }
+                            """.trim().replaceAll("\\s", ""),
+        iterations            : 4,
+        numWorkers            : 5,
+        autoscalingAlgorithm  : "NONE",
+        streaming             : isStreaming
+      ]
+    ]
+  ].each { test -> test.pipelineOptions.putAll(additionalPipelineArgs) }
+}
+
+def final JOB_SPECIFIC_SWITCHES = [
+  '-Prunner.version="V2"',
+  '-PcompileAndRunTestsWithJava11',

Review comment:
       Yes, Gradle consumes it. There are a few different places that use it, one is for picking the proper SDK container image, another is for actually compiling the code.
   
   e.g. https://github.com/apache/beam/blob/9418994e11dbede889b508c91261ec2092f2d8a7/runners/google-cloud-dataflow-java/build.gradle#L257




-- 
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org