-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Only use boost workers for leveldb shadow queues #15696
Only use boost workers for leveldb shadow queues #15696
Conversation
The leveldb shadow queue of a persistable channel queue should always start with 0 workers and just use boost to add additional workers if necessary. Signed-off-by: Andrew Thornton <[email protected]>
… to start the workers Signed-off-by: Andrew Thornton <[email protected]>
Signed-off-by: Andrew Thornton <[email protected]>
Signed-off-by: Andrew Thornton <[email protected]>
Codecov Report
@@ Coverage Diff @@
## master #15696 +/- ##
==========================================
- Coverage 43.91% 43.89% -0.02%
==========================================
Files 678 678
Lines 81838 81866 +28
==========================================
Hits 35936 35936
- Misses 40052 40083 +31
+ Partials 5850 5847 -3
Continue to review full report at Codecov.
|
This also fixes the timeout times reported on the process manager for boost workers and also makes it possible to start all queues with zero workers to allow defaulting to boost when they get some work. |
The leveldb shadow queue of a persistable channel queue should always start with 0
workers and just use boost to add additional workers if necessary.
Fixes #15542
Signed-off-by: Andrew Thornton [email protected]