Skip to content

Commit

Permalink
[FLINK-2805] Apply RecoveryMode and ConfigConstants changes from apac…
Browse files Browse the repository at this point in the history
  • Loading branch information
uce authored and tillrohrmann committed Oct 8, 2015
1 parent e852ff6 commit d2ccf60
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@
/**
* Recovery mode for Flink's cluster execution. Currently supported modes are:
*
* - Standalone: No recovery from JobManager failures
* - ZooKeeper: JobManager high availability via ZooKeeper
* ZooKeeper is used to select a leader among a group of JobManager. This JobManager
* is responsible for the job execution. Upon failure of the leader a new leader is elected
* which will take over the responsibilities of the old leader
* - Standalone: No recovery from JobManager failures
* - ZooKeeper: JobManager high availability via ZooKeeper
* ZooKeeper is used to select a leader among a group of JobManager. This JobManager
* is responsible for the job execution. Upon failure of the leader a new leader is elected
* which will take over the responsibilities of the old leader
*/
public enum RecoveryMode {
STANDALONE,
Expand Down Expand Up @@ -69,4 +69,4 @@ public static boolean isHighAvailabilityModeActivated(Configuration configuratio
return false;
}
}
}
}

0 comments on commit d2ccf60

Please sign in to comment.