You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by st...@apache.org on 2020/02/08 00:01:54 UTC

[hbase] branch branch-2 updated: HBASE-23779 Up the default fork count to make builds complete faster; make count relative to CPU count ADDENDUM: Purge changes made to hbase-personality as they disstabilize jenkins build. All else remains, the changing of forkcount for tests.

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

stack pushed a commit to branch branch-2
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-2 by this push:
     new 4505039  HBASE-23779 Up the default fork count to make builds complete faster; make count relative to CPU count ADDENDUM: Purge changes made to hbase-personality as they disstabilize jenkins build. All else remains, the changing of forkcount for tests.
4505039 is described below

commit 450503989f4de956860ef145e1b21eee61e75e23
Author: stack <st...@apache.org>
AuthorDate: Fri Feb 7 16:00:50 2020 -0800

    HBASE-23779 Up the default fork count to make builds complete faster; make count relative to CPU count
    ADDENDUM: Purge changes made to hbase-personality as they disstabilize
    jenkins build. All else remains, the changing of forkcount for tests.
---
 dev-support/hbase-personality.sh | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/dev-support/hbase-personality.sh b/dev-support/hbase-personality.sh
index 8df6754..cf10915 100755
--- a/dev-support/hbase-personality.sh
+++ b/dev-support/hbase-personality.sh
@@ -81,13 +81,6 @@ function personality_globals
 
   # Override the maven options
   MAVEN_OPTS="${MAVEN_OPTS:-"-Xms4G -Xmx4G"}"
-  # Pass maven a -T argument. Should make it run faster. Pass conservative value.
-  # Default is one thread. 0.5C on an apache box of 24 cores and 2 executors should
-  # make for 6 threads? Lets see. Setting this here for yetus to pick up. See
-  # https://yetus.apache.org/documentation/0.11.1/precommit-advanced/#global-definitions
-  # See below for more on -T:
-  # https://cwiki.apache.org/confluence/display/MAVEN/Parallel+builds+in+Maven+3
-  export MAVEN_ARGS="-T0.5C ${MAVEN_ARGS}"
 
   # Yetus 0.7.0 enforces limits. Default proclimit is 1000.
   # Up it. See HBASE-19902 for how we arrived at this number.