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 2021/10/14 07:06:58 UTC

[GitHub] [flink] zentol opened a new pull request #17472: [FLINK-24486][rest] Make async result store duration configurable

zentol opened a new pull request #17472:
URL: https://github.com/apache/flink/pull/17472


   With this PR the duration for which async operation results are stored can now be configured by the user, and most notably also be disabled.
   
   


-- 
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] zentol commented on a change in pull request #17472: [FLINK-24486][rest] Make async result store duration configurable

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



##########
File path: flink-runtime/src/test/java/org/apache/flink/runtime/rest/handler/async/CompletedOperationCacheTest.java
##########
@@ -107,4 +109,53 @@ public void testCanGetOperationResultAfterClosing() throws Exception {
 
         assertThat(result.right(), is(equalTo(TEST_OPERATION_RESULT.get())));
     }
+
+    @Test
+    public void testCacheTimeout() throws Exception {
+        final Duration timeout = RestOptions.ASYNC_OPERATION_STORE_DURATION.defaultValue();
+
+        completedOperationCache = new CompletedOperationCache<>(timeout, manualTicker);
+        completedOperationCache.registerOngoingOperation(TEST_OPERATION_KEY, TEST_OPERATION_RESULT);
+
+        // sanity check that the operation can be retrieved before the timeout
+        assertThat(
+                completedOperationCache.get(TEST_OPERATION_KEY).right(),
+                is(equalTo(TEST_OPERATION_RESULT.get())));
+
+        manualTicker.advanceTime(timeout.multipliedBy(2).getSeconds(), TimeUnit.SECONDS);
+
+        try {
+            completedOperationCache.get(TEST_OPERATION_KEY);
+            fail("Timeout should have removed cache entry.");
+        } catch (UnknownOperationKeyException expected) {
+        }
+    }
+
+    @Test
+    public void testCacheTimeoutCanBeDisabled() throws Exception {
+        completedOperationCache =
+                new CompletedOperationCache<>(Duration.ofSeconds(0), manualTicker);
+        completedOperationCache.registerOngoingOperation(TEST_OPERATION_KEY, TEST_OPERATION_RESULT);
+
+        manualTicker.advanceTime(365, TimeUnit.DAYS);
+
+        assertThat(
+                completedOperationCache.get(TEST_OPERATION_KEY).right(),
+                is(equalTo(TEST_OPERATION_RESULT.get())));
+    }
+
+    @Test
+    public void testCacheTimeoutCanBeConfigured() throws Exception {
+        final Duration baseTImeout = RestOptions.ASYNC_OPERATION_STORE_DURATION.defaultValue();
+
+        completedOperationCache =
+                new CompletedOperationCache<>(baseTImeout.multipliedBy(10), manualTicker);
+        completedOperationCache.registerOngoingOperation(TEST_OPERATION_KEY, TEST_OPERATION_RESULT);
+
+        manualTicker.advanceTime(baseTImeout.multipliedBy(2).getSeconds(), TimeUnit.SECONDS);
+
+        assertThat(
+                completedOperationCache.get(TEST_OPERATION_KEY).right(),
+                is(equalTo(TEST_OPERATION_RESULT.get())));
+    }

Review comment:
       ```suggestion
           final Duration baseTimeout = RestOptions.ASYNC_OPERATION_STORE_DURATION.defaultValue();
   
           completedOperationCache =
                   new CompletedOperationCache<>(baseTimeout.multipliedBy(10), manualTicker);
           completedOperationCache.registerOngoingOperation(TEST_OPERATION_KEY, TEST_OPERATION_RESULT);
   
           manualTicker.advanceTime(baseTimeout.multipliedBy(2).getSeconds(), TimeUnit.SECONDS);
   
           assertThat(
                   completedOperationCache.get(TEST_OPERATION_KEY).right(),
                   is(equalTo(TEST_OPERATION_RESULT.get())));
       }
   ```




