配置 core-pool-size-factor 和 max-pool-size-factor 设置的一般良好做法是什么?

发布于 2024-11-15 18:26:54 字数 243 浏览 3 评论 0原文

例如,如果 CPU 有四个核心和八个核心线程。

  • 我应该将 core-pool-size-factor 设置一直设置为 8 吗?
  • 相对于core-pool-size-factorma​​x-pool-size-factor 的一般大小是多少?
  • 我提到的还有其他与 Akka 配置相关的设置吗?

For example, if the CPU has four cores and eight core threads.

  • Should I set the core-pool-size-factor setting all the way to 8?
  • What's a good general size for max-pool-size-factor in relation to core-pool-size-factor?
  • Are there any other settings the ones I mentioned are related to withing Akka config?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

洛阳烟雨空心柳 2024-11-22 18:26:54

core-pool-size-factor 为 1.0 将是运行时可用逻辑处理器数量的 1.0 x。

max-pool-size-factor 应与 core-pool-size-factor 相同,除非您有一个有界的池队列(ThreadPoolExecutor 不会增加池,除非队列有界)

core-pool-size-factor of 1.0 will be 1.0 x number of logical processors available to the runtime.

max-pool-size-factor should be the same as core-pool-size-factor unless you have a bounded queue for the pool (ThreadPoolExecutor does not grow the pool unless the queue is bounded)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文