【发布时间】:2019-10-01 09:07:18
【问题描述】:
在 Atlassian 的 Confluence 中,Jira the "Instance health" plugin tool 还通过 Health Check: Thread Limit 通知:
"Result
The maximum number of processes for the user account running JIRA is
currently 2500, which can cause performance issues. We recommend
increasing this to at least 4,096."
在
github/apple/darwin-xnu/bsd/conf/param.c
该文件包含
Line 94: #define HNPROC 2500 /* based on thread_max */
在 macOS 中也是如此
$ulimit -u
可以是该值的最大值。因为它是根据:
1) $ sysctl kern.maxproc;
2)How to increase the max user processes hard limit(Mojave);
3)Mac OS X Server v10.6: Understanding process limits.
此问题的选项:
1) 重新编译、重新安装并重新将重新编译版本的 XNU 计算机操作系统内核与增加的 HNPROC 参数值引入到本地版本的非服务器独立(当前为 Mojave)版本的 macOS 中?
2) 删除此本地版本的 macOS 并安装 Windows 操作系统或 Linux 操作系统,并将 JIRA 实例迁移到 Windows 或 Linux,如支持的平台页面上列出的 Mac OS X Not Supported by JIRA 的建议网页?
3) 寻找另一个可能的选择,甚至其他可能的选择?
【问题讨论】:
标签: macos jira macos-mojave jira-plugin