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 2022/03/07 09:42:38 UTC

[GitHub] [flink] hehuiyuan opened a new pull request #18993: use later trigger for delay window when laterTrigger is not null

hehuiyuan opened a new pull request #18993:
URL: https://github.com/apache/flink/pull/18993


   
   ## What is the purpose of the change
   
   When a  record arrived and the  window is not exist,  it will  emit the window result  immediately.
   
   `        if (triggerTime(window) <= ctx.getCurrentWatermark()) {
                       // we are in the late phase
   
                       // if there is no late trigger then we fire on every late element
                       // This also covers the case of recovery after a failure
                       // where the currentWatermark will be Long.MIN_VALUE
                       return true;
   }`
   
   I think it can use lateTrigger, if user set "table.exec.emit.late-fire.delay".
   
   
   
   


-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] flinkbot edited a comment on pull request #18993: [FLINK-26565][TABLE][TRIGGER]use later trigger for delay window when laterTrigger is not null

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "03be4626006f1e34c10c8c83b1a904e6bd80b73f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32615",
       "triggerID" : "03be4626006f1e34c10c8c83b1a904e6bd80b73f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "27e11aaa18eddce327709f714cd0657911597536",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32804",
       "triggerID" : "27e11aaa18eddce327709f714cd0657911597536",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a1b2c2011f0f3340c2a68c7b4276a034acf05a78",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32988",
       "triggerID" : "a1b2c2011f0f3340c2a68c7b4276a034acf05a78",
       "triggerType" : "PUSH"
     }, {
       "hash" : "bd1444c918e30cab461e341adca94c0707db717b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32996",
       "triggerID" : "bd1444c918e30cab461e341adca94c0707db717b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6b2a1496c75129c75cdc8721523580aa4a207895",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33027",
       "triggerID" : "6b2a1496c75129c75cdc8721523580aa4a207895",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 6b2a1496c75129c75cdc8721523580aa4a207895 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33027) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@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.

To unsubscribe, e-mail: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] flinkbot edited a comment on pull request #18993: [TABLE][TRIGGER]use later trigger for delay window when laterTrigger is not null

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "03be4626006f1e34c10c8c83b1a904e6bd80b73f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32615",
       "triggerID" : "03be4626006f1e34c10c8c83b1a904e6bd80b73f",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 03be4626006f1e34c10c8c83b1a904e6bd80b73f Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32615) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@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.

To unsubscribe, e-mail: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] flinkbot edited a comment on pull request #18993: [FLINK-26565][TABLE][TRIGGER]use later trigger for delay window when laterTrigger is not null

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "03be4626006f1e34c10c8c83b1a904e6bd80b73f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32615",
       "triggerID" : "03be4626006f1e34c10c8c83b1a904e6bd80b73f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "27e11aaa18eddce327709f714cd0657911597536",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32804",
       "triggerID" : "27e11aaa18eddce327709f714cd0657911597536",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a1b2c2011f0f3340c2a68c7b4276a034acf05a78",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32988",
       "triggerID" : "a1b2c2011f0f3340c2a68c7b4276a034acf05a78",
       "triggerType" : "PUSH"
     }, {
       "hash" : "bd1444c918e30cab461e341adca94c0707db717b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32996",
       "triggerID" : "bd1444c918e30cab461e341adca94c0707db717b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6b2a1496c75129c75cdc8721523580aa4a207895",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33027",
       "triggerID" : "6b2a1496c75129c75cdc8721523580aa4a207895",
       "triggerType" : "PUSH"
     }, {
       "hash" : "15098494c9e399f505ab0e9ea6b9b552afc38728",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33110",
       "triggerID" : "15098494c9e399f505ab0e9ea6b9b552afc38728",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 15098494c9e399f505ab0e9ea6b9b552afc38728 Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33110) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@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.

To unsubscribe, e-mail: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] flinkbot edited a comment on pull request #18993: [FLINK-26565][TABLE][TRIGGER]use later trigger for delay window when laterTrigger is not null

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "03be4626006f1e34c10c8c83b1a904e6bd80b73f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32615",
       "triggerID" : "03be4626006f1e34c10c8c83b1a904e6bd80b73f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "27e11aaa18eddce327709f714cd0657911597536",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32804",
       "triggerID" : "27e11aaa18eddce327709f714cd0657911597536",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a1b2c2011f0f3340c2a68c7b4276a034acf05a78",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32988",
       "triggerID" : "a1b2c2011f0f3340c2a68c7b4276a034acf05a78",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7ea7a64deb7c48f1587635e3996335f25c61e92c",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "7ea7a64deb7c48f1587635e3996335f25c61e92c",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a1b2c2011f0f3340c2a68c7b4276a034acf05a78 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32988) 
   * 7ea7a64deb7c48f1587635e3996335f25c61e92c UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@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.

