Github user prabhjyotsingh commented on the pull request: https://github.com/apache/incubator-zeppelin/pull/710#issuecomment-183186549 I have a hack, what if instead of `wget -q http://mirror.tcpdiag.net/apache/spark/spark-1.6.0/spark-1.6.0-bin-hadoop2.3.tgz` we use wget -q -r -np -N http://mirror.tcpdiag.net/apache/spark/spark-1.6.0/spark-1.6.0-bin-hadoop2.3.tgz & wget -q -r -np -N http://mirror.tcpdiag.net/apache/spark/spark-1.6.0/spark-1.6.0-bin-hadoop2.3.tgz & wget -q -r -np -N http://mirror.tcpdiag.net/apache/spark/spark-1.6.0/spark-1.6.0-bin-hadoop2.3.tgz & wget -q -r -np -N http://mirror.tcpdiag.net/apache/spark/spark-1.6.0/spark-1.6.0-bin-hadoop2.3.tgz & wget -q -r -np -N http://mirror.tcpdiag.net/apache/spark/spark-1.6.0/spark-1.6.0-bin-hadoop2.3.tgz Which will make wget download using 5 simultaneous connections, which may result in downloading it quicker. or THREADS=5 WGETFLAGS=â-r -np -Nâ URL="http://mirror.tcpdiag.net/apache/spark/spark-1.6.0/spark-1.6.0-bin-hadoop2.3.tgz" for i in `seq 1 $((THREADS-1))` do Command=â$Commandââwget $WGETFLAGS $URLââ & â done Command=â$Commandââwget $WGETFLAGS $URLâ eval $Command References: http://blog.netflowdevelopments.com/2011/01/24/multi-threaded-downloading-with-wget/
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---