Skip to content

Commit 876a5bf

Browse files
committed
Update make distribution to use Tachyon 0.8.0.
1 parent 890d48c commit 876a5bf

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

make-distribution.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ SPARK_HOME="$(cd "`dirname "$0"`"; pwd)"
3333
DISTDIR="$SPARK_HOME/dist"
3434

3535
SPARK_TACHYON=false
36-
TACHYON_VERSION="0.7.1"
36+
TACHYON_VERSION="0.8.0"
3737
TACHYON_TGZ="tachyon-${TACHYON_VERSION}-bin.tar.gz"
38-
TACHYON_URL="https://github.com/amplab/tachyon/releases/download/v${TACHYON_VERSION}/${TACHYON_TGZ}"
38+
TACHYON_URL="http://tachyon-project.org/downloads/files/${TACHYON_VERSION}/${TACHYON_TGZ}"
3939

4040
MAKE_TGZ=false
4141
NAME=none
@@ -240,10 +240,10 @@ if [ "$SPARK_TACHYON" == "true" ]; then
240240
fi
241241

242242
tar xzf "${TACHYON_TGZ}"
243-
cp "tachyon-${TACHYON_VERSION}/core/target/tachyon-${TACHYON_VERSION}-jar-with-dependencies.jar" "$DISTDIR/lib"
243+
cp "tachyon-${TACHYON_VERSION}/assembly/target/tachyon-assemblies-${TACHYON_VERSION}-jar-with-dependencies.jar" "$DISTDIR/lib"
244244
mkdir -p "$DISTDIR/tachyon/src/main/java/tachyon/web"
245245
cp -r "tachyon-${TACHYON_VERSION}"/{bin,conf,libexec} "$DISTDIR/tachyon"
246-
cp -r "tachyon-${TACHYON_VERSION}"/core/src/main/java/tachyon/web "$DISTDIR/tachyon/src/main/java/tachyon/web"
246+
cp -r "tachyon-${TACHYON_VERSION}"/servers/src/main/java/tachyon/web/ "$DISTDIR/tachyon/src/main/java/tachyon/web"
247247

248248
if [[ `uname -a` == Darwin* ]]; then
249249
# need to run sed differently on osx

0 commit comments

Comments
 (0)