You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by GitBox <gi...@apache.org> on 2020/05/08 05:32:10 UTC

[GitHub] [flink] wsry opened a new pull request #12027: [FLINK-17564][checkpointing] Fix buffer disorder issue of RemoteInputChannel for unaligned checkpoint

wsry opened a new pull request #12027:
URL: https://github.com/apache/flink/pull/12027


   ## What is the purpose of the change
   
   For unaligned checkpoint, when checkpointing the inflight data of incoming channel, both task thread and Netty thread may add data to the channel state writer. More specifically, the task thread will first request inflight buffers from the input channel and add the buffers to the channel state writer, and then the Netty thread will add the following up buffers (if any) to the channel state writer. The buffer adding of task thread and Netty thread is not synchronized so the Netty thread may add buffers before the task thread which leads to disorder of the data and corruption of the data stream.
   This PR tries to fix the problem.
   
   
   ## Brief change log
   
     - Make requesting and adding of  inflight buffer of task thread happen in synchronized block to avoid race condition.
   
   
   ## Verifying this change
   
   This change is already covered by existing tests.
   
   ## Does this pull request potentially affect one of the following parts:
   
     - Dependencies (does it add or upgrade a dependency): (yes / **no**)
     - The public API, i.e., is any changed class annotated with `@Public(Evolving)`: (yes / **no**)
     - The serializers: (yes / **no** / don't know)
     - The runtime per-record code paths (performance sensitive): (yes / **no** / don't know)
     - Anything that affects deployment or recovery: JobManager (and its components), Checkpointing, Kubernetes/Yarn/Mesos, ZooKeeper: (**yes** / no / don't know)
     - The S3 file system connector: (yes / **no** / don't know)
   
   ## Documentation
   
     - Does this pull request introduce a new feature? (yes / **no**)
     - If yes, how is the feature documented? (**not applicable** / docs / JavaDocs / not documented)
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] pnowojski commented on a change in pull request #12027: [FLINK-17564][checkpointing] Fix buffer disorder issue of RemoteInputChannel for unaligned checkpoint

Posted by GitBox <gi...@apache.org>.
pnowojski commented on a change in pull request #12027:
URL: https://github.com/apache/flink/pull/12027#discussion_r422484279



##########
File path: flink-runtime/src/main/java/org/apache/flink/runtime/io/network/partition/consumer/RemoteInputChannel.java
##########
@@ -216,7 +220,7 @@ void retriggerSubpartitionRequest(int subpartitionIndex) throws IOException {
 	}
 
 	@Override
-	public List<Buffer> requestInflightBuffers(long checkpointId) throws IOException {
+	public void requestInflightBuffers(long checkpointId, ChannelStateWriter channelStateWriter) throws IOException {

Review comment:
       rename all of the methods `requestInflightBuffers` -> `spillInflightBuffers`? As this method is no longer returning/requesting but spilling inflight buffers?




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] wsry commented on pull request #12027: [FLINK-17564][checkpointing] Fix buffer disorder issue of RemoteInputChannel for unaligned checkpoint

Posted by GitBox <gi...@apache.org>.
wsry commented on pull request #12027:
URL: https://github.com/apache/flink/pull/12027#issuecomment-626135939


   @pnowojski Could you please also take a look at this fix?


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #12027: [FLINK-17564][checkpointing] Fix buffer disorder issue of RemoteInputChannel for unaligned checkpoint

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #12027:
URL: https://github.com/apache/flink/pull/12027#issuecomment-625644178


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "0e3ac198efdf799e34ffc78d2c2e5996d9e2d326",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=793",
       "triggerID" : "0e3ac198efdf799e34ffc78d2c2e5996d9e2d326",
       "triggerType" : "PUSH"
     }, {
       "hash" : "42f0a0401969ac05f42aa592a39c2431c9f3aed4",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=798",
       "triggerID" : "42f0a0401969ac05f42aa592a39c2431c9f3aed4",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 42f0a0401969ac05f42aa592a39c2431c9f3aed4 Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=798) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] wsry commented on pull request #12027: [FLINK-17564][checkpointing] Fix buffer disorder issue of RemoteInputChannel for unaligned checkpoint

Posted by GitBox <gi...@apache.org>.
wsry commented on pull request #12027:
URL: https://github.com/apache/flink/pull/12027#issuecomment-626267286


   @flinkbot run azure


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #12027: [FLINK-17564][checkpointing] Fix buffer disorder issue of RemoteInputChannel for unaligned checkpoint

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #12027:
URL: https://github.com/apache/flink/pull/12027#issuecomment-625644178


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "0e3ac198efdf799e34ffc78d2c2e5996d9e2d326",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=793",
       "triggerID" : "0e3ac198efdf799e34ffc78d2c2e5996d9e2d326",
       "triggerType" : "PUSH"
     }, {
       "hash" : "42f0a0401969ac05f42aa592a39c2431c9f3aed4",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "42f0a0401969ac05f42aa592a39c2431c9f3aed4",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 0e3ac198efdf799e34ffc78d2c2e5996d9e2d326 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=793) 
   * 42f0a0401969ac05f42aa592a39c2431c9f3aed4 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #12027: [FLINK-17564][checkpointing] Fix buffer disorder issue of RemoteInputChannel for unaligned checkpoint

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #12027:
URL: https://github.com/apache/flink/pull/12027#issuecomment-625644178


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "0e3ac198efdf799e34ffc78d2c2e5996d9e2d326",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=793",
       "triggerID" : "0e3ac198efdf799e34ffc78d2c2e5996d9e2d326",
       "triggerType" : "PUSH"
     }, {
       "hash" : "42f0a0401969ac05f42aa592a39c2431c9f3aed4",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=798",
       "triggerID" : "42f0a0401969ac05f42aa592a39c2431c9f3aed4",
       "triggerType" : "PUSH"
     }, {
       "hash" : "914db8df1506edc8bd9dea08f1d35208d077e850",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=876",
       "triggerID" : "914db8df1506edc8bd9dea08f1d35208d077e850",
       "triggerType" : "PUSH"
     }, {
       "hash" : "39c357488ab03b5771bad5e1d135a7109d4efcca",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=882",
       "triggerID" : "39c357488ab03b5771bad5e1d135a7109d4efcca",
       "triggerType" : "PUSH"
     }, {
       "hash" : "68d8c93c0bf932a53689325005a9cdd79b2cdbed",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=896",
       "triggerID" : "68d8c93c0bf932a53689325005a9cdd79b2cdbed",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a7bc0776ec4eb009b23ca26e5282f7fafdd13a6b",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=906",
       "triggerID" : "a7bc0776ec4eb009b23ca26e5282f7fafdd13a6b",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a7bc0776ec4eb009b23ca26e5282f7fafdd13a6b Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=906) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #12027: [FLINK-17564][checkpointing] Fix buffer disorder issue of RemoteInputChannel for unaligned checkpoint

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #12027:
URL: https://github.com/apache/flink/pull/12027#issuecomment-625644178


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "0e3ac198efdf799e34ffc78d2c2e5996d9e2d326",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=793",
       "triggerID" : "0e3ac198efdf799e34ffc78d2c2e5996d9e2d326",
       "triggerType" : "PUSH"
     }, {
       "hash" : "42f0a0401969ac05f42aa592a39c2431c9f3aed4",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=798",
       "triggerID" : "42f0a0401969ac05f42aa592a39c2431c9f3aed4",
       "triggerType" : "PUSH"
     }, {
       "hash" : "914db8df1506edc8bd9dea08f1d35208d077e850",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=876",
       "triggerID" : "914db8df1506edc8bd9dea08f1d35208d077e850",
       "triggerType" : "PUSH"
     }, {
       "hash" : "39c357488ab03b5771bad5e1d135a7109d4efcca",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=882",
       "triggerID" : "39c357488ab03b5771bad5e1d135a7109d4efcca",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 39c357488ab03b5771bad5e1d135a7109d4efcca Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=882) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #12027: [FLINK-17564][checkpointing] Fix buffer disorder issue of RemoteInputChannel for unaligned checkpoint

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #12027:
URL: https://github.com/apache/flink/pull/12027#issuecomment-625644178


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "0e3ac198efdf799e34ffc78d2c2e5996d9e2d326",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=793",
       "triggerID" : "0e3ac198efdf799e34ffc78d2c2e5996d9e2d326",
       "triggerType" : "PUSH"
     }, {
       "hash" : "42f0a0401969ac05f42aa592a39c2431c9f3aed4",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=798",
       "triggerID" : "42f0a0401969ac05f42aa592a39c2431c9f3aed4",
       "triggerType" : "PUSH"
     }, {
       "hash" : "914db8df1506edc8bd9dea08f1d35208d077e850",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=876",
       "triggerID" : "914db8df1506edc8bd9dea08f1d35208d077e850",
       "triggerType" : "PUSH"
     }, {
       "hash" : "39c357488ab03b5771bad5e1d135a7109d4efcca",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "39c357488ab03b5771bad5e1d135a7109d4efcca",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 42f0a0401969ac05f42aa592a39c2431c9f3aed4 Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=798) 
   * 914db8df1506edc8bd9dea08f1d35208d077e850 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=876) 
   * 39c357488ab03b5771bad5e1d135a7109d4efcca UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #12027: [FLINK-17564][checkpointing] Fix buffer disorder issue of RemoteInputChannel for unaligned checkpoint

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #12027:
URL: https://github.com/apache/flink/pull/12027#issuecomment-625644178


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "0e3ac198efdf799e34ffc78d2c2e5996d9e2d326",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=793",
       "triggerID" : "0e3ac198efdf799e34ffc78d2c2e5996d9e2d326",
       "triggerType" : "PUSH"
     }, {
       "hash" : "42f0a0401969ac05f42aa592a39c2431c9f3aed4",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=798",
       "triggerID" : "42f0a0401969ac05f42aa592a39c2431c9f3aed4",
       "triggerType" : "PUSH"
     }, {
       "hash" : "914db8df1506edc8bd9dea08f1d35208d077e850",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "914db8df1506edc8bd9dea08f1d35208d077e850",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 42f0a0401969ac05f42aa592a39c2431c9f3aed4 Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=798) 
   * 914db8df1506edc8bd9dea08f1d35208d077e850 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #12027: [FLINK-17564][checkpointing] Fix buffer disorder issue of RemoteInputChannel for unaligned checkpoint

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #12027:
URL: https://github.com/apache/flink/pull/12027#issuecomment-625644178


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "0e3ac198efdf799e34ffc78d2c2e5996d9e2d326",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=793",
       "triggerID" : "0e3ac198efdf799e34ffc78d2c2e5996d9e2d326",
       "triggerType" : "PUSH"
     }, {
       "hash" : "42f0a0401969ac05f42aa592a39c2431c9f3aed4",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=798",
       "triggerID" : "42f0a0401969ac05f42aa592a39c2431c9f3aed4",
       "triggerType" : "PUSH"
     }, {
       "hash" : "914db8df1506edc8bd9dea08f1d35208d077e850",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=876",
       "triggerID" : "914db8df1506edc8bd9dea08f1d35208d077e850",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 42f0a0401969ac05f42aa592a39c2431c9f3aed4 Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=798) 
   * 914db8df1506edc8bd9dea08f1d35208d077e850 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=876) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] wsry commented on a change in pull request #12027: [FLINK-17564][checkpointing] Fix buffer disorder issue of RemoteInputChannel for unaligned checkpoint

