⌘CtrlK
Appearance
Appearance
现象:Dolphin 日志中出现资源超限,任务下发缓慢或卡住。
解决步骤:
dolphin/standalone-server/conf/application.yaml,将 max-system-memory-usage-percentage-thresholds 调大(如 0.9→0.95) | 配置项 | 默认值 | 描述 |
|---|---|---|
| max-system-cpu-usage-percentage-thresholds | 0.8 | worker最大系统cpu使用值,只有当前系统cpu使用值低于最大系统cpu使用值,worker服务才能接收任务. 默认值为0.8: 会使用80%的操作系统CPU |
| max-jvm-cpu-usage-percentage-thresholds | 0.8 | worker最大JVM cpu使用值,只有当前JVM cpu使用值低于最大JVM cpu使用值,worker服务才能接收任务. 默认值为0.8: 会使用80%的JVM CPU。 |
| max-system-memory-usage-percentage-thresholds | 0.8 | worker最大系统 内存使用值,只有当前系统内存使用值低于最大系统内存使用值,worker服务才能接收任务. 默认值为0.8: 会使用80%的操作系统内存。 |
| max-disk-usage-percentage-thresholds | 0.8 | worker最大系统磁盘使用值,只有当前系统磁盘使用值低于最大系统磁盘使用值,worker服务才能接收任务. 默认值为0.8: 会使用80%的操作系统磁盘空间。 |
现象:dws服务器 cpu占用过高,界面卡顿。
解决步骤:
方案一 在/dws/config/logback-spring.xml中配置
<logger name="com.primeton.eos.timeout" level="OFF"/>方案二 在/dws/config/application.properties中配置
logging.level.com.primeton.eos.timeout=OFF