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/01/25 05:06:42 UTC

[GitHub] [flink] RocMarshal opened a new pull request #18491: [FLINK-25800][docs] Update wrong links in the datastream/execution_mode.md page.

RocMarshal opened a new pull request #18491:
URL: https://github.com/apache/flink/pull/18491


   <!--
   *Thank you very much for contributing to Apache Flink - we are happy that you want to help us improve Flink. To help the community review your contribution in the best possible way, please go through the checklist below, which will get the contribution into a shape in which it can be best reviewed.*
   
   *Please understand that we do not do this to make contributions to Flink a hassle. In order to uphold a high standard of quality for code contributions, while at the same time managing a large number of contributions, we need contributors to prepare the contributions well, and give reviewers enough contextual information for the review. Please also understand that contributions that do not follow this guide will take longer to review and thus typically be picked up with lower priority by the community.*
   
   ## Contribution Checklist
   
     - Make sure that the pull request corresponds to a [JIRA issue](https://issues.apache.org/jira/projects/FLINK/issues). Exceptions are made for typos in JavaDoc or documentation files, which need no JIRA issue.
     
     - Name the pull request in the form "[FLINK-XXXX] [component] Title of the pull request", where *FLINK-XXXX* should be replaced by the actual issue number. Skip *component* if you are unsure about which is the best component.
     Typo fixes that have no associated JIRA issue should be named following this pattern: `[hotfix] [docs] Fix typo in event time introduction` or `[hotfix] [javadocs] Expand JavaDoc for PuncuatedWatermarkGenerator`.
   
     - Fill out the template below to describe the changes contributed by the pull request. That will give reviewers the context they need to do the review.
     
     - Make sure that the change passes the automated tests, i.e., `mvn clean verify` passes. You can set up Azure Pipelines CI to do that following [this guide](https://cwiki.apache.org/confluence/display/FLINK/Azure+Pipelines#AzurePipelines-Tutorial:SettingupAzurePipelinesforaforkoftheFlinkrepository).
   
     - Each pull request should address only one issue, not mix up code from multiple issues.
     
     - Each commit in the pull request has a meaningful commit message (including the JIRA id)
   
     - Once all items of the checklist are addressed, remove the above text and this checklist, leaving only the filled out template below.
   
   
   **(The sections below can be removed for hotfixes of typos)**
   -->
   
   ## What is the purpose of the change
   
   Update wrong links in the datastream/execution_mode.md page.
   
   
   ## Brief change log
   
   Update wrong links in the datastream/execution_mode.md page.
   
   
   ## Verifying this change
   
   Update wrong links in the datastream/execution_mode.md page.
   
   
   ## 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, 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.

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

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



[GitHub] [flink] RocMarshal commented on a change in pull request #18491: [FLINK-25800][docs] Update wrong links in the datastream/execution_mode.md page.

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



##########
File path: docs/content.zh/docs/dev/datastream/execution_mode.md
##########
@@ -170,7 +170,7 @@ TaskManagers 将至少在下游任务开始消费它们前保留中间结果(
 
 ### 事件时间/水印
 
-在支持[事件时间]({{< ref "docs/dev/datastream/event-time/generating_watermarks" >}})方面,Flink 的流运行时间建立在一个事件可能是乱序到来的悲观假设上的,即一个时间戳 `t` 的事件可能会在一个时间戳 `t+1` 的事件之后出现。因为如此,系统永远无法确定在给定的时间戳 `T` 下,未来不会再有时间戳 `t < T` 的元素出现。为了摊平这种失序性对最终结果的影响,同时使系统实用,在`流`模式下,Flink 使用了一种名为 [Watermarks]({{< ref "docs/concepts/time" >}}#event-time-and-watermarks) 的启发式方法。一个带有时间戳 `T` 的水印标志着再没有时间戳 `t < T` 的元素跟进。
+在支持[事件时间]({{< ref "docs/concepts/time" >}}#notions-of-time-event-time-and-processing-time)方面,Flink 的流运行时间建立在一个事件可能是乱序到来的悲观假设上的,即一个时间戳 `t` 的事件可能会在一个时间戳 `t+1` 的事件之后出现。因为如此,系统永远无法确定在给定的时间戳 `T` 下,未来不会再有时间戳 `t < T` 的元素出现。为了摊平这种失序性对最终结果的影响,同时使系统实用,在`流`模式下,Flink 使用了一种名为 [Watermarks]({{< ref "docs/concepts/time" >}}#event-time-and-watermarks) 的启发式方法。一个带有时间戳 `T` 的水印标志着再没有时间戳 `t < T` 的元素跟进。

Review comment:
       OK

##########
File path: docs/content.zh/docs/dev/datastream/operators/overview.md
##########
@@ -680,6 +680,8 @@ data_stream.broadcast()
 {{< /tab >}}
 {{< /tabs>}}
 
+<a name="task-chaining-and-resource-groups"></a>
+

Review comment:
       @MartijnVisser Yes. I  executed the 'git rebase master'  command to resolve it.




-- 
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 #18491: [FLINK-25800][docs] Update wrong links in the datastream/execution_mode.md page.

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


   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 a072fd8479b34bf48c84b2786b792f7b55f4e841 (Tue Jan 25 05:10:22 UTC 2022)
   
   **Warnings:**
    * **This pull request references an unassigned [Jira ticket](https://issues.apache.org/jira/browse/FLINK-25800).** According to the [code contribution guide](https://flink.apache.org/contributing/contribute-code.html), tickets need to be assigned before starting with the implementation work.
   
   
   <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.

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 #18491: [FLINK-25800][docs] Update wrong links in the datastream/execution_mode.md page.

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "a072fd8479b34bf48c84b2786b792f7b55f4e841",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=30108",
       "triggerID" : "a072fd8479b34bf48c84b2786b792f7b55f4e841",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a072fd8479b34bf48c84b2786b792f7b55f4e841 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=30108) 
   
   <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] RocMarshal commented on pull request #18491: [FLINK-25800][docs] Update wrong links in the datastream/execution_mode.md page.

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


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

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

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



[GitHub] [flink] RocMarshal commented on pull request #18491: [FLINK-25800][docs] Update wrong links in the datastream/execution_mode.md page.

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


   > @RocMarshal Thanks again for the PR. Can you also create backports to the release-1.15 and release-1.14 branches?
   
   @MartijnVisser Thanks for the operation. I'm glad to do it and I'll create it asap.


-- 
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 #18491: [FLINK-25800][docs] Update wrong links in the datastream/execution_mode.md page.

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "a072fd8479b34bf48c84b2786b792f7b55f4e841",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=30108",
       "triggerID" : "a072fd8479b34bf48c84b2786b792f7b55f4e841",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a072fd8479b34bf48c84b2786b792f7b55f4e841",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=30108",
       "triggerID" : "1021263098",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "1fcdbf8349694c62eac4ff59409ff4718e151d71",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32691",
       "triggerID" : "1fcdbf8349694c62eac4ff59409ff4718e151d71",
       "triggerType" : "PUSH"
     }, {
       "hash" : "5e722130c297fa8c32bd1d3c2afb310238c7410a",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33022",
       "triggerID" : "5e722130c297fa8c32bd1d3c2afb310238c7410a",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1fcdbf8349694c62eac4ff59409ff4718e151d71 Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32691) 
   * 5e722130c297fa8c32bd1d3c2afb310238c7410a Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33022) 
   
   <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] RocMarshal commented on pull request #18491: [FLINK-25800][docs] Update wrong links in the datastream/execution_mode.md page.

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


   Hi, @MartijnVisser Could you help me to check it ? Thanks a lot.


-- 
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] RocMarshal edited a comment on pull request #18491: [FLINK-25800][docs] Update wrong links in the datastream/execution_mode.md page.

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


   Hi, @AHeise  Would you mind helping me to check it ? Thanks a lot.