-- 
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] zentol commented on pull request #17472: [FLINK-24486][rest] Make async result store duration configurable

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


   @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 #17472: [FLINK-24486][rest] Make async result store duration configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25033",
       "triggerID" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25229",
       "triggerID" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25274",
       "triggerID" : "f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e377697fc0cb853615137e934d268650259762f4",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25314",
       "triggerID" : "e377697fc0cb853615137e934d268650259762f4",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a8cd28194ad50044279d895a36d08a84da8fb78e",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25441",
       "triggerID" : "a8cd28194ad50044279d895a36d08a84da8fb78e",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a8cd28194ad50044279d895a36d08a84da8fb78e Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25441) 
   
   <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 #17472: [FLINK-24486][rest] Make async result store duration configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25033",
       "triggerID" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 328757a3ccd17d2594bf2bfca945ce07f7c9d012 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25033) 
   
   <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 #17472: [FLINK-24486][rest] Make async result store duration configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25033",
       "triggerID" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25229",
       "triggerID" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25274",
       "triggerID" : "f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25274) 
   
   <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 #17472: [FLINK-24486][rest] Make async result store duration configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25033",
       "triggerID" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25229",
       "triggerID" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25229) 
   
   <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 #17472: [FLINK-24486][rest] Make async result store duration configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25033",
       "triggerID" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25229",
       "triggerID" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 328757a3ccd17d2594bf2bfca945ce07f7c9d012 Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25033) 
   * 6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25229) 
   
   <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] zentol commented on pull request #17472: [FLINK-24486][rest] Make async result store duration configurable

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


   @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 #17472: [FLINK-24486][rest] Make async result store duration configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25033",
       "triggerID" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25229",
       "triggerID" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25229) 
   * f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78 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 #17472: [FLINK-24486][rest] Make async result store duration configurable

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


   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 328757a3ccd17d2594bf2bfca945ce07f7c9d012 (Thu Oct 14 07:09:56 UTC 2021)
   
   **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.

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 #17472: [FLINK-24486][rest] Make async result store duration configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25033",
       "triggerID" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25229",
       "triggerID" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25274",
       "triggerID" : "f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e377697fc0cb853615137e934d268650259762f4",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e377697fc0cb853615137e934d268650259762f4",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25274) 
   * e377697fc0cb853615137e934d268650259762f4 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 #17472: [FLINK-24486][rest] Make async result store duration configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25033",
       "triggerID" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25229",
       "triggerID" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25274",
       "triggerID" : "f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e377697fc0cb853615137e934d268650259762f4",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25314",
       "triggerID" : "e377697fc0cb853615137e934d268650259762f4",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a8cd28194ad50044279d895a36d08a84da8fb78e",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25441",
       "triggerID" : "a8cd28194ad50044279d895a36d08a84da8fb78e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d1470a5514b0990a18976d1dbb7ab5767dd00e69",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "d1470a5514b0990a18976d1dbb7ab5767dd00e69",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a8cd28194ad50044279d895a36d08a84da8fb78e Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25441) 
   * d1470a5514b0990a18976d1dbb7ab5767dd00e69 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 #17472: [FLINK-24486][rest] Make async result store duration configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25033",
       "triggerID" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25229",
       "triggerID" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25274",
       "triggerID" : "f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e377697fc0cb853615137e934d268650259762f4",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25314",
       "triggerID" : "e377697fc0cb853615137e934d268650259762f4",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a8cd28194ad50044279d895a36d08a84da8fb78e",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25441",
       "triggerID" : "a8cd28194ad50044279d895a36d08a84da8fb78e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d1470a5514b0990a18976d1dbb7ab5767dd00e69",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25466",
       "triggerID" : "d1470a5514b0990a18976d1dbb7ab5767dd00e69",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a8cd28194ad50044279d895a36d08a84da8fb78e Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25441) 
   * d1470a5514b0990a18976d1dbb7ab5767dd00e69 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25466) 
   
   <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] nicoweidner commented on a change in pull request #17472: [FLINK-24486][rest] Make async result store duration configurable

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



