SharedZkClientFactory retains reference to closed ZkConnectionManagers
See original GitHub issue // Close the ZkConnectionManager if no other shared client is referring to it.
// Note the close operation of connection manager needs to be synchronized with the pool operation
// to avoid race condition.
private void cleanupConnectionManager(ZkConnectionManager zkConnectionManager) {
synchronized (_connectionManagerPool) {
zkConnectionManager.close(true);
}
}
Here, shouldn’t we remove closed references?
Need to remove this ZkConnectionManager from connectionManagerPool.
Issue Analytics
- State:
- Created 3 years ago
- Comments:5 (4 by maintainers)
Top Results From Across the Web
Contribute to apache/helix
SharedZkClientFactory retains reference to closed ZkConnectionManagers good first issue Good for new comers. #1126 opened on Jun 28, 2020 by narendly.
Read more >Referencing value in a closed Excel workbook using ...
The problem is that a link to a closed file works with index( but not with index(indirect(. It seems to me that it...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@manick02 Sure. If you want, you could submit a pull request with a commit and ask for a review.
If none has taken this issue, Can I look at this issue and submit a commit? This would help me understand helix better