-- 
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 #18491: [FLINK-25800][docs] Update wrong links in the datastream/execution_mode.md page.

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "a072fd8479b34bf48c84b2786b792f7b55f4e841",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=30108",
       "triggerID" : "a072fd8479b34bf48c84b2786b792f7b55f4e841",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a072fd8479b34bf48c84b2786b792f7b55f4e841",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=30108",
       "triggerID" : "1021263098",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "1fcdbf8349694c62eac4ff59409ff4718e151d71",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1fcdbf8349694c62eac4ff59409ff4718e151d71",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a072fd8479b34bf48c84b2786b792f7b55f4e841 Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=30108) 
   * 1fcdbf8349694c62eac4ff59409ff4718e151d71 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 #18491: [FLINK-25800][docs] Update wrong links in the datastream/execution_mode.md page.

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "a072fd8479b34bf48c84b2786b792f7b55f4e841",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=30108",
       "triggerID" : "a072fd8479b34bf48c84b2786b792f7b55f4e841",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a072fd8479b34bf48c84b2786b792f7b55f4e841",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=30108",
       "triggerID" : "1021263098",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "1fcdbf8349694c62eac4ff59409ff4718e151d71",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32691",
       "triggerID" : "1fcdbf8349694c62eac4ff59409ff4718e151d71",
       "triggerType" : "PUSH"
     }, {
       "hash" : "5e722130c297fa8c32bd1d3c2afb310238c7410a",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33022",
       "triggerID" : "5e722130c297fa8c32bd1d3c2afb310238c7410a",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 5e722130c297fa8c32bd1d3c2afb310238c7410a Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33022) 
   
   <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] RocMarshal commented on pull request #18491: [FLINK-25800][docs] Update wrong links in the datastream/execution_mode.md page.

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


   @MartijnVisser @wuchong Excuse me. Any progress here?


