• GenericWriteAheadSink每次checkpoint后事务是否必须成功


    背景

    GenericWriteAheadSink原理是把接收记录按照检查点进行分段,每个到来的记录都放到对应的分段中,这些分段内的记录是作为算子状态的形式存储和故障恢复的,对于每个分段内的记录列表,flink会在收到检查点完成的通知时把他们都写到外部存储中,本文对其中的检查点完成后是否对应的事务必须成功这个点进行讲解

    源码解析GenericWriteAheadSink

    首先开始进行checkpoint时代码如下

    public void snapshotState(StateSnapshotContext context) throws Exception {
            super.snapshotState(context);
            // 把检查点id先放入本地变量中
            saveHandleInState(context.getCheckpointId(), context.getCheckpointTimestamp());
    
            this.checkpointedState.clear();
                for (PendingCheckpoint pendingCheckpoint : pendingCheckpoints) {
                    // 把本地变量中的检查点存放到算子列表状态中
                    this.checkpointedState.add(pendingCheckpoint);
                }
        }
    
     private void saveHandleInState(final long checkpointId, final long timestamp) throws Exception {
                PendingCheckpoint pendingCheckpoint =
                        new PendingCheckpoint(checkpointId, subtaskIdx, timestamp, handle);
                    // 把检查点id先放到   pendingCheckpoints本地变量中 
                    pendingCheckpoints.add(pendingCheckpoint);
            }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18

    其实接收检查点完成的通知:

    public void notifyCheckpointComplete(long checkpointId) throws Exception {
            super.notifyCheckpointComplete(checkpointId);
    
            synchronized (pendingCheckpoints) {
                Iterator<PendingCheckpoint> pendingCheckpointIt = pendingCheckpoints.iterator();
                while (pendingCheckpointIt.hasNext()) {
    
                    PendingCheckpoint pendingCheckpoint = pendingCheckpointIt.next();
    
                    long pastCheckpointId = pendingCheckpoint.checkpointId;
                    int subtaskId = pendingCheckpoint.subtaskId;
                    long timestamp = pendingCheckpoint.timestamp;
                    StreamStateHandle streamHandle = pendingCheckpoint.stateHandle;
                    //把历史的+当前的还没有成功提交的检查点id对应的事务,重新调用sendValue方法并提交对应检查点的事务
                    if (pastCheckpointId <= checkpointId) {
                        try {
                        // 历史的或者当前的事务未提交
                            if (!committer.isCheckpointCommitted(subtaskId, pastCheckpointId)) {
                                try (FSDataInputStream in = streamHandle.openInputStream()) {
                                // 调用sendValue方法写数据
                                    boolean success =
                                            sendValues(
                                                    new ReusingMutableToRegularIteratorWrapper<>(
                                                            new InputViewIterator<>(
                                                                    new DataInputViewStreamWrapper(in),
                                                                    serializer),
                                                            serializer),
                                                    pastCheckpointId,
                                                    timestamp);
                                    if (success) {
                                       //提交对应检查点对应的事务
                                        committer.commitCheckpoint(subtaskId, pastCheckpointId);
                                        streamHandle.discardState();
                                        pendingCheckpointIt.remove();
                                    }
                                }
                            } else {
                                streamHandle.discardState();
                                pendingCheckpointIt.remove();
                            }
                        } catch (Exception e) {
                            // we have to break here to prevent a new (later) checkpoint
                            // from being committed before this one
                            LOG.error("Could not commit checkpoint.", e);
                            break;
                        }
                    }
                }
            }
        }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50

    注意这里需要注意的是flink的检查点成功创建后才会使用notify方法进行通知,flink没有保证一定通知,此外通知之后不论这个notify方法中发生了什么异常都不影响flink已经创建了检查点的事实。
    对应到我们这个例子,你就会发现在notify方法中有需要把历史检查点已经创建成功但是对应的事务没有提交的事务重新调用一次sendValue方法和提交对应检查点的事务,也就是说不是每一次检查点都能成功的提交事务,如果事务没有提交成功,等待下一次检查点的通知即可,下一个检查点的通知会把历史的检查点重新检测一次.

  • 相关阅读:
    [计算机提升] 系统及用户操作
    【PyQt】12-滑块、计数控件
    凡尔赛天花板:“毕业两年月薪才35K,真是没出息啊~~”
    高德地图 JS API用于绘画船舶轨迹
    剑指 Offer 56 数组中数字出现的次数(异或)
    kafka分区迁移失败任务的处理
    visual studio开发过程中常见操作
    Postman之Newman命令行运行脚本生成HTML报告
    论文翻译:多延迟块频域自适应滤波器
    【附源码】计算机毕业设计SSM社区老人健康服务跟踪系统
  • 原文地址:https://blog.csdn.net/lixia0417mul2/article/details/133968634