Fix race condition/goroutine leak in partition discovery goroutine #474
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.
Master issue: #462
Motivation
In some cases consumer
Close
method might be called in nearly the same moment with background partiotion discovery routine tick. WhenClose
acquires mutex first, it will release all underlying consumers, but that not guarantees backgound routine's not wait for the same mutex ininternalTopicSubscribeToPartitions
, so whenClose
completes, mutex gets acquired by not-finished-yet goroutine leading to new partition consumers gets created without any chance to close them.The same logic is valid for producer partition discovery goroutine which is closed the same manner.
This PR modifies background discrovery goroutine the way it will be closed before acquiring mutex in
Close
method.Modifications
Described above.
Verifying this change
This change is a trivial rework / code cleanup without any test coverage.
Does this pull request potentially affect one of the following parts:
If
yes
was chosen, please highlight the changesDocumentation