-- 
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] wuchong commented on a change in pull request #18491: [FLINK-25800][docs] Update wrong links in the datastream/execution_mode.md page.

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



##########
File path: docs/content.zh/docs/dev/datastream/execution_mode.md
##########
@@ -201,11 +201,11 @@ Checkpointing 用于故障恢复的特点之一是,在发生故障时,Flink
 
 `批`模式下的行为变化:
 
-* “滚动"操作,如 [reduce()]({{< ref "docs/dev/datastream/operators/overview" >}}#reduce) 或 [sum()]({{< ref "docs/dev/datastream/operators/overview" >}}#aggregations),会对`流`模式下每一条新记录发出增量更新。在`批`模式下,这些操作不是"滚动”。它们只发出最终结果。
+* “滚动"操作,如 [reduce()]({{< ref "docs/dev/datastream/operators/overview" >}}#reduce) 或 sum(),会对`流`模式下每一条新记录发出增量更新。在`批`模式下,这些操作不是"滚动”。它们只发出最终结果。

Review comment:
       Why remove the `sum()` link?




-- 
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] RocMarshal edited a comment on pull request #18491: [FLINK-25800][docs] Update wrong links in the datastream/execution_mode.md page.

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


   Hi, @wuchong  @gaoyunhaii  Would you mind helping me to check it ? Thanks a lot.


-- 
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 #18491: [FLINK-25800][docs] Update wrong links in the datastream/execution_mode.md page.

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "a072fd8479b34bf48c84b2786b792f7b55f4e841",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=30108",
       "triggerID" : "a072fd8479b34bf48c84b2786b792f7b55f4e841",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a072fd8479b34bf48c84b2786b792f7b55f4e841",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=30108",
       "triggerID" : "1021263098",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * a072fd8479b34bf48c84b2786b792f7b55f4e841 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=30108) 
   
   <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 #18491: [FLINK-25800][docs] Update wrong links in the datastream/execution_mode.md page.

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "a072fd8479b34bf48c84b2786b792f7b55f4e841",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=30108",
       "triggerID" : "a072fd8479b34bf48c84b2786b792f7b55f4e841",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a072fd8479b34bf48c84b2786b792f7b55f4e841 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=30108) 
   
   <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] RocMarshal edited a comment on pull request #18491: [FLINK-25800][docs] Update wrong links in the datastream/execution_mode.md page.

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


   Hi, @wuchong  @AHeise  Would you mind helping me to check it ? Thanks a lot.


