We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
File: /release-7.5/tidb-configuration-file.md
最大值(64 位平台):18446744073709551615 最大值(32 位平台):4294967295
相关代码: func NewTokenLimiter(count uint) *TokenLimiter { tl := &TokenLimiter{count: count, ch: make(chan *Token, count)} for i := uint(0); i < count; i++ { tl.ch <- &Token{} }
return tl
}
TiDB运行时,会初始化指定长度的 channel,若设置过大,会导致 TiDB OOM 无法启动。建议限制该配置项的最大值
The text was updated successfully, but these errors were encountered:
@djshow832 Could you please take a look at this issue? Thanks!
Sorry, something went wrong.
I have filed an issue for TiDB: pingcap/tidb#53312
Currently, we have 2 ways to fix the doc:
dev
After discussion, we chose the 1st solution.
djshow832
Successfully merging a pull request may close this issue.
File: /release-7.5/tidb-configuration-file.md
最大值(64 位平台):18446744073709551615
最大值(32 位平台):4294967295
相关代码:
func NewTokenLimiter(count uint) *TokenLimiter {
tl := &TokenLimiter{count: count, ch: make(chan *Token, count)}
for i := uint(0); i < count; i++ {
tl.ch <- &Token{}
}
}
TiDB运行时,会初始化指定长度的 channel,若设置过大,会导致 TiDB OOM 无法启动。建议限制该配置项的最大值
The text was updated successfully, but these errors were encountered: