[
https://issues.apache.org/jira/browse/BEAM-11415?focusedWorklogId=522067&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-522067
]
ASF GitHub Bot logged work on BEAM-11415:
-----------------------------------------
Author: ASF GitHub Bot
Created on: 09/Dec/20 06:08
Start Date: 09/Dec/20 06:08
Worklog Time Spent: 10m
Work Description: lostluck commented on a change in pull request #13503:
URL: https://github.com/apache/beam/pull/13503#discussion_r539030427
##########
File path: sdks/go/test/build.gradle
##########
@@ -50,6 +50,25 @@ golang {
}
}
+// A temporary build rule using the newer, under-construction ValidatesRunner
+// framework rather than the existing one in the integration directory.
+// TODO(BEAM-11415): Merge this into existing ValidatesRunner gradle rules.
+task flinkNewValidatesRunner {
Review comment:
For now, could we use flinkXlangValidatesRunner which at least covers
what is in particularly new coverage about this set up. This comment driven by
seeing too many vestigial "new" implementations that don't get fully migrated.
Tangent, it's generally preferable to rename older implementations to "old"
than new ones to "new" when possible.
Feel free to disregard if you've already gotten far enough in the
consolidation in later commits.
##########
File path: sdks/go/test/run_validatesrunner_tests.sh
##########
@@ -0,0 +1,174 @@
+#!/bin/bash
+#
+# 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.
+
+# This script executes ValidatesRunner tests including launching any additional
+# services needed, such as job services or expansion services. The following
+# runners are supported, and selected via a flag:
+#
+# --runner {portable|direct|flink} (default: portable)
+# Select which runner to execute tests on. This flag also determines which
+# services to start up and which tests may be skipped.
+# direct - Go SDK Direct Runner
+# portable - (default) Python Portable Runner (aka. Reference Runner or
FnAPI Runner)
+# flink - Java Flink Runner (local mode)
+# spark - Java Spark Runner (local mode)
+#
+# --flink_job_server_jar -> Filepath to jar, used if runner is Flink.
+# --spark_job_server_jar -> Filepath to jar, used if runner is Spark.
+# --endpoint -> Replaces jar filepath with existing job server endpoint.
+#
+# --expansion_service_jar -> Filepath to jar for expansion service.
+# --expansion_addr -> Replaces jar filepath with existing expansion service
endpoint.
+#
+# Execute from the root of the repository. This script requires that necessary
+# services can be built from the repository.
+
+set -e
+set -v
+
+RUNNER=portable
+
+exit_background_processes () {
+ if [[ -n "$JOBSERVER_PID" ]]; then
+ kill -s SIGKILL $JOBSERVER_PID
+ fi
+ if [[ -n "$EXPANSION_PID" ]]; then
+ kill -s SIGKILL $EXPANSION_PID
+ fi
+}
+trap exit_background_processes SIGINT SIGTERM EXIT
+
+while [[ $# -gt 0 ]]
+do
+key="$1"
+case $key in
+ --runner)
+ RUNNER="$2"
+ shift # past argument
+ shift # past value
+ ;;
+ --flink_job_server_jar)
+ FLINK_JOB_SERVER_JAR="$2"
+ shift # past argument
+ shift # past value
+ ;;
+ --spark_job_server_jar)
+ SPARK_JOB_SERVER_JAR="$2"
+ shift # past argument
+ shift # past value
+ ;;
+ --endpoint)
+ ENDPOINT="$2"
+ shift # past argument
+ shift # past value
+ ;;
+ --expansion_service_jar)
+ EXPANSION_SERVICE_JAR="$2"
+ shift # past argument
+ shift # past value
+ ;;
+ --expansion_addr)
+ EXPANSION_ADDR="$2"
+ shift # past argument
+ shift # past value
+ ;;
+ *) # unknown option
+ echo "Unknown option: $1"
+ exit 1
+ ;;
+esac
+done
+
+# Go to the root of the repository
+cd $(git rev-parse --show-toplevel)
+
+# Verify in the root of the repository
+test -d sdks/go/test
+
+# Set up environment based on runner.
+ARGS=--runner=$RUNNER
+if [[ "$RUNNER" == "flink" || "$RUNNER" == "spark" || "$RUNNER" == "portable"
]]; then
+ if [[ -z "$ENDPOINT" ]]; then
+ # Hacky python script to find a free port. Note there is a small chance
the chosen port could
+ # get taken before being claimed by the job server.
+ SOCKET_SCRIPT="
+import socket
+s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
+s.bind(('localhost', 0))
+print(s.getsockname()[1])
+s.close()
+ "
+ JOB_PORT=$(python -c "$SOCKET_SCRIPT")
+ ENDPOINT="localhost:$JOB_PORT"
+ echo "No endpoint specified; starting a new $RUNNER job server on
$ENDPOINT"
+ if [[ "$RUNNER" == "flink" ]]; then
+ java \
+ -jar $FLINK_JOB_SERVER_JAR \
+ --flink-master [local] \
+ --job-port $JOB_PORT \
+ --expansion-port 0 \
+ --artifact-port 0 &
+ elif [[ "$RUNNER" == "spark" ]]; then
+ java \
+ -jar $SPARK_JOB_SERVER_JAR \
+ --spark-master-url local \
+ --job-port $JOB_PORT \
+ --expansion-port 0 \
+ --artifact-port 0 &
+ elif [[ "$RUNNER" == "portable" ]]; then
+ python \
+ -m apache_beam.runners.portability.local_job_service_main \
+ --port $JOB_PORT &
+ else
+ echo "Unknown runner: $RUNNER"
+ exit 1;
+ fi
+ JOBSERVER_PID=$!
+ fi
+
+ if [[ -z "$EXPANSION_ADDR" ]]; then
+ SOCKET_SCRIPT="
+import socket
+s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
+s.bind(('localhost', 0))
+print(s.getsockname()[1])
+s.close()
+ "
Review comment:
Deduplicate w/the socket script higher up please.
----------------------------------------------------------------
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: 522067)
Time Spent: 50m (was: 40m)
> Create ValidatesRunner test framework for the Go SDK.
> -----------------------------------------------------
>
> Key: BEAM-11415
> URL: https://issues.apache.org/jira/browse/BEAM-11415
> Project: Beam
> Issue Type: Test
> Components: sdk-go
> Reporter: Daniel Oliveira
> Assignee: Daniel Oliveira
> Priority: P2
> Time Spent: 50m
> Remaining Estimate: 0h
>
> I've actually already started working on this and it's ending up being more
> like an expansion on the existing integration test system.
> Current main improvements this will add:
> * The new approach is based on the go testing framework, meaning tests do not
> need to be manually registered with a driver. This is bug for usability and
> scalability as more tests will need to be added.
> * Will allow tests to be run with the "go test ..." command, assuming
> necessary services are running.
--
This message was sent by Atlassian Jira
(v8.3.4#803005)