Skip to content

Commit

Permalink
Merge pull request #5 from danielli90/branch-1.6
Browse files Browse the repository at this point in the history
Branch 1.6
  • Loading branch information
danielli90 committed Mar 17, 2016
2 parents e52fa84 + 55d76d0 commit 95f34f1
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 184 deletions.
4 changes: 2 additions & 2 deletions examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,11 @@
<artifactId>spark-streaming-flume_${scala.binary.version}</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<!--<dependency>
<groupId>org.apache.spark</groupId>
<artifactId>spark-streaming-mqtt_${scala.binary.version}</artifactId>
<version>${project.version}</version>
</dependency>
</dependency>-->
<dependency>
<groupId>org.apache.spark</groupId>
<artifactId>spark-streaming-zeromq_${scala.binary.version}</artifactId>
Expand Down
59 changes: 0 additions & 59 deletions examples/src/main/python/streaming/mqtt_wordcount.py

This file was deleted.

This file was deleted.

10 changes: 6 additions & 4 deletions make-distribution.sh
Original file line number Diff line number Diff line change
Expand Up @@ -173,25 +173,27 @@ BUILD_COMMAND=("$MVN" clean package -DskipTests $@)
echo -e "\nBuilding with..."
echo -e "\$ ${BUILD_COMMAND[@]}\n"

#"${BUILD_COMMAND[@]}"
# "${BUILD_COMMAND[@]}"
"${BUILD_COMMAND[@]}" &> "$HOME/sparkbuild.log" &

# echo "BUILD SUCCEEDED!!!"

build_pid=$!
COUNTER=0
while ps | grep " $build_pid "
do
let COUNTER=COUNTER+1
let COUNTER=COUNTER+1
echo "$(date), counter:$COUNTER - $build_pid is still in the ps output. Must still be running."
sleep 1m
done

echo Oh, it looks like the build process is done.
echo tail -100 "$HOME/sparkbuild.log"
tail -100 "$HOME/sparkbuild.log"
wait $build_pid
build_status=$?
echo The exit status of the build process was $build_status

tail -100 "$HOME/sparkbuild.log"

# Make directories
rm -rf "$DISTDIR"
mkdir -p "$DISTDIR/lib"
Expand Down

0 comments on commit 95f34f1

Please sign in to comment.