##########
File path: flink-runtime/src/test/java/org/apache/flink/runtime/rest/handler/async/CompletedOperationCacheTest.java
##########
@@ -107,4 +109,53 @@ public void testCanGetOperationResultAfterClosing() throws Exception {
 
         assertThat(result.right(), is(equalTo(TEST_OPERATION_RESULT.get())));
     }
+
+    @Test
+    public void testCacheTimeout() throws Exception {
+        final Duration timeout = RestOptions.ASYNC_OPERATION_STORE_DURATION.defaultValue();
+
+        completedOperationCache = new CompletedOperationCache<>(timeout, manualTicker);
+        completedOperationCache.registerOngoingOperation(TEST_OPERATION_KEY, TEST_OPERATION_RESULT);
+
+        // sanity check that the operation can be retrieved before the timeout
+        assertThat(
+                completedOperationCache.get(TEST_OPERATION_KEY).right(),
+                is(equalTo(TEST_OPERATION_RESULT.get())));
+
+        manualTicker.advanceTime(timeout.multipliedBy(2).getSeconds(), TimeUnit.SECONDS);
+
+        try {
+            completedOperationCache.get(TEST_OPERATION_KEY);
+            fail("Timeout should have removed cache entry.");
+        } catch (UnknownOperationKeyException expected) {
+        }
+    }
+
+    @Test
+    public void testCacheTimeoutCanBeDisabled() throws Exception {
+        completedOperationCache =
+                new CompletedOperationCache<>(Duration.ofSeconds(0), manualTicker);
+        completedOperationCache.registerOngoingOperation(TEST_OPERATION_KEY, TEST_OPERATION_RESULT);
+
+        manualTicker.advanceTime(365, TimeUnit.DAYS);
+
+        assertThat(
+                completedOperationCache.get(TEST_OPERATION_KEY).right(),
+                is(equalTo(TEST_OPERATION_RESULT.get())));
+    }
+
+    @Test
+    public void testCacheTimeoutCanBeConfigured() throws Exception {
+        final Duration baseTImeout = RestOptions.ASYNC_OPERATION_STORE_DURATION.defaultValue();

Review comment:
       ```suggestion
           final Duration baseTimeout = RestOptions.ASYNC_OPERATION_STORE_DURATION.defaultValue();
   ```




-- 
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 #17472: [FLINK-24486][rest] Make async result store duration configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25033",
       "triggerID" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25229",
       "triggerID" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25274",
       "triggerID" : "f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e377697fc0cb853615137e934d268650259762f4",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25314",
       "triggerID" : "e377697fc0cb853615137e934d268650259762f4",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a8cd28194ad50044279d895a36d08a84da8fb78e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25441",
       "triggerID" : "a8cd28194ad50044279d895a36d08a84da8fb78e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d1470a5514b0990a18976d1dbb7ab5767dd00e69",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25466",
       "triggerID" : "d1470a5514b0990a18976d1dbb7ab5767dd00e69",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d1470a5514b0990a18976d1dbb7ab5767dd00e69",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25466",
       "triggerID" : "952057861",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * d1470a5514b0990a18976d1dbb7ab5767dd00e69 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25466) 
   
   <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 #17472: [FLINK-24486][rest] Make async result store duration configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25033",
       "triggerID" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25229",
       "triggerID" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25274",
       "triggerID" : "f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e377697fc0cb853615137e934d268650259762f4",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25314",
       "triggerID" : "e377697fc0cb853615137e934d268650259762f4",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a8cd28194ad50044279d895a36d08a84da8fb78e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25441",
       "triggerID" : "a8cd28194ad50044279d895a36d08a84da8fb78e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d1470a5514b0990a18976d1dbb7ab5767dd00e69",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25466",
       "triggerID" : "d1470a5514b0990a18976d1dbb7ab5767dd00e69",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * d1470a5514b0990a18976d1dbb7ab5767dd00e69 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25466) 
   
   <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 #17472: [FLINK-24486][rest] Make async result store duration configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25033",
       "triggerID" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25229",
       "triggerID" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25274",
       "triggerID" : "f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e377697fc0cb853615137e934d268650259762f4",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25314",
       "triggerID" : "e377697fc0cb853615137e934d268650259762f4",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a8cd28194ad50044279d895a36d08a84da8fb78e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25441",
       "triggerID" : "a8cd28194ad50044279d895a36d08a84da8fb78e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d1470a5514b0990a18976d1dbb7ab5767dd00e69",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25466",
       "triggerID" : "d1470a5514b0990a18976d1dbb7ab5767dd00e69",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d1470a5514b0990a18976d1dbb7ab5767dd00e69",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25466",
       "triggerID" : "952057861",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "d1470a5514b0990a18976d1dbb7ab5767dd00e69",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25466",
       "triggerID" : "952185469",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "19871592d132a090b390f99fe1c854d999348a39",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25502",
       "triggerID" : "19871592d132a090b390f99fe1c854d999348a39",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * d1470a5514b0990a18976d1dbb7ab5767dd00e69 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25466) 
   * 19871592d132a090b390f99fe1c854d999348a39 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25502) 
   
   <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 #17472: [FLINK-24486][rest] Make async result store duration configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25033",
       "triggerID" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25229",
       "triggerID" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25274",
       "triggerID" : "f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25229) 
   * f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25274) 
   
   <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 #17472: [FLINK-24486][rest] Make async result store duration configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25033",
       "triggerID" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25229",
       "triggerID" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25274",
       "triggerID" : "f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e377697fc0cb853615137e934d268650259762f4",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25314",
       "triggerID" : "e377697fc0cb853615137e934d268650259762f4",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * e377697fc0cb853615137e934d268650259762f4 Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25314) 
   
   <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 #17472: [FLINK-24486][rest] Make async result store duration configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25033",
       "triggerID" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25229",
       "triggerID" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25274",
       "triggerID" : "f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e377697fc0cb853615137e934d268650259762f4",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25314",
       "triggerID" : "e377697fc0cb853615137e934d268650259762f4",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a8cd28194ad50044279d895a36d08a84da8fb78e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25441",
       "triggerID" : "a8cd28194ad50044279d895a36d08a84da8fb78e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d1470a5514b0990a18976d1dbb7ab5767dd00e69",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25466",
       "triggerID" : "d1470a5514b0990a18976d1dbb7ab5767dd00e69",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d1470a5514b0990a18976d1dbb7ab5767dd00e69",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25466",
       "triggerID" : "952057861",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * d1470a5514b0990a18976d1dbb7ab5767dd00e69 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25466) 
   
   <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] zentol merged pull request #17472: [FLINK-24486][rest] Make async result store duration configurable

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


   


