This is an automated email from the ASF dual-hosted git repository.

holden pushed a commit to branch branch-2.4
in repository https://gitbox.apache.org/repos/asf/spark.git


The following commit(s) were added to refs/heads/branch-2.4 by this push:
     new 8307f1a  [SPARK-26095][BUILD] Disable parallelization in 
make-distibution.sh.
8307f1a is described below

commit 8307f1aa6c421669367f60b1bc9a9d497fb74d6f
Author: Marcelo Vanzin <van...@cloudera.com>
AuthorDate: Fri Nov 16 15:57:38 2018 -0800

    [SPARK-26095][BUILD] Disable parallelization in make-distibution.sh.
    
    It makes the build slower, but at least it doesn't hang. Seems that
    maven-shade-plugin has some issue with parallelization.
    
    Closes #23061 from vanzin/SPARK-26095.
    
    Authored-by: Marcelo Vanzin <van...@cloudera.com>
    Signed-off-by: Marcelo Vanzin <van...@cloudera.com>
    (cherry picked from commit d2792046a1b10a07b65fc30be573983f1237e450)
    Signed-off-by: Holden Karau <hka...@apple.com>
---
 dev/make-distribution.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev/make-distribution.sh b/dev/make-distribution.sh
index 78b85bd..2b02c24 100755
--- a/dev/make-distribution.sh
+++ b/dev/make-distribution.sh
@@ -166,7 +166,7 @@ export MAVEN_OPTS="${MAVEN_OPTS:--Xmx2g 
-XX:ReservedCodeCacheSize=1g}"
 # Store the command as an array because $MVN variable might have spaces in it.
 # Normal quoting tricks don't work.
 # See: http://mywiki.wooledge.org/BashFAQ/050
-BUILD_COMMAND=("$MVN" -T 1C clean package -DskipTests $@)
+BUILD_COMMAND=("$MVN" clean package -DskipTests $@)
 
 # Actually build the jar
 echo -e "\nBuilding with..."


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to