-- 
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] RocMarshal commented on pull request #18491: [FLINK-25800][docs] Update wrong links in the datastream/execution_mode.md page.

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


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

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 #18491: [FLINK-25800][docs] Update wrong links in the datastream/execution_mode.md page.

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






-- 
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] MartijnVisser commented on pull request #18491: [FLINK-25800][docs] Update wrong links in the datastream/execution_mode.md page.

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


   @RocMarshal Thanks again for the PR. Can you also create backports to the release-1.15 and release-1.14 branches? 


-- 
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 #18491: [FLINK-25800][docs] Update wrong links in the datastream/execution_mode.md page.

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "a072fd8479b34bf48c84b2786b792f7b55f4e841",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "a072fd8479b34bf48c84b2786b792f7b55f4e841",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a072fd8479b34bf48c84b2786b792f7b55f4e841 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 #18491: [FLINK-25800][docs] Update wrong links in the datastream/execution_mode.md page.

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "a072fd8479b34bf48c84b2786b792f7b55f4e841",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=30108",
       "triggerID" : "a072fd8479b34bf48c84b2786b792f7b55f4e841",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a072fd8479b34bf48c84b2786b792f7b55f4e841",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=30108",
       "triggerID" : "1021263098",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * a072fd8479b34bf48c84b2786b792f7b55f4e841 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=30108) 
   
   <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 #18491: [FLINK-25800][docs] Update wrong links in the datastream/execution_mode.md page.

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






-- 
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] RocMarshal commented on pull request #18491: [FLINK-25800][docs] Update wrong links in the datastream/execution_mode.md page.

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


   @MartijnVisser I created [BP-1.14](https://github.com/apache/flink/pull/19090) & [BP-1.15](https://github.com/apache/flink/pull/19091). 
   PTAL. Thank you very much.


-- 
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] RocMarshal commented on a change in pull request #18491: [FLINK-25800][docs] Update wrong links in the datastream/execution_mode.md page.

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



##########
File path: docs/content.zh/docs/dev/datastream/execution_mode.md
##########
@@ -201,11 +201,11 @@ Checkpointing 用于故障恢复的特点之一是,在发生故障时,Flink
 
 `批`模式下的行为变化:
 
-* “滚动"操作,如 [reduce()]({{< ref "docs/dev/datastream/operators/overview" >}}#reduce) 或 [sum()]({{< ref "docs/dev/datastream/operators/overview" >}}#aggregations),会对`流`模式下每一条新记录发出增量更新。在`批`模式下,这些操作不是"滚动”。它们只发出最终结果。
+* “滚动"操作,如 [reduce()]({{< ref "docs/dev/datastream/operators/overview" >}}#reduce) 或 sum(),会对`流`模式下每一条新记录发出增量更新。在`批`模式下,这些操作不是"滚动”。它们只发出最终结果。

Review comment:
       Glad to get your review .  @wuchong 
   
   There isn't  any aggregate function section title in the docs/dev/datastream/operators/overview page, but we could make it mapping to the page   [flink/docs/content.zh/docs/dev/datastream/operators/windows.md](https://nightlies.apache.org/flink/flink-docs-master/docs/dev/datastream/operators/windows/#aggregatefunction') .  
   
   Please let me know what's your opinion.




-- 
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 #18491: [FLINK-25800][docs] Update wrong links in the datastream/execution_mode.md page.

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "a072fd8479b34bf48c84b2786b792f7b55f4e841",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=30108",
       "triggerID" : "a072fd8479b34bf48c84b2786b792f7b55f4e841",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a072fd8479b34bf48c84b2786b792f7b55f4e841",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=30108",
       "triggerID" : "1021263098",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * a072fd8479b34bf48c84b2786b792f7b55f4e841 Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=30108) 
   
   <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] RocMarshal commented on pull request #18491: [FLINK-25800][docs] Update wrong links in the datastream/execution_mode.md page.

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


   Hi, @MartijnVisser Would you mind helping me to check it ? Thanks a lot.