-- 
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 #17472: [FLINK-24486][rest] Make async result store duration configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25033",
       "triggerID" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 328757a3ccd17d2594bf2bfca945ce07f7c9d012 Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25033) 
   * 6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f 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 #17472: [FLINK-24486][rest] Make async result store duration configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25033",
       "triggerID" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25229",
       "triggerID" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25274",
       "triggerID" : "f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e377697fc0cb853615137e934d268650259762f4",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25314",
       "triggerID" : "e377697fc0cb853615137e934d268650259762f4",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a8cd28194ad50044279d895a36d08a84da8fb78e",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25441",
       "triggerID" : "a8cd28194ad50044279d895a36d08a84da8fb78e",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * e377697fc0cb853615137e934d268650259762f4 Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25314) 
   * a8cd28194ad50044279d895a36d08a84da8fb78e Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25441) 
   
   <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 #17472: [FLINK-24486][rest] Make async result store duration configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25033",
       "triggerID" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25229",
       "triggerID" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25274",
       "triggerID" : "f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e377697fc0cb853615137e934d268650259762f4",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25314",
       "triggerID" : "e377697fc0cb853615137e934d268650259762f4",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a8cd28194ad50044279d895a36d08a84da8fb78e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25441",
       "triggerID" : "a8cd28194ad50044279d895a36d08a84da8fb78e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d1470a5514b0990a18976d1dbb7ab5767dd00e69",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25466",
       "triggerID" : "d1470a5514b0990a18976d1dbb7ab5767dd00e69",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d1470a5514b0990a18976d1dbb7ab5767dd00e69",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25466",
       "triggerID" : "952057861",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "d1470a5514b0990a18976d1dbb7ab5767dd00e69",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25466",
       "triggerID" : "952185469",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * d1470a5514b0990a18976d1dbb7ab5767dd00e69 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25466) 
   
   <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 #17472: [FLINK-24486][rest] Make async result store duration configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25033",
       "triggerID" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 328757a3ccd17d2594bf2bfca945ce07f7c9d012 Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25033) 
   
   <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 #17472: [FLINK-24486][rest] Make async result store duration configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25033",
       "triggerID" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25229",
       "triggerID" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25274",
       "triggerID" : "f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e377697fc0cb853615137e934d268650259762f4",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25314",
       "triggerID" : "e377697fc0cb853615137e934d268650259762f4",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a8cd28194ad50044279d895a36d08a84da8fb78e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25441",
       "triggerID" : "a8cd28194ad50044279d895a36d08a84da8fb78e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d1470a5514b0990a18976d1dbb7ab5767dd00e69",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25466",
       "triggerID" : "d1470a5514b0990a18976d1dbb7ab5767dd00e69",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d1470a5514b0990a18976d1dbb7ab5767dd00e69",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25466",
       "triggerID" : "952057861",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "d1470a5514b0990a18976d1dbb7ab5767dd00e69",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25466",
       "triggerID" : "952185469",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * d1470a5514b0990a18976d1dbb7ab5767dd00e69 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25466) 
   
   <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 #17472: [FLINK-24486][rest] Make async result store duration configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25033",
       "triggerID" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25229",
       "triggerID" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25274",
       "triggerID" : "f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e377697fc0cb853615137e934d268650259762f4",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25314",
       "triggerID" : "e377697fc0cb853615137e934d268650259762f4",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a8cd28194ad50044279d895a36d08a84da8fb78e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25441",
       "triggerID" : "a8cd28194ad50044279d895a36d08a84da8fb78e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d1470a5514b0990a18976d1dbb7ab5767dd00e69",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25466",
       "triggerID" : "d1470a5514b0990a18976d1dbb7ab5767dd00e69",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d1470a5514b0990a18976d1dbb7ab5767dd00e69",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25466",
       "triggerID" : "952057861",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "d1470a5514b0990a18976d1dbb7ab5767dd00e69",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25466",
       "triggerID" : "952185469",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * d1470a5514b0990a18976d1dbb7ab5767dd00e69 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25466) 
   
   <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 #17472: [FLINK-24486][rest] Make async result store duration configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25033",
       "triggerID" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25229",
       "triggerID" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25274",
       "triggerID" : "f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e377697fc0cb853615137e934d268650259762f4",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25314",
       "triggerID" : "e377697fc0cb853615137e934d268650259762f4",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a8cd28194ad50044279d895a36d08a84da8fb78e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25441",
       "triggerID" : "a8cd28194ad50044279d895a36d08a84da8fb78e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d1470a5514b0990a18976d1dbb7ab5767dd00e69",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25466",
       "triggerID" : "d1470a5514b0990a18976d1dbb7ab5767dd00e69",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d1470a5514b0990a18976d1dbb7ab5767dd00e69",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25466",
       "triggerID" : "952057861",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * d1470a5514b0990a18976d1dbb7ab5767dd00e69 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25466) 
   
   <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 #17472: [FLINK-24486][rest] Make async result store duration configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25033",
       "triggerID" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25229",
       "triggerID" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25274",
       "triggerID" : "f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e377697fc0cb853615137e934d268650259762f4",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25314",
       "triggerID" : "e377697fc0cb853615137e934d268650259762f4",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a8cd28194ad50044279d895a36d08a84da8fb78e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25441",
       "triggerID" : "a8cd28194ad50044279d895a36d08a84da8fb78e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d1470a5514b0990a18976d1dbb7ab5767dd00e69",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25466",
       "triggerID" : "d1470a5514b0990a18976d1dbb7ab5767dd00e69",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d1470a5514b0990a18976d1dbb7ab5767dd00e69",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25466",
       "triggerID" : "952057861",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "d1470a5514b0990a18976d1dbb7ab5767dd00e69",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25466",
       "triggerID" : "952185469",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "19871592d132a090b390f99fe1c854d999348a39",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25502",
       "triggerID" : "19871592d132a090b390f99fe1c854d999348a39",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 19871592d132a090b390f99fe1c854d999348a39 Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25502) 
   
   <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 #17472: [FLINK-24486][rest] Make async result store duration configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25033",
       "triggerID" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25229",
       "triggerID" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25274",
       "triggerID" : "f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e377697fc0cb853615137e934d268650259762f4",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25314",
       "triggerID" : "e377697fc0cb853615137e934d268650259762f4",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a8cd28194ad50044279d895a36d08a84da8fb78e",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "a8cd28194ad50044279d895a36d08a84da8fb78e",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * e377697fc0cb853615137e934d268650259762f4 Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25314) 
   * a8cd28194ad50044279d895a36d08a84da8fb78e 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 #17472: [FLINK-24486][rest] Make async result store duration configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25033",
       "triggerID" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25229",
       "triggerID" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25274",
       "triggerID" : "f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e377697fc0cb853615137e934d268650259762f4",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25314",
       "triggerID" : "e377697fc0cb853615137e934d268650259762f4",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a8cd28194ad50044279d895a36d08a84da8fb78e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25441",
       "triggerID" : "a8cd28194ad50044279d895a36d08a84da8fb78e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d1470a5514b0990a18976d1dbb7ab5767dd00e69",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25466",
       "triggerID" : "d1470a5514b0990a18976d1dbb7ab5767dd00e69",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d1470a5514b0990a18976d1dbb7ab5767dd00e69",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25466",
       "triggerID" : "952057861",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "d1470a5514b0990a18976d1dbb7ab5767dd00e69",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25466",
       "triggerID" : "952185469",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "19871592d132a090b390f99fe1c854d999348a39",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "19871592d132a090b390f99fe1c854d999348a39",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * d1470a5514b0990a18976d1dbb7ab5767dd00e69 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25466) 
   * 19871592d132a090b390f99fe1c854d999348a39 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 #17472: [FLINK-24486][rest] Make async result store duration configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 328757a3ccd17d2594bf2bfca945ce07f7c9d012 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 #17472: [FLINK-24486][rest] Make async result store duration configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25033",
       "triggerID" : "328757a3ccd17d2594bf2bfca945ce07f7c9d012",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25229",
       "triggerID" : "6c6aa3b08eb8bee6f96f27a8b84eaebfba015d7f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25274",
       "triggerID" : "f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e377697fc0cb853615137e934d268650259762f4",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25314",
       "triggerID" : "e377697fc0cb853615137e934d268650259762f4",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * f7c2d004a9d29fb2c3445445ed32ba9e9bb74e78 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25274) 
   * e377697fc0cb853615137e934d268650259762f4 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25314) 
   
   <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