-
Notifications
You must be signed in to change notification settings - Fork 94
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
riak_cs_access_archiver_manager always fails to throttle access archiver #758
Merged
Conversation
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
number of active workers exceeded max_workers, because the handle_call({archive, _, _}, ...) never matches to the message called from riak_cs_access_archiver_manager:archive/2.
Code looks correct to me. That module never gets called with that clause.
|
|
I tested this by setting {access_archiver_max_backlog, 1},
{access_archiver_max_workers, 1} I then ran This change triggers the crash below, so I'm 👎 on this until that is resolved.
|
Geez. I'll work on it today. |
ghost
assigned kuenishi
Dec 27, 2013
👍 |
kuenishi
added a commit
that referenced
this pull request
Dec 28, 2013
riak_cs_access_archiver_manager always fails to throttle access archiver
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
even when the number of active workers exceeded max_workers, because the
handle_call({archive, _, _}, ...)
never matches to the message called fromriak_cs_access_archiver_manager:archive/2
.Not sure what to test here, or how to reproduce, probably I can write riak_test by setting
access_archiver_max_workers
as 0. I'd be happywrite the test if it's not trivial.