(Attempt to) Fix deadlock between consumer and heartbeat #1628
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.
This is an attempt to address / fix #1623 and #1626. Major shout out to zhgjun for investigating and suggesting this fix!
Given the thread setup we have right now, I think the easiest way to prevent deadlock is to always acquire the client lock before the coordinator lock. There are still some places in the code that only acquire the coordinator lock. Leaving these in place is dangerous, but I don't think any of them have any possible code path that leads to acquiring the client lock while still holding the coordinator lock.
I've also modified the client poll loop to keep the client lock during callback handling. I don't think this is specifically necessary to fix the deadlock issue reported in the issues above, but I also don't think dropping the client lock before processing callbacks adds any value at this point.
This change is