To unsubscribe, e-mail: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] flinkbot commented on pull request #18993: [TABLE][TRIGGER]use later trigger for delay window when laterTrigger is not null

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "03be4626006f1e34c10c8c83b1a904e6bd80b73f",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "03be4626006f1e34c10c8c83b1a904e6bd80b73f",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 03be4626006f1e34c10c8c83b1a904e6bd80b73f UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@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.

To unsubscribe, e-mail: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] flinkbot edited a comment on pull request #18993: [TABLE][TRIGGER]use later trigger for delay window when laterTrigger is not null

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "03be4626006f1e34c10c8c83b1a904e6bd80b73f",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32615",
       "triggerID" : "03be4626006f1e34c10c8c83b1a904e6bd80b73f",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 03be4626006f1e34c10c8c83b1a904e6bd80b73f Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32615) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@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.

To unsubscribe, e-mail: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] hehuiyuan commented on pull request #18993: [FLINK-26565][TABLE][TRIGGER]use later trigger for delay window when laterTrigger is not null

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


   Hi @wuchong , take  a look when you are free.


-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] flinkbot edited a comment on pull request #18993: [FLINK-26565][TABLE][TRIGGER]use later trigger for delay window when laterTrigger is not null

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "03be4626006f1e34c10c8c83b1a904e6bd80b73f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32615",
       "triggerID" : "03be4626006f1e34c10c8c83b1a904e6bd80b73f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "27e11aaa18eddce327709f714cd0657911597536",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32804",
       "triggerID" : "27e11aaa18eddce327709f714cd0657911597536",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a1b2c2011f0f3340c2a68c7b4276a034acf05a78",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "a1b2c2011f0f3340c2a68c7b4276a034acf05a78",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 27e11aaa18eddce327709f714cd0657911597536 Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32804) 
   * a1b2c2011f0f3340c2a68c7b4276a034acf05a78 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@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.

To unsubscribe, e-mail: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] flinkbot edited a comment on pull request #18993: [FLINK-26565][TABLE][TRIGGER]use later trigger for delay window when laterTrigger is not null

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "03be4626006f1e34c10c8c83b1a904e6bd80b73f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32615",
       "triggerID" : "03be4626006f1e34c10c8c83b1a904e6bd80b73f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "27e11aaa18eddce327709f714cd0657911597536",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32804",
       "triggerID" : "27e11aaa18eddce327709f714cd0657911597536",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a1b2c2011f0f3340c2a68c7b4276a034acf05a78",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32988",
       "triggerID" : "a1b2c2011f0f3340c2a68c7b4276a034acf05a78",
       "triggerType" : "PUSH"
     }, {
       "hash" : "bd1444c918e30cab461e341adca94c0707db717b",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32996",
       "triggerID" : "bd1444c918e30cab461e341adca94c0707db717b",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a1b2c2011f0f3340c2a68c7b4276a034acf05a78 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32988) 
   * bd1444c918e30cab461e341adca94c0707db717b Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32996) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@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.

To unsubscribe, e-mail: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] flinkbot edited a comment on pull request #18993: [FLINK-26565][TABLE][TRIGGER]use later trigger for delay window when laterTrigger is not null

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "03be4626006f1e34c10c8c83b1a904e6bd80b73f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32615",
       "triggerID" : "03be4626006f1e34c10c8c83b1a904e6bd80b73f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "27e11aaa18eddce327709f714cd0657911597536",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32804",
       "triggerID" : "27e11aaa18eddce327709f714cd0657911597536",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 03be4626006f1e34c10c8c83b1a904e6bd80b73f Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32615) 
   * 27e11aaa18eddce327709f714cd0657911597536 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32804) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@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.

To unsubscribe, e-mail: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] flinkbot edited a comment on pull request #18993: [FLINK-26565][TABLE][TRIGGER]use later trigger for delay window when laterTrigger is not null

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "03be4626006f1e34c10c8c83b1a904e6bd80b73f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32615",
       "triggerID" : "03be4626006f1e34c10c8c83b1a904e6bd80b73f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "27e11aaa18eddce327709f714cd0657911597536",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32804",
       "triggerID" : "27e11aaa18eddce327709f714cd0657911597536",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 27e11aaa18eddce327709f714cd0657911597536 Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32804) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@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.

