1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
#!/usr/bin/env 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.
# exit on any error
set -eu
if [ "$#" -lt 2 ]; then
echo "Usage: $0 <spark_version> <spark_dir>"
exit 1
fi
# Spark branch to checkout
spark_version=${1}
spark_dir=${2}
# Use old behavior that always dropped timezones.
export PYARROW_IGNORE_TIMEZONE=1
if [ "${spark_version:1:2}" == "2." ]; then
# https://github.com/apache/spark/blob/master/docs/sql-pyspark-pandas-with-arrow.md#compatibility-setting-for-pyarrow--0150-and-spark-23x-24x
export ARROW_PRE_0_15_IPC_FORMAT=1
fi
export MAVEN_OPTS="-Xss256m -Xmx2g -XX:ReservedCodeCacheSize=1g -Dorg.slf4j.simpleLogger.defaultLogLevel=warn"
export MAVEN_OPTS="${MAVEN_OPTS} -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn"
pushd "${spark_dir}"
echo "Building Spark ${spark_version}"
# Build Spark only
build/mvn -B -DskipTests package
# Run pyarrow related Python tests only
# "pyspark.sql.tests.arrow.test_arrow_grouped_map" and
# "pyspark.sql.tests.arrow.test_arrow_cogrouped_map" currently fail.
# See: https://github.com/apache/arrow/issues/44986
spark_python_tests=(
"pyspark.sql.tests.arrow.test_arrow"
"pyspark.sql.tests.arrow.test_arrow_map"
"pyspark.sql.tests.arrow.test_arrow_python_udf")
case "${spark_version}" in
v1.*|v2.*|v3.0.*|v3.1.*|v3.2.*|v3.3.*)
old_test_modules=true
;;
*)
old_test_modules=false
;;
esac
if [ "${old_test_modules}" == "true" ]; then
spark_python_tests+=(
"pyspark.sql.tests.test_pandas_grouped_map"
"pyspark.sql.tests.test_pandas_map"
"pyspark.sql.tests.test_pandas_cogrouped_map"
"pyspark.sql.tests.test_pandas_udf"
"pyspark.sql.tests.test_pandas_udf_scalar"
"pyspark.sql.tests.test_pandas_udf_grouped_agg"
"pyspark.sql.tests.test_pandas_udf_window")
else
spark_python_tests+=(
"pyspark.sql.tests.pandas.test_pandas_grouped_map"
"pyspark.sql.tests.pandas.test_pandas_map"
"pyspark.sql.tests.pandas.test_pandas_cogrouped_map"
"pyspark.sql.tests.pandas.test_pandas_udf"
"pyspark.sql.tests.pandas.test_pandas_udf_scalar"
"pyspark.sql.tests.pandas.test_pandas_udf_grouped_agg"
"pyspark.sql.tests.pandas.test_pandas_udf_window")
fi
(echo "Testing PySpark:"; IFS=$'\n'; echo "${spark_python_tests[*]}")
python/run-tests --testnames "$(IFS=,; echo "${spark_python_tests[*]}")" --python-executables python
popd
|