Posted by GitBox <gi...@apache.org>.
wsry commented on a change in pull request #12027:
URL: https://github.com/apache/flink/pull/12027#discussion_r422492233



##########
File path: flink-runtime/src/main/java/org/apache/flink/runtime/io/network/partition/consumer/RemoteInputChannel.java
##########
@@ -216,7 +220,7 @@ void retriggerSubpartitionRequest(int subpartitionIndex) throws IOException {
 	}
 
 	@Override
-	public List<Buffer> requestInflightBuffers(long checkpointId) throws IOException {
+	public void requestInflightBuffers(long checkpointId, ChannelStateWriter channelStateWriter) throws IOException {

Review comment:
       Thank for the review. I have renamed the method ```requestInflightBuffers``` to ```spillInflightBuffers```.




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #12027: [FLINK-17564][checkpointing] Fix buffer disorder issue of RemoteInputChannel for unaligned checkpoint

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #12027:
URL: https://github.com/apache/flink/pull/12027#issuecomment-625644178


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "0e3ac198efdf799e34ffc78d2c2e5996d9e2d326",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=793",
       "triggerID" : "0e3ac198efdf799e34ffc78d2c2e5996d9e2d326",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 0e3ac198efdf799e34ffc78d2c2e5996d9e2d326 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=793) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #12027: [FLINK-17564][checkpointing] Fix buffer disorder issue of RemoteInputChannel for unaligned checkpoint

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #12027:
URL: https://github.com/apache/flink/pull/12027#issuecomment-625644178


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "0e3ac198efdf799e34ffc78d2c2e5996d9e2d326",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=793",
       "triggerID" : "0e3ac198efdf799e34ffc78d2c2e5996d9e2d326",
       "triggerType" : "PUSH"
     }, {
       "hash" : "42f0a0401969ac05f42aa592a39c2431c9f3aed4",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=798",
       "triggerID" : "42f0a0401969ac05f42aa592a39c2431c9f3aed4",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 0e3ac198efdf799e34ffc78d2c2e5996d9e2d326 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=793) 
   * 42f0a0401969ac05f42aa592a39c2431c9f3aed4 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=798) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #12027: [FLINK-17564][checkpointing] Fix buffer disorder issue of RemoteInputChannel for unaligned checkpoint

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #12027:
URL: https://github.com/apache/flink/pull/12027#issuecomment-625644178


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "0e3ac198efdf799e34ffc78d2c2e5996d9e2d326",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=793",
       "triggerID" : "0e3ac198efdf799e34ffc78d2c2e5996d9e2d326",
       "triggerType" : "PUSH"
     }, {
       "hash" : "42f0a0401969ac05f42aa592a39c2431c9f3aed4",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=798",
       "triggerID" : "42f0a0401969ac05f42aa592a39c2431c9f3aed4",
       "triggerType" : "PUSH"
     }, {
       "hash" : "914db8df1506edc8bd9dea08f1d35208d077e850",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=876",
       "triggerID" : "914db8df1506edc8bd9dea08f1d35208d077e850",
       "triggerType" : "PUSH"
     }, {
       "hash" : "39c357488ab03b5771bad5e1d135a7109d4efcca",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=882",
       "triggerID" : "39c357488ab03b5771bad5e1d135a7109d4efcca",
       "triggerType" : "PUSH"
     }, {
       "hash" : "68d8c93c0bf932a53689325005a9cdd79b2cdbed",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "68d8c93c0bf932a53689325005a9cdd79b2cdbed",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 39c357488ab03b5771bad5e1d135a7109d4efcca Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=882) 
   * 68d8c93c0bf932a53689325005a9cdd79b2cdbed UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #12027: [FLINK-17564][checkpointing] Fix buffer disorder issue of RemoteInputChannel for unaligned checkpoint

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #12027:
URL: https://github.com/apache/flink/pull/12027#issuecomment-625644178


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "0e3ac198efdf799e34ffc78d2c2e5996d9e2d326",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=793",
       "triggerID" : "0e3ac198efdf799e34ffc78d2c2e5996d9e2d326",
       "triggerType" : "PUSH"
     }, {
       "hash" : "42f0a0401969ac05f42aa592a39c2431c9f3aed4",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=798",
       "triggerID" : "42f0a0401969ac05f42aa592a39c2431c9f3aed4",
       "triggerType" : "PUSH"
     }, {
       "hash" : "914db8df1506edc8bd9dea08f1d35208d077e850",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=876",
       "triggerID" : "914db8df1506edc8bd9dea08f1d35208d077e850",
       "triggerType" : "PUSH"
     }, {
       "hash" : "39c357488ab03b5771bad5e1d135a7109d4efcca",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=882",
       "triggerID" : "39c357488ab03b5771bad5e1d135a7109d4efcca",
       "triggerType" : "PUSH"
     }, {
       "hash" : "68d8c93c0bf932a53689325005a9cdd79b2cdbed",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=896",
       "triggerID" : "68d8c93c0bf932a53689325005a9cdd79b2cdbed",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 39c357488ab03b5771bad5e1d135a7109d4efcca Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=882) 
   * 68d8c93c0bf932a53689325005a9cdd79b2cdbed Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=896) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #12027: [FLINK-17564][checkpointing] Fix buffer disorder issue of RemoteInputChannel for unaligned checkpoint

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #12027:
URL: https://github.com/apache/flink/pull/12027#issuecomment-625644178


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "0e3ac198efdf799e34ffc78d2c2e5996d9e2d326",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=793",
       "triggerID" : "0e3ac198efdf799e34ffc78d2c2e5996d9e2d326",
       "triggerType" : "PUSH"
     }, {
       "hash" : "42f0a0401969ac05f42aa592a39c2431c9f3aed4",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=798",
       "triggerID" : "42f0a0401969ac05f42aa592a39c2431c9f3aed4",
       "triggerType" : "PUSH"
     }, {
       "hash" : "914db8df1506edc8bd9dea08f1d35208d077e850",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=876",
       "triggerID" : "914db8df1506edc8bd9dea08f1d35208d077e850",
       "triggerType" : "PUSH"
     }, {
       "hash" : "39c357488ab03b5771bad5e1d135a7109d4efcca",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=882",
       "triggerID" : "39c357488ab03b5771bad5e1d135a7109d4efcca",
       "triggerType" : "PUSH"
     }, {
       "hash" : "68d8c93c0bf932a53689325005a9cdd79b2cdbed",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=896",
       "triggerID" : "68d8c93c0bf932a53689325005a9cdd79b2cdbed",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 68d8c93c0bf932a53689325005a9cdd79b2cdbed Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=896) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #12027: [FLINK-17564][checkpointing] Fix buffer disorder issue of RemoteInputChannel for unaligned checkpoint

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #12027:
URL: https://github.com/apache/flink/pull/12027#issuecomment-625644178


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "0e3ac198efdf799e34ffc78d2c2e5996d9e2d326",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=793",
       "triggerID" : "0e3ac198efdf799e34ffc78d2c2e5996d9e2d326",
       "triggerType" : "PUSH"
     }, {
       "hash" : "42f0a0401969ac05f42aa592a39c2431c9f3aed4",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=798",
       "triggerID" : "42f0a0401969ac05f42aa592a39c2431c9f3aed4",
       "triggerType" : "PUSH"
     }, {
       "hash" : "914db8df1506edc8bd9dea08f1d35208d077e850",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=876",
       "triggerID" : "914db8df1506edc8bd9dea08f1d35208d077e850",
       "triggerType" : "PUSH"
     }, {
       "hash" : "39c357488ab03b5771bad5e1d135a7109d4efcca",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=882",
       "triggerID" : "39c357488ab03b5771bad5e1d135a7109d4efcca",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 42f0a0401969ac05f42aa592a39c2431c9f3aed4 Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=798) 
   * 914db8df1506edc8bd9dea08f1d35208d077e850 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=876) 
   * 39c357488ab03b5771bad5e1d135a7109d4efcca Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=882) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] flinkbot commented on pull request #12027: [FLINK-17564][checkpointing] Fix buffer disorder issue of RemoteInputChannel for unaligned checkpoint

