-
Notifications
You must be signed in to change notification settings - Fork 5.8k
New issue
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
sysvar, config: introduce tidb_connection_concurrency_limit as an instance scope sysvar. #34662
Closed
Closed
Changes from 13 commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
a064adf
sysvar,config: introduce tidb_connection_concurrency_limit
CbcWestwolf d33a28b
Merge branch 'master' into change_token_limit
hawkingrei 7b8a7e4
Merge branch 'master' into change_token_limit
CbcWestwolf 4c71453
Fix
CbcWestwolf 58d3385
Merge branch 'change_token_limit' of github.com:CbcWestwolf/tidb into…
CbcWestwolf 6038f07
Merge branch 'master' of github.com:pingcap/tidb into change_token_limit
CbcWestwolf ae1df77
Introduce TokenLimiter.Resize()
CbcWestwolf 0ad5567
Fix check_dev
CbcWestwolf e9ba4a9
Refactor
CbcWestwolf f25f0b6
Merge branch 'master' of github.com:pingcap/tidb into change_token_limit
CbcWestwolf 51c4be7
Fix
CbcWestwolf 155f981
Fix
CbcWestwolf d635b76
Merge branch 'master' into change_token_limit
CbcWestwolf 1d35815
Merge branch 'master' of github.com:pingcap/tidb into change_token_limit
CbcWestwolf 8d73590
Merge branch 'master' of github.com:pingcap/tidb into change_token_limit
CbcWestwolf ae1e2b9
Merge branch 'master' into change_token_limit
morgo 0065286
Merge branch 'change_token_limit' of github.com:CbcWestwolf/tidb into…
CbcWestwolf 3a88c94
Merge branch 'master' of github.com:pingcap/tidb into change_token_limit
CbcWestwolf 2985c9a
Merge branch 'master' of github.com:pingcap/tidb into change_token_limit
CbcWestwolf File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this will just be passed to
server/
when the server starts?If so, it will need to be refactored, since making changes to the sysvar won't apply until restart (which is a problem for instance vars, since the values are lost on restart too).