2021-01-15 05:42:41 +00:00
|
|
|
{ lib, stdenv, fetchzip, makeWrapper, jre, pythonPackages, coreutils, hadoop
|
2017-03-26 17:17:17 +01:00
|
|
|
, RSupport? true, R
|
2014-12-04 16:27:01 +00:00
|
|
|
}:
|
|
|
|
|
2021-01-15 05:42:41 +00:00
|
|
|
with lib;
|
2014-02-20 11:54:04 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-02-06 20:18:15 +00:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
pname = "spark";
|
2019-10-02 21:55:30 +01:00
|
|
|
version = "2.4.4";
|
2014-02-20 11:54:04 +00:00
|
|
|
|
2015-12-26 17:29:08 +00:00
|
|
|
src = fetchzip {
|
2019-08-13 22:52:01 +01:00
|
|
|
url = "mirror://apache/spark/${pname}-${version}/${pname}-${version}-bin-without-hadoop.tgz";
|
2020-08-15 15:49:40 +01:00
|
|
|
sha256 = "1a9w5k0207fysgpxx6db3a00fs5hdc2ncx99x4ccy2s0v5ndc66g";
|
2014-02-20 11:54:04 +00:00
|
|
|
};
|
|
|
|
|
2021-02-07 09:17:39 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
buildInputs = [ jre pythonPackages.python pythonPackages.numpy ]
|
2020-08-15 15:49:40 +01:00
|
|
|
++ optional RSupport R;
|
2014-02-20 11:54:04 +00:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
untarDir = "${pname}-${version}-bin-without-hadoop";
|
2014-02-20 11:54:04 +00:00
|
|
|
installPhase = ''
|
2015-12-26 17:30:28 +00:00
|
|
|
mkdir -p $out/{lib/${untarDir}/conf,bin,/share/java}
|
2014-12-04 16:27:01 +00:00
|
|
|
mv * $out/lib/${untarDir}
|
|
|
|
|
2015-12-26 17:29:49 +00:00
|
|
|
sed -e 's/INFO, console/WARN, console/' < \
|
|
|
|
$out/lib/${untarDir}/conf/log4j.properties.template > \
|
|
|
|
$out/lib/${untarDir}/conf/log4j.properties
|
|
|
|
|
2014-12-04 16:27:01 +00:00
|
|
|
cat > $out/lib/${untarDir}/conf/spark-env.sh <<- EOF
|
|
|
|
export JAVA_HOME="${jre}"
|
|
|
|
export SPARK_HOME="$out/lib/${untarDir}"
|
2017-10-18 15:05:07 +01:00
|
|
|
export SPARK_DIST_CLASSPATH=$(${hadoop}/bin/hadoop classpath)
|
2014-12-04 16:27:01 +00:00
|
|
|
export PYSPARK_PYTHON="${pythonPackages.python}/bin/${pythonPackages.python.executable}"
|
|
|
|
export PYTHONPATH="\$PYTHONPATH:$PYTHONPATH"
|
2017-03-26 17:17:17 +01:00
|
|
|
${optionalString RSupport
|
|
|
|
''export SPARKR_R_SHELL="${R}/bin/R"
|
|
|
|
export PATH=$PATH:"${R}/bin/R"''}
|
2014-02-20 11:54:04 +00:00
|
|
|
EOF
|
|
|
|
|
2014-12-04 16:27:01 +00:00
|
|
|
for n in $(find $out/lib/${untarDir}/bin -type f ! -name "*.*"); do
|
|
|
|
makeWrapper "$n" "$out/bin/$(basename $n)"
|
2018-03-21 00:57:58 +00:00
|
|
|
substituteInPlace "$n" --replace dirname ${coreutils.out}/bin/dirname
|
2014-02-20 11:54:04 +00:00
|
|
|
done
|
2015-12-26 17:30:28 +00:00
|
|
|
ln -s $out/lib/${untarDir}/lib/spark-assembly-*.jar $out/share/java
|
2014-02-20 11:54:04 +00:00
|
|
|
'';
|
|
|
|
|
2014-03-02 11:51:22 +00:00
|
|
|
meta = {
|
2017-03-26 17:17:17 +01:00
|
|
|
description = "Apache Spark is a fast and general engine for large-scale data processing";
|
2014-04-29 16:34:28 +01:00
|
|
|
homepage = "http://spark.apache.org";
|
2021-01-15 05:42:41 +00:00
|
|
|
license = lib.licenses.asl20;
|
|
|
|
platforms = lib.platforms.all;
|
2017-10-18 15:05:07 +01:00
|
|
|
maintainers = with maintainers; [ thoughtpolice offline kamilchm ];
|
2020-04-01 02:11:51 +01:00
|
|
|
repositories.git = "git://git.apache.org/spark.git";
|
2014-02-20 11:54:04 +00:00
|
|
|
};
|
|
|
|
}
|