Posted by GitBox <gi...@apache.org>.
flinkbot commented on pull request #12027:
URL: https://github.com/apache/flink/pull/12027#issuecomment-625639653


   Thanks a lot for your contribution to the Apache Flink project. I'm the @flinkbot. I help the community
   to review your pull request. We will use this comment to track the progress of the review.
   
   
   ## Automated Checks
   Last check on commit 92a186a6082a66ae2cd0dd3ffa34f7b99a60307f (Fri May 08 05:34:20 UTC 2020)
   
   **Warnings:**
    * No documentation files were touched! Remember to keep the Flink docs up to date!
   
   
   <sub>Mention the bot in a comment to re-run the automated checks.</sub>
   ## Review Progress
   
   * ❓ 1. The [description] looks good.
   * ❓ 2. There is [consensus] that the contribution should go into to Flink.
   * ❓ 3. Needs [attention] from.
   * ❓ 4. The change fits into the overall [architecture].
   * ❓ 5. Overall code [quality] is good.
   
   Please see the [Pull Request Review Guide](https://flink.apache.org/contributing/reviewing-prs.html) for a full explanation of the review process.<details>
    The Bot is tracking the review progress through labels. Labels are applied according to the order of the review items. For consensus, approval by a Flink committer of PMC member is required <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot approve description` to approve one or more aspects (aspects: `description`, `consensus`, `architecture` and `quality`)
    - `@flinkbot approve all` to approve all aspects
    - `@flinkbot approve-until architecture` to approve everything until `architecture`
    - `@flinkbot attention @username1 [@username2 ..]` to require somebody's attention
    - `@flinkbot disapprove architecture` to remove an approval you gave earlier
   </details>


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #12027: [FLINK-17564][checkpointing] Fix buffer disorder issue of RemoteInputChannel for unaligned checkpoint

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #12027:
URL: https://github.com/apache/flink/pull/12027#issuecomment-625644178


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "0e3ac198efdf799e34ffc78d2c2e5996d9e2d326",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=793",
       "triggerID" : "0e3ac198efdf799e34ffc78d2c2e5996d9e2d326",
       "triggerType" : "PUSH"
     }, {
       "hash" : "42f0a0401969ac05f42aa592a39c2431c9f3aed4",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=798",
       "triggerID" : "42f0a0401969ac05f42aa592a39c2431c9f3aed4",
       "triggerType" : "PUSH"
     }, {
       "hash" : "914db8df1506edc8bd9dea08f1d35208d077e850",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=876",
       "triggerID" : "914db8df1506edc8bd9dea08f1d35208d077e850",
       "triggerType" : "PUSH"
     }, {
       "hash" : "39c357488ab03b5771bad5e1d135a7109d4efcca",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=882",
       "triggerID" : "39c357488ab03b5771bad5e1d135a7109d4efcca",
       "triggerType" : "PUSH"
     }, {
       "hash" : "68d8c93c0bf932a53689325005a9cdd79b2cdbed",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=896",
       "triggerID" : "68d8c93c0bf932a53689325005a9cdd79b2cdbed",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a7bc0776ec4eb009b23ca26e5282f7fafdd13a6b",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "a7bc0776ec4eb009b23ca26e5282f7fafdd13a6b",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 68d8c93c0bf932a53689325005a9cdd79b2cdbed Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=896) 
   * a7bc0776ec4eb009b23ca26e5282f7fafdd13a6b UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] flinkbot commented on pull request #12027: [FLINK-17564][checkpointing] Fix buffer disorder issue of RemoteInputChannel for unaligned checkpoint

Posted by GitBox <gi...@apache.org>.
flinkbot commented on pull request #12027:
URL: https://github.com/apache/flink/pull/12027#issuecomment-625644178


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "0e3ac198efdf799e34ffc78d2c2e5996d9e2d326",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "0e3ac198efdf799e34ffc78d2c2e5996d9e2d326",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 0e3ac198efdf799e34ffc78d2c2e5996d9e2d326 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #12027: [FLINK-17564][checkpointing] Fix buffer disorder issue of RemoteInputChannel for unaligned checkpoint

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #12027:
URL: https://github.com/apache/flink/pull/12027#issuecomment-625644178


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "0e3ac198efdf799e34ffc78d2c2e5996d9e2d326",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=793",
       "triggerID" : "0e3ac198efdf799e34ffc78d2c2e5996d9e2d326",
       "triggerType" : "PUSH"
     }, {
       "hash" : "42f0a0401969ac05f42aa592a39c2431c9f3aed4",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=798",
       "triggerID" : "42f0a0401969ac05f42aa592a39c2431c9f3aed4",
       "triggerType" : "PUSH"
     }, {
       "hash" : "914db8df1506edc8bd9dea08f1d35208d077e850",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=876",
       "triggerID" : "914db8df1506edc8bd9dea08f1d35208d077e850",
       "triggerType" : "PUSH"
     }, {
       "hash" : "39c357488ab03b5771bad5e1d135a7109d4efcca",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=882",
       "triggerID" : "39c357488ab03b5771bad5e1d135a7109d4efcca",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 914db8df1506edc8bd9dea08f1d35208d077e850 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=876) 
   * 39c357488ab03b5771bad5e1d135a7109d4efcca Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=882) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] pnowojski commented on pull request #12027: [FLINK-17564][checkpointing] Fix buffer disorder issue of RemoteInputChannel for unaligned checkpoint

Posted by GitBox <gi...@apache.org>.
pnowojski commented on pull request #12027:
URL: https://github.com/apache/flink/pull/12027#issuecomment-626298876


   Thanks @wsry merged :)


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #12027: [FLINK-17564][checkpointing] Fix buffer disorder issue of RemoteInputChannel for unaligned checkpoint

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #12027:
URL: https://github.com/apache/flink/pull/12027#issuecomment-625644178


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "0e3ac198efdf799e34ffc78d2c2e5996d9e2d326",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=793",
       "triggerID" : "0e3ac198efdf799e34ffc78d2c2e5996d9e2d326",
       "triggerType" : "PUSH"
     }, {
       "hash" : "42f0a0401969ac05f42aa592a39c2431c9f3aed4",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=798",
       "triggerID" : "42f0a0401969ac05f42aa592a39c2431c9f3aed4",
       "triggerType" : "PUSH"
     }, {
       "hash" : "914db8df1506edc8bd9dea08f1d35208d077e850",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=876",
       "triggerID" : "914db8df1506edc8bd9dea08f1d35208d077e850",
       "triggerType" : "PUSH"
     }, {
       "hash" : "39c357488ab03b5771bad5e1d135a7109d4efcca",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=882",
       "triggerID" : "39c357488ab03b5771bad5e1d135a7109d4efcca",
       "triggerType" : "PUSH"
     }, {
       "hash" : "68d8c93c0bf932a53689325005a9cdd79b2cdbed",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=896",
       "triggerID" : "68d8c93c0bf932a53689325005a9cdd79b2cdbed",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a7bc0776ec4eb009b23ca26e5282f7fafdd13a6b",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=906",
       "triggerID" : "a7bc0776ec4eb009b23ca26e5282f7fafdd13a6b",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 68d8c93c0bf932a53689325005a9cdd79b2cdbed Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=896) 
   * a7bc0776ec4eb009b23ca26e5282f7fafdd13a6b Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=906) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org