[
https://issues.apache.org/jira/browse/BEAM-11712?focusedWorklogId=581915&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-581915
]
ASF GitHub Bot logged work on BEAM-11712:
-----------------------------------------
Author: ASF GitHub Bot
Created on: 13/Apr/21 17:23
Start Date: 13/Apr/21 17:23
Worklog Time Spent: 10m
Work Description: kennknowles commented on a change in pull request
#14373:
URL: https://github.com/apache/beam/pull/14373#discussion_r612640576
##########
File path: sdks/java/testing/tpcds/build.gradle
##########
@@ -16,38 +16,106 @@
* limitations under the License.
*/
-plugins {
- id 'java'
-}
+plugins { id 'org.apache.beam.module' }
+applyJavaNature(
+ automaticModuleName: 'org.apache.beam.sdk.tpcds',
+ exportJavadoc: false,
+ archivesBaseName: 'beam-sdks-java-tpcds',
+)
-description = "Apache Beam :: SDKs :: Java :: TPC-DS Benchark"
+description = "Apache Beam :: SDKs :: Java :: TPC-DS"
-version '2.24.0-SNAPSHOT'
+// When running via Gradle, this property can be used to pass commandline
arguments
+// to the TPD-DS run
+def tpcdsArgsProperty = "tpcds.args"
-sourceCompatibility = 1.8
+// When running via Gradle, this property sets the runner dependency
+def tpcdsRunnerProperty = "tpcds.runner"
+def tpcdsRunnerDependency = project.findProperty(tpcdsRunnerProperty)
+ ?: ":runners:direct-java"
+def shouldProvideSpark = ":runners:spark:2".equals(tpcdsRunnerDependency)
+def isDataflowRunner =
":runners:google-cloud-dataflow-java".equals(tpcdsRunnerDependency)
+def runnerConfiguration = ":runners:direct-java".equals(tpcdsRunnerDependency)
? "shadow" : null
+
+if (isDataflowRunner) {
Review comment:
It is a standard benchmark suite. Yes, it makes sense to run on
runner_v2 (and any other runner configuration someone is interested in)
--
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:
[email protected]
Issue Time Tracking
-------------------
Worklog Id: (was: 581915)
Time Spent: 2h (was: 1h 50m)
> Run TPC-DS with BeamSQL and Spark runner
> ----------------------------------------
>
> Key: BEAM-11712
> URL: https://issues.apache.org/jira/browse/BEAM-11712
> Project: Beam
> Issue Type: Improvement
> Components: testing-tpcds
> Reporter: Alexey Romanenko
> Assignee: Alexey Romanenko
> Priority: P2
> Fix For: 2.30.0
>
> Time Spent: 2h
> Remaining Estimate: 0h
>
--
This message was sent by Atlassian Jira
(v8.3.4#803005)