Minio requests_max 的实际值
当我在没有设置requests_max参数的情况下启动minio时,默认值为0,并且根据文档,当requests_max参数设置为0时,Minio将根据可用内存自动计算最大请求数。
注意:requests_max 的零值意味着 MinIO 将根据可用 RAM 大小自动计算请求,这是默认行为。 https://github.com/minio/minio/blob/ master/docs/throttle/README.md
因此,在启动时的启动屏幕上,我看到根据可用 RAM 大小计算的 requests_max 参数
Automatically configured API requests per node based on available memory on the system: 20
现在我的问题是: 是否有 mc 命令或任何其他方式来查找实际的最大请求值(根据可用内存计算)?
谢谢
when I start minio without setting up the requests_max parameter, the deafult value is 0, and, according to documentation, when requests_max parameter is set to 0, Minio will automatically calculate the maximum number of requests depending on available memory.
NOTE: A zero value of requests_max means MinIO will automatically calculate requests based on available RAM size and that is the default behavior.
https://github.com/minio/minio/blob/master/docs/throttle/README.md
So, on splash screen at startup, I see the requests_max parameter calculated based on available RAM size
Automatically configured API requests per node based on available memory on the system: 20
Now my question is:
Is there a mc
command, or any other way, to find the actual maximum request value (calculated based on available memory)?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
目前,该值不会以任何其他方式公开(即,当服务器启动时未设置该值时,日志行除外)。您可以尝试打开功能请求以将此项目添加到服务器信息命令:
mc admin info
。MinIO 团队可以通过其公共 Slack 频道或通过电子邮件随时解答问题(24/7/365)。
Currently, this value is not exposed in any other way (i.e. other than the log line when it is not set on server startup). You could try opening a feature request to get this item added to the server info command:
mc admin info
.The MinIO team is available on their public slack channel or by email to answer questions 24/7/365.