To unsubscribe, e-mail: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] flinkbot edited a comment on pull request #18993: [FLINK-26565][TABLE][TRIGGER]use later trigger for delay window when laterTrigger is not null

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "03be4626006f1e34c10c8c83b1a904e6bd80b73f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32615",
       "triggerID" : "03be4626006f1e34c10c8c83b1a904e6bd80b73f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "27e11aaa18eddce327709f714cd0657911597536",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32804",
       "triggerID" : "27e11aaa18eddce327709f714cd0657911597536",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a1b2c2011f0f3340c2a68c7b4276a034acf05a78",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32988",
       "triggerID" : "a1b2c2011f0f3340c2a68c7b4276a034acf05a78",
       "triggerType" : "PUSH"
     }, {
       "hash" : "bd1444c918e30cab461e341adca94c0707db717b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32996",
       "triggerID" : "bd1444c918e30cab461e341adca94c0707db717b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6b2a1496c75129c75cdc8721523580aa4a207895",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33027",
       "triggerID" : "6b2a1496c75129c75cdc8721523580aa4a207895",
       "triggerType" : "PUSH"
     }, {
       "hash" : "15098494c9e399f505ab0e9ea6b9b552afc38728",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33110",
       "triggerID" : "15098494c9e399f505ab0e9ea6b9b552afc38728",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 6b2a1496c75129c75cdc8721523580aa4a207895 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33027) 
   * 15098494c9e399f505ab0e9ea6b9b552afc38728 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33110) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@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.

To unsubscribe, e-mail: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] flinkbot edited a comment on pull request #18993: [FLINK-26565][TABLE][TRIGGER]use later trigger for delay window when laterTrigger is not null

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "03be4626006f1e34c10c8c83b1a904e6bd80b73f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32615",
       "triggerID" : "03be4626006f1e34c10c8c83b1a904e6bd80b73f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "27e11aaa18eddce327709f714cd0657911597536",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32804",
       "triggerID" : "27e11aaa18eddce327709f714cd0657911597536",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a1b2c2011f0f3340c2a68c7b4276a034acf05a78",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32988",
       "triggerID" : "a1b2c2011f0f3340c2a68c7b4276a034acf05a78",
       "triggerType" : "PUSH"
     }, {
       "hash" : "bd1444c918e30cab461e341adca94c0707db717b",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32996",
       "triggerID" : "bd1444c918e30cab461e341adca94c0707db717b",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * bd1444c918e30cab461e341adca94c0707db717b Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32996) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@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.

To unsubscribe, e-mail: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] flinkbot edited a comment on pull request #18993: [FLINK-26565][TABLE][TRIGGER]use later trigger for delay window when laterTrigger is not null

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "03be4626006f1e34c10c8c83b1a904e6bd80b73f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32615",
       "triggerID" : "03be4626006f1e34c10c8c83b1a904e6bd80b73f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "27e11aaa18eddce327709f714cd0657911597536",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "27e11aaa18eddce327709f714cd0657911597536",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 03be4626006f1e34c10c8c83b1a904e6bd80b73f Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32615) 
   * 27e11aaa18eddce327709f714cd0657911597536 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@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.

To unsubscribe, e-mail: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] flinkbot edited a comment on pull request #18993: [FLINK-26565][TABLE][TRIGGER]use later trigger for delay window when laterTrigger is not null

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "03be4626006f1e34c10c8c83b1a904e6bd80b73f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32615",
       "triggerID" : "03be4626006f1e34c10c8c83b1a904e6bd80b73f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "27e11aaa18eddce327709f714cd0657911597536",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32804",
       "triggerID" : "27e11aaa18eddce327709f714cd0657911597536",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a1b2c2011f0f3340c2a68c7b4276a034acf05a78",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32988",
       "triggerID" : "a1b2c2011f0f3340c2a68c7b4276a034acf05a78",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 27e11aaa18eddce327709f714cd0657911597536 Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32804) 
   * a1b2c2011f0f3340c2a68c7b4276a034acf05a78 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32988) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@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.

To unsubscribe, e-mail: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] flinkbot edited a comment on pull request #18993: [FLINK-26565][TABLE][TRIGGER]use later trigger for delay window when laterTrigger is not null

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "03be4626006f1e34c10c8c83b1a904e6bd80b73f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32615",
       "triggerID" : "03be4626006f1e34c10c8c83b1a904e6bd80b73f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "27e11aaa18eddce327709f714cd0657911597536",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32804",
       "triggerID" : "27e11aaa18eddce327709f714cd0657911597536",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a1b2c2011f0f3340c2a68c7b4276a034acf05a78",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32988",
       "triggerID" : "a1b2c2011f0f3340c2a68c7b4276a034acf05a78",
       "triggerType" : "PUSH"
     }, {
       "hash" : "bd1444c918e30cab461e341adca94c0707db717b",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32996",
       "triggerID" : "bd1444c918e30cab461e341adca94c0707db717b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6b2a1496c75129c75cdc8721523580aa4a207895",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "6b2a1496c75129c75cdc8721523580aa4a207895",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * bd1444c918e30cab461e341adca94c0707db717b Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32996) 
   * 6b2a1496c75129c75cdc8721523580aa4a207895 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@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.

