gpt4 book ai didi

performance - 如果 GOMAXPROCS 太大怎么办?

转载 作者:IT王子 更新时间:2023-10-29 02:28:14 25 4
gpt4 key购买 nike

我们都知道runtime.GOMAXPROCS默认设置为CPU核心数,如果这个属性设置的太大了怎么办?

  1. 程序会有更多上下文切换吗?
  2. 是否会更频繁地触发垃圾收集器?

最佳答案

GOMAXPROCS 默认设置为可用逻辑 CPU 的数量,原因是:这在大多数情况下提供最佳性能。

GOMAXPROCS 仅限制“事件”线程的数量,如果线程的 goroutine 被阻塞(例如被系统调用),则可能会启动一个新线程。没有直接的相关性,请参阅 Number of threads used by Go runtime

如果 GOMAXPROCS 大于可用 CPU 的数量,那么事件线程将多于 CPU 核心,这意味着事件线程必须“多路复用”到可用的处理单元,所以是的,将会有更多的上下文切换if有比内核更多的事件线程,但情况不一定如此。

垃圾收集与线程数没有直接关系,因此您不必担心。引用包 runtime :

The GOGC variable sets the initial garbage collection target percentage. A collection is triggered when the ratio of freshly allocated data to live data remaining after the previous collection reaches this percentage. The default is GOGC=100. Setting GOGC=off disables the garbage collector entirely. The runtime/debug package's SetGCPercent function allows changing this percentage at run time. See https://golang.org/pkg/runtime/debug/#SetGCPercent.

如果您有更多不分配/释放内存的线程,那应该不会影响触发集合的频率。

在某些情况下,将 GOMAXPROCS 设置为高于 CPU 数量会提高应用的性能,但这种情况很少见。衡量一下,看看它是否对您的情况有帮助。

关于performance - 如果 GOMAXPROCS 太大怎么办?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57215184/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com