EdColeman commented on code in PR #2778:
URL: https://github.com/apache/accumulo/pull/2778#discussion_r926798713
##########
server/base/src/main/java/org/apache/accumulo/server/conf/store/impl/ZooPropStore.java:
##########
@@ -121,6 +139,13 @@ private ZooPropStore(final InstanceId instanceId, final
ZooReaderWriter zrw) {
throw new IllegalStateException("Failed to read root node " + instanceId
+ " from ZooKeeper",
ex);
}
+ Runnable refreshTask = this::verifySnapshotVersions;
+ // randomly stagger initial and then subsequent calls across cluster
Review Comment:
Changing to
```
// staggering the initial delay prevents synchronization of Accumulo
servers communicating
// with ZooKeeper for the sync process.
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]