You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by wc...@apache.org on 2021/01/27 21:01:34 UTC

[hbase-operator-tools] branch master updated: HBASE-25529 [hbase-operator-tools] Fix OOME "unable to create new nat… (#80)

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

wchevreuil pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hbase-operator-tools.git


The following commit(s) were added to refs/heads/master by this push:
     new 2958eeb  HBASE-25529 [hbase-operator-tools] Fix OOME "unable to create new nat… (#80)
2958eeb is described below

commit 2958eebd0836885552c23bff84979ed4d4af41d6
Author: Wellington Ramos Chevreuil <wc...@apache.org>
AuthorDate: Wed Jan 27 21:01:24 2021 +0000

    HBASE-25529 [hbase-operator-tools] Fix OOME "unable to create new nat… (#80)
    
    Peter Somogyi <ps...@apache.org>
---
 dev-support/jenkins/jenkins_precommit_github_yetus.sh | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dev-support/jenkins/jenkins_precommit_github_yetus.sh b/dev-support/jenkins/jenkins_precommit_github_yetus.sh
index 6596426..2cede2f 100755
--- a/dev-support/jenkins/jenkins_precommit_github_yetus.sh
+++ b/dev-support/jenkins/jenkins_precommit_github_yetus.sh
@@ -120,6 +120,9 @@ YETUS_ARGS+=("--sentinel")
 # use emoji vote so it is easier to find the broken line
 YETUS_ARGS+=("--github-use-emoji-vote")
 YETUS_ARGS+=("--github-repo=apache/hbase-operator-tools")
+# increasing proc limit to avoid OOME: unable to create native threads
+YETUS_ARGS+=("--proclimit=5000")
+
 
 echo "Launching yetus with command line:"
 echo "${TESTPATCHBIN} ${YETUS_ARGS[*]}"