You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by "Jiayi Liao (Jira)" <ji...@apache.org> on 2020/02/05 13:42:00 UTC

[jira] [Updated] (FLINK-15923) Remove DISCARDED in TaskAcknowledgeResult

     [ https://issues.apache.org/jira/browse/FLINK-15923?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jiayi Liao updated FLINK-15923:
-------------------------------
    Description: 
{{TaskAcknowledgeResult.DISCARDED}} is returned only when the checkpoint is discarded and removed from the {{pendingCheckpoints}}. 

And the if condition in {{receiveAcknowledgeMessage}}  also ensures the checkpoint is not discarded.

{code:java}
if (checkpoint != null && !checkpoint.isDiscarded())
{code}


  was:{{TaskAcknowledgeResult.DISCARDED}} is returned only when the checkpoint is discarded and removed from the {{pendingCheckpoints}}. 


> Remove DISCARDED in TaskAcknowledgeResult
> -----------------------------------------
>
>                 Key: FLINK-15923
>                 URL: https://issues.apache.org/jira/browse/FLINK-15923
>             Project: Flink
>          Issue Type: Improvement
>          Components: Runtime / Checkpointing
>    Affects Versions: 1.9.2
>            Reporter: Jiayi Liao
>            Priority: Major
>
> {{TaskAcknowledgeResult.DISCARDED}} is returned only when the checkpoint is discarded and removed from the {{pendingCheckpoints}}. 
> And the if condition in {{receiveAcknowledgeMessage}}  also ensures the checkpoint is not discarded.
> {code:java}
> if (checkpoint != null && !checkpoint.isDiscarded())
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)