标签:height img and 应用程序 alt amp 数据处理 src image
暂停应用,保存状态到检查点,再恢复应用
基于Chandy-Lamport算法的分布式快照
将检查点的保存和数据处理分离开,不暂停整个应用
// checkpoint相关配置 //启用检查点,指定触发检查点间隔时间(毫秒) env.enableCheckpointing(1000L) //其他配置 env.getCheckpointConfig.setCheckpointMode(CheckpointMode.EXACTLY_ONCE) env.getCheckpointConfig.setCheckpointTimeOut(30000L) env.getCheckpointConfig.setMaxConcurrentCheckpoints(2) env.getCheckpointConfig.setMinPauseBetweenCheckpoints(500L) env.getCheckpointConfig.setPreferCheckpointForRecovery(false) env.getCheckpointConfig.setTolerableCheckpointFailureNumber(3)
标签:height img and 应用程序 alt amp 数据处理 src image
原文地址:https://www.cnblogs.com/south-pigeon/p/13636331.html