經常遇到的java.lang.OutOfMemoryError:unabletocreatenewnativethread解決方案

來源:互聯網
上載者:User

經常遇到的java.lang.OutOfMemoryError:unabletocreatenewnativethread解決方案

簡單分享一下,類似問題的解決方案

剛才在某機器上上xxx使用者下壓測時遇到這個問題,連xxx都進不去了

說明xxx使用者下無法建立跟多的線程了(當然root使用者沒這個問題)

系統能夠建立的最大線程數:(MaxProcessMemory - JVMMemory – 系統記憶體) / (ThreadStackSize) = Number of threads

有兩種方式:

減少xxx下的ThreadStackSize

增加xxx下的nproc數量

修改

[lsmpusr@wxlab28bin]$ ulimit -a

core filesize (blocks, -c) 0

data segsize (kbytes, -d)unlimited

schedulingpriority (-e) 0

filesize (blocks, -f) unlimited

pendingsignals (-i) 256636

max lockedmemory (kbytes, -l) 64

max memorysize (kbytes, -m) unlimited

openfiles (-n) 65536

pipesize (512bytes, -p) 8

POSIX messagequeues (bytes, -q) 819200

real-timepriority (-r) 0

stacksize (kbytes, -s) 10240-----可以減小這個,建議在jvm –xss中減少

cputime (seconds, -t) unlimited

max userprocesses (-u) 1024-----可以增加這個到32000

virtualmemory (kbytes, -v)unlimited

filelocks (-x) unlimited

修改/etc/security/limits.conf

* soft nofile 65536
* hard nofile 65536
xxx soft nproc 32000
xxx hard nproc 32000
xxx soft stack 1024
xxx hard stack 1024

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.