-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
CURATOR-710: Fix leaking watch in EnsembleTracker #508
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -28,36 +28,46 @@ public class Watching { | |||||||||||||||||||||||||||||||
private final CuratorWatcher curatorWatcher; | ||||||||||||||||||||||||||||||||
private final boolean watched; | ||||||||||||||||||||||||||||||||
private final CuratorFrameworkImpl client; | ||||||||||||||||||||||||||||||||
private WatcherRemovalManager watcherRemovalManager; | ||||||||||||||||||||||||||||||||
private NamespaceWatcher namespaceWatcher; | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
public Watching(CuratorFrameworkImpl client, boolean watched) { | ||||||||||||||||||||||||||||||||
this.client = client; | ||||||||||||||||||||||||||||||||
this.watcherRemovalManager = client.getWatcherRemovalManager(); | ||||||||||||||||||||||||||||||||
this.watcher = null; | ||||||||||||||||||||||||||||||||
this.curatorWatcher = null; | ||||||||||||||||||||||||||||||||
this.watched = watched; | ||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
public Watching(CuratorFrameworkImpl client, Watcher watcher) { | ||||||||||||||||||||||||||||||||
this.client = client; | ||||||||||||||||||||||||||||||||
this.watcherRemovalManager = client.getWatcherRemovalManager(); | ||||||||||||||||||||||||||||||||
this.watcher = watcher; | ||||||||||||||||||||||||||||||||
this.curatorWatcher = null; | ||||||||||||||||||||||||||||||||
this.watched = false; | ||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
public Watching(CuratorFrameworkImpl client, CuratorWatcher watcher) { | ||||||||||||||||||||||||||||||||
this.client = client; | ||||||||||||||||||||||||||||||||
this.watcherRemovalManager = client.getWatcherRemovalManager(); | ||||||||||||||||||||||||||||||||
this.watcher = null; | ||||||||||||||||||||||||||||||||
this.curatorWatcher = watcher; | ||||||||||||||||||||||||||||||||
this.watched = false; | ||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
public Watching(CuratorFrameworkImpl client) { | ||||||||||||||||||||||||||||||||
this.client = client; | ||||||||||||||||||||||||||||||||
this.watcherRemovalManager = client.getWatcherRemovalManager(); | ||||||||||||||||||||||||||||||||
watcher = null; | ||||||||||||||||||||||||||||||||
watched = false; | ||||||||||||||||||||||||||||||||
curatorWatcher = null; | ||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
Watching setWatcherRemovalManager(WatcherRemovalManager watcherRemovalManager) { | ||||||||||||||||||||||||||||||||
this.watcherRemovalManager = watcherRemovalManager; | ||||||||||||||||||||||||||||||||
return this; | ||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
Watcher getWatcher(String unfixedPath) { | ||||||||||||||||||||||||||||||||
namespaceWatcher = null; | ||||||||||||||||||||||||||||||||
if (watcher != null) { | ||||||||||||||||||||||||||||||||
|
@@ -85,10 +95,8 @@ void commitWatcher(int rc, boolean isExists) { | |||||||||||||||||||||||||||||||
doCommit = (rc == KeeperException.Code.OK.intValue()); | ||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
if (doCommit && (namespaceWatcher != null)) { | ||||||||||||||||||||||||||||||||
if (client.getWatcherRemovalManager() != null) { | ||||||||||||||||||||||||||||||||
client.getWatcherRemovalManager().add(namespaceWatcher); | ||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||
if (doCommit && namespaceWatcher != null && watcherRemovalManager != null) { | ||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you elaborate a bit when There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I agree with the question: we can save some memory by not having the field. The performance impact is negligible There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Step.2 is what exactly curator/curator-framework/src/main/java/org/apache/curator/framework/imps/EnsembleTracker.java Lines 87 to 90 in 6a27ff0
Step.3 is what exactly curator/curator-framework/src/main/java/org/apache/curator/framework/imps/GetConfigBuilderImpl.java Lines 41 to 45 in 6a27ff0
Step.4 is where this bug emerges. curator/curator-framework/src/main/java/org/apache/curator/framework/imps/EnsembleTracker.java Lines 99 to 104 in 6a27ff0
I have pushed a fixup commit 6b78a3b with comments to doc this. |
||||||||||||||||||||||||||||||||
watcherRemovalManager.add(namespaceWatcher); | ||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems the
watcherRemovalManager
already set in the constructor bythis.watcherRemovalManager = client.getWatcherRemovalManager();
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Or otherwise we can merge this setter into the constructor as a parameter.