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 2018/01/31 06:25:44 UTC

hbase git commit: HBASE-19901 HBASE-19901 Up yetus proclimit on nightlies

Repository: hbase
Updated Branches:
  refs/heads/master f7faad047 -> 2e6bc1244


HBASE-19901 HBASE-19901 Up yetus proclimit on nightlies


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/2e6bc124
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/2e6bc124
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/2e6bc124

Branch: refs/heads/master
Commit: 2e6bc12441f50a4de9ee87e96132cb067556a528
Parents: f7faad0
Author: Michael Stack <st...@apache.org>
Authored: Tue Jan 30 21:50:35 2018 -0800
Committer: Michael Stack <st...@apache.org>
Committed: Tue Jan 30 22:25:24 2018 -0800

----------------------------------------------------------------------
 dev-support/hbase-personality.sh   | 5 +++++
 dev-support/hbase_nightly_yetus.sh | 1 +
 2 files changed, 6 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/2e6bc124/dev-support/hbase-personality.sh
----------------------------------------------------------------------
diff --git a/dev-support/hbase-personality.sh b/dev-support/hbase-personality.sh
index e24930d..80d2586 100755
--- a/dev-support/hbase-personality.sh
+++ b/dev-support/hbase-personality.sh
@@ -64,6 +64,11 @@ function personality_globals
 
   # Override the maven options
   MAVEN_OPTS="${MAVEN_OPTS:-"-Xmx3100M"}"
+
+  # Yetus 0.7.0 enforces limits.
+  # Default proclimit is 1000. Up it.
+  # We seem to use close to 3k.
+  PROCLIMIT=5000
 }
 
 ## @description  Parse extra arguments required by personalities, if any.

http://git-wip-us.apache.org/repos/asf/hbase/blob/2e6bc124/dev-support/hbase_nightly_yetus.sh
----------------------------------------------------------------------
diff --git a/dev-support/hbase_nightly_yetus.sh b/dev-support/hbase_nightly_yetus.sh
index 4e67354..3e6fc7c 100755
--- a/dev-support/hbase_nightly_yetus.sh
+++ b/dev-support/hbase_nightly_yetus.sh
@@ -67,6 +67,7 @@ YETUS_ARGS=("--whitespace-tabs-ignore-list=${WHITESPACE_IGNORE_LIST}" "${YETUS_A
 YETUS_ARGS=("--sentinel" "${YETUS_ARGS[@]}")
 YETUS_ARGS=("--branch=${BRANCH_NAME}" "${YETUS_ARGS[@]}")
 YETUS_ARGS=("--tests-filter=${TESTS_FILTER}" "${YETUS_ARGS[@]}")
+YETUS_ARGS=("--proclimit=${PROCLIMIT}" "${YETUS_ARGS[@]}")
 
 # Currently, flaky list is calculated only for master branch.
 UNDERSCORED_BRANCH_NAME=$(echo ${BRANCH_NAME} | tr '.-' '_')