[ https://issues.apache.org/jira/browse/ZOOKEEPER-4858?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Li Wang updated ZOOKEEPER-4858: ------------------------------- Description: Remove the synchronized keyword from Zookeeper.takeSnapshot() and ZookeeperServer.restoreFromSnapshot() API, as it causes lock contention on the ZookeeperServer object with the sync operation. In ZookeeperServer.java, we have the following {code:java} public synchronized File takeSnapshot(boolean syncSnap, boolean isSevere, boolean fastForwardFromEdits) throws IOException { .... } {code} In ObserverZookeeperServer.java and FollowerZookeeperServer.java, we have the following {code:java} public synchronized void sync() { ... } {code} was: Remove the synchronized keyword from Zookeeper.takeSnapshot() and ZookeeperServer.restoreFromSnapshot() API, as it cause lock contention on the ZookeeperServer object with the sync operation. In ZookeeperServer.java, we have the following {code:java} public synchronized File takeSnapshot(boolean syncSnap, boolean isSevere, boolean fastForwardFromEdits) throws IOException { .... } {code} In ObserverZookeeperServer.java and FollowerZookeeperServer.java, we have the following {code:java} public synchronized void sync() { ... } {code} > Remove the lock contention between snapshotting and the sync operation > ---------------------------------------------------------------------- > > Key: ZOOKEEPER-4858 > URL: https://issues.apache.org/jira/browse/ZOOKEEPER-4858 > Project: ZooKeeper > Issue Type: Improvement > Components: server > Affects Versions: 3.9.0, 3.9.1, 3.9.2 > Reporter: Li Wang > Assignee: Li Wang > Priority: Major > Labels: pull-request-available > Time Spent: 10m > Remaining Estimate: 0h > > Remove the synchronized keyword from Zookeeper.takeSnapshot() and > ZookeeperServer.restoreFromSnapshot() API, as it causes lock contention on > the ZookeeperServer object with the sync operation. > In ZookeeperServer.java, we have the following > {code:java} > public synchronized File takeSnapshot(boolean syncSnap, boolean isSevere, > boolean fastForwardFromEdits) throws IOException { > .... > } > {code} > In ObserverZookeeperServer.java and FollowerZookeeperServer.java, we have the > following > > {code:java} > public synchronized void sync() { > ... > } > {code} -- This message was sent by Atlassian Jira (v8.20.10#820010)