Skip to content
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

Update ZooKeeper to 3.6.2 and Curator to 5.1.0 #8590

Merged
merged 29 commits into from
Feb 11, 2021
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
add680a
Update ZooKeeper to 3.6.2 and Curator to 5.1.0
eolivelli Nov 17, 2020
47cbe33
port from #8348
eolivelli Nov 17, 2020
b33b9ba
Merge remote-tracking branch 'origin/master' into fix/zk-3.6
eolivelli Jan 14, 2021
60835b1
Exclude shaded ZooKeeper from spotbugs
eolivelli Jan 14, 2021
e30bf32
fix spotbugs
eolivelli Jan 14, 2021
d01491f
fix licenses and tests
eolivelli Jan 14, 2021
fe2f2db
fix more tests
eolivelli Jan 14, 2021
9e62f7c
More test deps
eolivelli Jan 15, 2021
5440699
Merge remote-tracking branch 'origin/master' into fix/zk-3.6
eolivelli Jan 18, 2021
d887b9e
Upgrade Curator in Flume connector
eolivelli Jan 19, 2021
39143a7
Merge remote-tracking branch 'origin/master' into fix/zk-3.6
eolivelli Jan 20, 2021
a90fe83
Fix refletion usage of ZK internals
eolivelli Jan 20, 2021
c8f571d
Merge remote-tracking branch 'origin/master' into fix/zk-3.6
eolivelli Jan 21, 2021
624441f
Make AdminApiOffloadTest less flaky
eolivelli Jan 21, 2021
58a5dff
Merge remote-tracking branch 'origin/master' into fix/zk-3.6
eolivelli Jan 22, 2021
a7220ec
Fix MockZooKeeper
eolivelli Jan 22, 2021
c3a9c2d
Merge remote-tracking branch 'origin/master' into fix/zk-3.6
eolivelli Jan 25, 2021
d604fc3
Merge branch 'master' into fix/zk-3.6
eolivelli Jan 29, 2021
40e5275
Merge remote-tracking branch 'origin/master' into fix/zk-3.6
eolivelli Feb 1, 2021
dffbfb4
remove line
eolivelli Feb 1, 2021
930f84d
Fixed use of multi() in MockZookeeper
merlimat Feb 2, 2021
c2015a8
More ZK dependency fixes
merlimat Feb 2, 2021
bf3e784
Merge remote-tracking branch 'origin/master' into fix/zk-3.6
eolivelli Feb 2, 2021
822b1dc
Merge remote-tracking branch 'origin/master' into fix/zk-3.6
eolivelli Feb 5, 2021
8b2c460
Merge branch 'master' into fix/zk-3.6
eolivelli Feb 8, 2021
957ea1e
Merge branch 'master' into fix/zk-3.6
eolivelli Feb 9, 2021
10487e0
Fix license check
eolivelli Feb 9, 2021
379dac7
Merge branch 'master' into fix/zk-3.6
eolivelli Feb 10, 2021
a300cac
revert typo
eolivelli Feb 10, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
port from #8348
  • Loading branch information
eolivelli committed Nov 17, 2020
commit 47cbe3320fa71a97441df20a8ffcae1c5e64b3d1
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ private void runZookeeper(int maxCC) throws IOException {
serverFactory.configure(new InetSocketAddress(zkPort), maxCC);
serverFactory.startup(zks);

zkDataCleanupManager = new DatadirCleanupManager(zkDataDir, zkDataDir, 0, 1 /* hour */);
zkDataCleanupManager = new DatadirCleanupManager(zkDataDir, zkDataDir, 3, 1 /* hour */);
zkDataCleanupManager.start();
} catch (Exception e) {
LOG.error("Exception while instantiating ZooKeeper", e);
Expand Down