Details
-
Improvement
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.4.2, 1.5.2, 1.6.0, 1.8.1
Description
This issue results from FLINK-10011 which uncovered a problem with Flink's HA recovery and proposed the following solution to harden Flink:
The ZooKeeperLeaderElectionService uses the LeaderLatch Curator recipe for leader election. The leader latch revokes leadership in case of a suspended ZooKeeper connection. This can be premature in case that the system can reconnect to ZooKeeper before its session expires. The effect of the lost leadership is that all jobs will be canceled and directly restarted after regaining the leadership.
Instead of directly revoking the leadership upon a SUSPENDED ZooKeeper connection, it would be better to wait until the ZooKeeper connection is LOST. That way we would allow the system to reconnect and not lose the leadership. This could be achievable by using Curator's LeaderSelector instead of the LeaderLatch.
Attachments
Issue Links
- is duplicated by
-
FLINK-13189 Fix the impact of zookeeper network disconnect temporarily on flink long running jobs
- Closed
-
FLINK-14111 Flink should be robust to a non-leader Zookeeper host going down
- Closed
- relates to
-
FLINK-10011 Old job resurrected during HA failover
- Resolved
- links to
- mentioned in
-
Page Loading...