Repository: hbase Updated Branches: refs/heads/branch-1.1 30a565bd7 -> 0534e0d67
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/0534e0d6 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/0534e0d6 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/0534e0d6 Branch: refs/heads/branch-1.1 Commit: 0534e0d67c4bdfb733690a93598342d698b9e797 Parents: 30a565b Author: Michael Stack <[email protected]> Authored: Fri Feb 2 11:09:39 2018 -0800 Committer: Michael Stack <[email protected]> Committed: Fri Feb 2 11:09:39 2018 -0800 ---------------------------------------------------------------------- dev-support/hbase-personality.sh | 8 ++++++++ dev-support/hbase_nightly_yetus.sh | 3 +++ 2 files changed, 11 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/0534e0d6/dev-support/hbase-personality.sh ---------------------------------------------------------------------- diff --git a/dev-support/hbase-personality.sh b/dev-support/hbase-personality.sh index f35e81f..f902ac1 100755 --- a/dev-support/hbase-personality.sh +++ b/dev-support/hbase-personality.sh @@ -64,6 +64,14 @@ function personality_globals # Override the maven options MAVEN_OPTS="${MAVEN_OPTS:-"-Xmx3100M"}" + + # 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/0534e0d6/dev-support/hbase_nightly_yetus.sh ---------------------------------------------------------------------- diff --git a/dev-support/hbase_nightly_yetus.sh b/dev-support/hbase_nightly_yetus.sh index e1175d2..37df12b 100755 --- a/dev-support/hbase_nightly_yetus.sh +++ b/dev-support/hbase_nightly_yetus.sh @@ -67,6 +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[@]}") +# 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. if [[ -n "${EXCLUDE_TESTS_URL}" && "${BRANCH_NAME}" == "master" ]]; then
