Repository: hbase Updated Branches: refs/heads/branch-1 f35bcd2fe -> a55f2c759
HBASE-19901 Up yetus proclimit on nightlies; ADDENDUM. Matching master and branch-2 Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/a55f2c75 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/a55f2c75 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/a55f2c75 Branch: refs/heads/branch-1 Commit: a55f2c759b43143ceecceedd5b4556ec357aec18 Parents: f35bcd2 Author: Michael Stack <[email protected]> Authored: Fri Feb 2 10:54:40 2018 -0800 Committer: Michael Stack <[email protected]> Committed: Fri Feb 2 11:11:45 2018 -0800 ---------------------------------------------------------------------- dev-support/hbase-personality.sh | 11 +++++++---- dev-support/hbase_nightly_yetus.sh | 4 +++- 2 files changed, 10 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/a55f2c75/dev-support/hbase-personality.sh ---------------------------------------------------------------------- diff --git a/dev-support/hbase-personality.sh b/dev-support/hbase-personality.sh index 899bde5..f902ac1 100755 --- a/dev-support/hbase-personality.sh +++ b/dev-support/hbase-personality.sh @@ -65,10 +65,13 @@ 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 + # Yetus 0.7.0 enforces limits. Default proclimit is 1000. + # Up it. See HBASE-19902 for how we arrived at this number. + PROCLIMIT=10000 + + # Set docker container to run with 20g. Default is 4g in yetus. + # See HBASE-19902 for how we arrived at 20g. + DOCKERMEMLIMIT=20g } ## @description Parse extra arguments required by personalities, if any. http://git-wip-us.apache.org/repos/asf/hbase/blob/a55f2c75/dev-support/hbase_nightly_yetus.sh ---------------------------------------------------------------------- diff --git a/dev-support/hbase_nightly_yetus.sh b/dev-support/hbase_nightly_yetus.sh index 3e6fc7c..27d11c8 100755 --- a/dev-support/hbase_nightly_yetus.sh +++ b/dev-support/hbase_nightly_yetus.sh @@ -67,7 +67,9 @@ 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[@]}") +# Why are these not being picked up from hbase-personality? +YETUS_ARGS=("--proclimit=10000" "${YETUS_ARGS[@]}") +YETUS_ARGS=("--dockermemlimit=20g" "${YETUS_ARGS[@]}") # Currently, flaky list is calculated only for master branch. UNDERSCORED_BRANCH_NAME=$(echo ${BRANCH_NAME} | tr '.-' '_')