To unsubscribe, e-mail: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] flinkbot edited a comment on pull request #18993: [FLINK-26565][TABLE][TRIGGER]use later trigger for delay window when laterTrigger is not null

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "03be4626006f1e34c10c8c83b1a904e6bd80b73f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32615",
       "triggerID" : "03be4626006f1e34c10c8c83b1a904e6bd80b73f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "27e11aaa18eddce327709f714cd0657911597536",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32804",
       "triggerID" : "27e11aaa18eddce327709f714cd0657911597536",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a1b2c2011f0f3340c2a68c7b4276a034acf05a78",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32988",
       "triggerID" : "a1b2c2011f0f3340c2a68c7b4276a034acf05a78",
       "triggerType" : "PUSH"
     }, {
       "hash" : "bd1444c918e30cab461e341adca94c0707db717b",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32996",
       "triggerID" : "bd1444c918e30cab461e341adca94c0707db717b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6b2a1496c75129c75cdc8721523580aa4a207895",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33027",
       "triggerID" : "6b2a1496c75129c75cdc8721523580aa4a207895",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * bd1444c918e30cab461e341adca94c0707db717b Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32996) 
   * 6b2a1496c75129c75cdc8721523580aa4a207895 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33027) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@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.

To unsubscribe, e-mail: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] flinkbot edited a comment on pull request #18993: [FLINK-26565][TABLE][TRIGGER]use later trigger for delay window when laterTrigger is not null

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "03be4626006f1e34c10c8c83b1a904e6bd80b73f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32615",
       "triggerID" : "03be4626006f1e34c10c8c83b1a904e6bd80b73f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "27e11aaa18eddce327709f714cd0657911597536",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32804",
       "triggerID" : "27e11aaa18eddce327709f714cd0657911597536",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a1b2c2011f0f3340c2a68c7b4276a034acf05a78",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32988",
       "triggerID" : "a1b2c2011f0f3340c2a68c7b4276a034acf05a78",
       "triggerType" : "PUSH"
     }, {
       "hash" : "bd1444c918e30cab461e341adca94c0707db717b",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "bd1444c918e30cab461e341adca94c0707db717b",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a1b2c2011f0f3340c2a68c7b4276a034acf05a78 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32988) 
   * bd1444c918e30cab461e341adca94c0707db717b UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@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.

To unsubscribe, e-mail: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] flinkbot edited a comment on pull request #18993: [FLINK-26565][TABLE][TRIGGER]use later trigger for delay window when laterTrigger is not null

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "03be4626006f1e34c10c8c83b1a904e6bd80b73f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32615",
       "triggerID" : "03be4626006f1e34c10c8c83b1a904e6bd80b73f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "27e11aaa18eddce327709f714cd0657911597536",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32804",
       "triggerID" : "27e11aaa18eddce327709f714cd0657911597536",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a1b2c2011f0f3340c2a68c7b4276a034acf05a78",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32988",
       "triggerID" : "a1b2c2011f0f3340c2a68c7b4276a034acf05a78",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a1b2c2011f0f3340c2a68c7b4276a034acf05a78 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32988) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@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.

To unsubscribe, e-mail: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] flinkbot edited a comment on pull request #18993: [FLINK-26565][TABLE][TRIGGER]use later trigger for delay window when laterTrigger is not null

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "03be4626006f1e34c10c8c83b1a904e6bd80b73f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32615",
       "triggerID" : "03be4626006f1e34c10c8c83b1a904e6bd80b73f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "27e11aaa18eddce327709f714cd0657911597536",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32804",
       "triggerID" : "27e11aaa18eddce327709f714cd0657911597536",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a1b2c2011f0f3340c2a68c7b4276a034acf05a78",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32988",
       "triggerID" : "a1b2c2011f0f3340c2a68c7b4276a034acf05a78",
       "triggerType" : "PUSH"
     }, {
       "hash" : "bd1444c918e30cab461e341adca94c0707db717b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32996",
       "triggerID" : "bd1444c918e30cab461e341adca94c0707db717b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6b2a1496c75129c75cdc8721523580aa4a207895",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33027",
       "triggerID" : "6b2a1496c75129c75cdc8721523580aa4a207895",
       "triggerType" : "PUSH"
     }, {
       "hash" : "15098494c9e399f505ab0e9ea6b9b552afc38728",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "15098494c9e399f505ab0e9ea6b9b552afc38728",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 6b2a1496c75129c75cdc8721523580aa4a207895 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33027) 
   * 15098494c9e399f505ab0e9ea6b9b552afc38728 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@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.

To unsubscribe, e-mail: issues-unsubscribe@flink.apache.org

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