-- 
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] MartijnVisser commented on a change in pull request #18491: [FLINK-25800][docs] Update wrong links in the datastream/execution_mode.md page.

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



##########
File path: docs/content.zh/docs/dev/datastream/execution_mode.md
##########
@@ -170,7 +170,7 @@ TaskManagers 将至少在下游任务开始消费它们前保留中间结果(
 
 ### 事件时间/水印
 
-在支持[事件时间]({{< ref "docs/dev/datastream/event-time/generating_watermarks" >}})方面,Flink 的流运行时间建立在一个事件可能是乱序到来的悲观假设上的,即一个时间戳 `t` 的事件可能会在一个时间戳 `t+1` 的事件之后出现。因为如此,系统永远无法确定在给定的时间戳 `T` 下,未来不会再有时间戳 `t < T` 的元素出现。为了摊平这种失序性对最终结果的影响,同时使系统实用,在`流`模式下,Flink 使用了一种名为 [Watermarks]({{< ref "docs/concepts/time" >}}#event-time-and-watermarks) 的启发式方法。一个带有时间戳 `T` 的水印标志着再没有时间戳 `t < T` 的元素跟进。
+在支持[事件时间]({{< ref "docs/concepts/time" >}}#notions-of-time-event-time-and-processing-time)方面,Flink 的流运行时间建立在一个事件可能是乱序到来的悲观假设上的,即一个时间戳 `t` 的事件可能会在一个时间戳 `t+1` 的事件之后出现。因为如此,系统永远无法确定在给定的时间戳 `T` 下,未来不会再有时间戳 `t < T` 的元素出现。为了摊平这种失序性对最终结果的影响,同时使系统实用,在`流`模式下,Flink 使用了一种名为 [Watermarks]({{< ref "docs/concepts/time" >}}#event-time-and-watermarks) 的启发式方法。一个带有时间戳 `T` 的水印标志着再没有时间戳 `t < T` 的元素跟进。

Review comment:
       The English version of the documentation currently on master https://nightlies.apache.org/flink/flink-docs-master/docs/dev/datastream/execution_mode/#event-time--watermarks still points to the `docs/dev/datastream/event-time/generating_watermarks` page. I think the current situation is the right page to point users to and therefore we shouldn't make this change. 

##########
File path: docs/content.zh/docs/dev/datastream/execution_mode.md
##########
@@ -201,11 +201,11 @@ Checkpointing 用于故障恢复的特点之一是,在发生故障时,Flink
 
 `批`模式下的行为变化:
 
-* “滚动"操作,如 [reduce()]({{< ref "docs/dev/datastream/operators/overview" >}}#reduce) 或 [sum()]({{< ref "docs/dev/datastream/operators/overview" >}}#aggregations),会对`流`模式下每一条新记录发出增量更新。在`批`模式下,这些操作不是"滚动”。它们只发出最终结果。
+* “滚动"操作,如 [reduce()]({{< ref "docs/dev/datastream/operators/overview" >}}#reduce) 或 sum(),会对`流`模式下每一条新记录发出增量更新。在`批`模式下,这些操作不是"滚动”。它们只发出最终结果。

Review comment:
       The English documentation doesn't have a link to `sum()` so I think it's fine to remove the link here

##########
File path: docs/content.zh/docs/dev/datastream/execution_mode.md
##########
@@ -201,11 +201,11 @@ Checkpointing 用于故障恢复的特点之一是,在发生故障时,Flink
 
 `批`模式下的行为变化:
 
-* “滚动"操作,如 [reduce()]({{< ref "docs/dev/datastream/operators/overview" >}}#reduce) 或 [sum()]({{< ref "docs/dev/datastream/operators/overview" >}}#aggregations),会对`流`模式下每一条新记录发出增量更新。在`批`模式下,这些操作不是"滚动”。它们只发出最终结果。
+* “滚动"操作,如 [reduce()]({{< ref "docs/dev/datastream/operators/overview" >}}#reduce) 或 sum(),会对`流`模式下每一条新记录发出增量更新。在`批`模式下,这些操作不是"滚动”。它们只发出最终结果。
 
 `批`模式下不支持的:
 
-* [Checkpointing]({{< ref "docs/concepts/stateful-stream-processing" >}}#stateful-stream-processing) 和任何依赖于 checkpointing 的操作都不支持。
+* [Checkpointing]({{< ref "docs/concepts/stateful-stream-processing" >}}#checkpointing) 和任何依赖于 checkpointing 的操作都不支持。

Review comment:
       Good catch 👍 

##########
File path: docs/content.zh/docs/dev/datastream/operators/overview.md
##########
@@ -680,6 +680,8 @@ data_stream.broadcast()
 {{< /tab >}}
 {{< /tabs>}}
 
+<a name="task-chaining-and-resource-groups"></a>
+

Review comment:
       This is now missing the last pieces which are on https://nightlies.apache.org/flink/flink-docs-master/docs/dev/datastream/operators/overview/#name-and-description




-- 
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 #18491: [FLINK-25800][docs] Update wrong links in the datastream/execution_mode.md page.

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "a072fd8479b34bf48c84b2786b792f7b55f4e841",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=30108",
       "triggerID" : "a072fd8479b34bf48c84b2786b792f7b55f4e841",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a072fd8479b34bf48c84b2786b792f7b55f4e841",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=30108",
       "triggerID" : "1021263098",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "1fcdbf8349694c62eac4ff59409ff4718e151d71",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32691",
       "triggerID" : "1fcdbf8349694c62eac4ff59409ff4718e151d71",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a072fd8479b34bf48c84b2786b792f7b55f4e841 Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=30108) 
   * 1fcdbf8349694c62eac4ff59409ff4718e151d71 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32691) 
   
   <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 #18491: [FLINK-25800][docs] Update wrong links in the datastream/execution_mode.md page.

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "a072fd8479b34bf48c84b2786b792f7b55f4e841",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=30108",
       "triggerID" : "a072fd8479b34bf48c84b2786b792f7b55f4e841",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a072fd8479b34bf48c84b2786b792f7b55f4e841",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=30108",
       "triggerID" : "1021263098",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "1fcdbf8349694c62eac4ff59409ff4718e151d71",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32691",
       "triggerID" : "1fcdbf8349694c62eac4ff59409ff4718e151d71",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1fcdbf8349694c62eac4ff59409ff4718e151d71 Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32691) 
   
   <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 #18491: [FLINK-25800][docs] Update wrong links in the datastream/execution_mode.md page.

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "a072fd8479b34bf48c84b2786b792f7b55f4e841",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=30108",
       "triggerID" : "a072fd8479b34bf48c84b2786b792f7b55f4e841",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a072fd8479b34bf48c84b2786b792f7b55f4e841",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=30108",
       "triggerID" : "1021263098",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "1fcdbf8349694c62eac4ff59409ff4718e151d71",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32691",
       "triggerID" : "1fcdbf8349694c62eac4ff59409ff4718e151d71",
       "triggerType" : "PUSH"
     }, {
       "hash" : "5e722130c297fa8c32bd1d3c2afb310238c7410a",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "5e722130c297fa8c32bd1d3c2afb310238c7410a",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1fcdbf8349694c62eac4ff59409ff4718e151d71 Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=32691) 
   * 5e722130c297fa8c32bd1d3c2afb310238c7410a 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] MartijnVisser merged pull request #18491: [FLINK-25800][docs] Update wrong links in the datastream/execution_mode.md page.

Posted by GitBox <gi...@apache.org>.
MartijnVisser merged pull request #18491:
URL: https://github.com/apache/flink/pull/18491


   


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