-
Notifications
You must be signed in to change notification settings - Fork 694
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
Add io-threads-do-reads config to deprecated config table to have no effect. #1138
Add io-threads-do-reads config to deprecated config table to have no effect. #1138
Conversation
…effect on io-threads Signed-off-by: Shivshankar-Reddy <[email protected]>
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## unstable #1138 +/- ##
===========================================
Coverage ? 70.59%
===========================================
Files ? 114
Lines ? 61716
Branches ? 0
===========================================
Hits ? 43567
Misses ? 18149
Partials ? 0
|
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.
Again please update documentation and example config file explaining this option is deprecated and doesn't do anything anymore.
Signed-off-by: Shivshankar-Reddy <[email protected]>
Signed-off-by: Shivshankar-Reddy <[email protected]>
Added a note in the valkey.conf file as it is deprecated and avoid using it in future. Thanks for remainding it. |
Small typo in title: depricated -> deprecated |
Signed-off-by: Shivshankar-Reddy <[email protected]>
…effect. (valkey-io#1138) this fixes: valkey-io#1116 _Issue details from valkey-io#1116 by @zuiderkwast_ > This config is undocumented since valkey-io#758. The default was changed to "yes" and it is quite useless to set it to "no". Yet, it can happen that some user has an old config file where it is explicitly set to "no". The result will be bad performace, since I/O threads will not do all the I/O. > > It's indeed confusing. > > 1. Either remove the whole option from the code. And thus no need for documentation. _OR:_ > 2. Introduce the option back in the configuration, just as a comment is fine. And showing the default value "yes": `# io-threads-do-reads yes` with additional text. > > _Originally posted by @melroy89 in [valkey-io#1019 (reply in thread)](https://github.com/orgs/valkey-io/discussions/1019#discussioncomment-10824778)_ --------- Signed-off-by: Shivshankar-Reddy <[email protected]>
this fixes: #1116
Issue details from #1116 by @zuiderkwast