Repository: hbase Updated Branches: refs/heads/branch-1.4 8b0a7dd76 -> 733d1ec41
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/733d1ec4 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/733d1ec4 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/733d1ec4 Branch: refs/heads/branch-1.4 Commit: 733d1ec41a51e49a1da909f3cd123eaf67c5dd54 Parents: 8b0a7dd Author: Michael Stack <[email protected]> Authored: Fri Feb 2 10:55:21 2018 -0800 Committer: Michael Stack <[email protected]> Committed: Fri Feb 2 11:11:26 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/733d1ec4/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/733d1ec4/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 '.-' '_')
