我正在尝试在我的本地计算机上安装Spark。我一直关注this指南。我已经安装了JDK-7
(也有JDK-8
)和Scala 2.11.7
。当我尝试使用sbt
构建Spark 1.4.1
时出现问题。我得到以下异常。
NOTE: The sbt/sbt script has been relocated to build/sbt.
Please update references to point to the new location.
Invoking 'build/sbt assembly' now ...
Attempting to fetch sbt
Launching sbt from build/sbt-launch-0.13.7.jar
Error: Invalid or corrupt jarfile build/sbt-launch-0.13.7.jar
我已经搜索了这个问题的解决方案。我找到了一个很好的指南https://stackoverflow.com/a/31597283/2771315,它使用了预建版本。除了使用预建版本之外,是否可以使用Spark
安装sbt
?此外,是否有理由发生Invalid or corrupt jarfile
错误?
答案 0 :(得分:18)
我遇到了同样的问题。我现在修好了。
这可能是因为sbt-launch-0.13.7.jar下载失败,虽然你可以看到该文件存在,但它不是正确的文件。该文件大小约1.2MB 。如果小于,你可以进入构建/,使用“vim sbt-launch-0.13.7.jar”或其他工具来打开sbt-launch-0.13.7.jar 文件。 / p>
如果文件的内容如下:
<html>
<head><title>404 Not Found</title></head>
<body bgcolor="white">
<center><h1>404 Not Found</h1></center>
<hr><center>nginx</center>
</body>
</html>
这意味着不会下载sbt-launch-0.13.7.jar。 然后在同一目录中打开 sbt-launch-lib.bash ,检查第41和42行,它会给出两个网址。打开它以检查它们是否运作良好。
如果url1不起作用,请手动下载 sbt-launch.jar (你可以使用url2,它可能有效,或者你可以从sbt官方网站下载),把它放在同一个地方目录,将其重命名为sbt-launch-0.13.7.jar ,然后你就下载相关的评论行(可能在47行和68行之间),避免脚本再次下载。像这样:
acquire_sbt_jar () {
SBT_VERSION=`awk -F "=" '/sbt\.version/ {print $2}' ./project/build.properties`
URL1=http://repo.typesafe.com/typesafe/ivy-releases/org.scala-sbt/sbt-launch/${SBT_VERSION}/sbt-launch.jar
URL2=http://repo.typesafe.com/typesafe/ivy-releases/org.scala-sbt/sbt-launch/${SBT_VERSION}/sbt-launch.jar
JAR=build/sbt-launch-${SBT_VERSION}.jar
sbt_jar=$JAR
# if [[ ! -f "$sbt_jar" ]]; then
# # Download sbt launch jar if it hasn't been downloaded yet
# if [ ! -f "${JAR}" ]; then
# # Download
# printf "Attempting to fetch sbt\n"
# JAR_DL="${JAR}.part"
# if [ $(command -v curl) ]; then
# (curl --silent ${URL1} > "${JAR_DL}" || curl --silent ${URL2} > "${JAR_DL}") && mv "${JAR_DL}" "${JAR}"
# elif [ $(command -v wget) ]; then
# (wget --quiet ${URL1} -O "${JAR_DL}" || wget --quiet ${URL2} -O "${JAR_DL}") && mv "${JAR_DL}" "${JAR}"
# else
# printf "You do not have curl or wget installed, please install sbt manually from http://www.scala-sbt.org/\n"
# exit -1
# fi
# fi
# if [ ! -f "${JAR}" ]; then
# # We failed to download
# printf "Our attempt to download sbt locally to ${JAR} failed. Please install sbt manually from http://www.scala-sbt.org/\n"
# exit -1
# fi
# printf "Launching sbt from ${JAR}\n"
# fi
}
然后使用“build / sbt assembly”再次构建火花。
希望你能成功。
如果我没有明确表达,以下链接可能会有所帮助。
https://www.mail-archive.com/user@spark.apache.org/msg34358.html
Error: Invalid or corrupt jarfile sbt/sbt-launch-0.13.5.jar prabeesh的回答
https://groups.google.com/forum/#!topic/predictionio-user/fllCh8n-0d4
答案 1 :(得分:0)
手动下载sbt-launch.jar文件(你可以使用url2,它可以工作,或者你可以从sbt官方网站下载),把它放在同一目录下,重命名为sbt-launch-0.13.7 .jar,然后运行sbt / sbt汇编命令。