You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by GitBox <gi...@apache.org> on 2022/03/16 07:52:35 UTC

[GitHub] [flink] fredia opened a new pull request #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

fredia opened a new pull request #19106:
URL: https://github.com/apache/flink/pull/19106


   <!--
   *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
   
   Currently, the threshold of the overlap fraction of incremental restoring `OVERLAP_FRACTION_THRESHOLD` is a hard-coded, fixed value.
   `OVERLAP_FRACTION_THRESHOLD` is used to control how to restore a state handle, different thresholds can affect the performance of restoring. The behavior of deletion in restoring has been changed after [FLINK-21321](https://issues.apache.org/jira/browse/FLINK-21321), the old threshold no longer fits the current situation.
   
   To make it easier to modify the threshold according to different situations, changing `OVERLAP_FRACTION_THRESHOLD` to be configurable is suggested.
   
   ## Brief change log
   
     - Add `RESTORE_OVERLAP_FRACTION_THRESHOLD` into RocksDBConfigurableOptions.
   
     
   
   ## Verifying this change
   
   This change added tests and can be verified as follows:
   
   - Add UT cases in RocksDBStateBackendConfigTest#testConfigurableOptionsFromConfig().
   
   ## 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] flinkbot edited a comment on pull request #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33150",
       "triggerID" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * cf337f5bb2d925c8f05d6c675fa8fc01fa180cba Azure: [CANCELED](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33150) 
   
   <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] fredia edited a comment on pull request #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

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


   CI passed at https://dev.azure.com/fredia/flink/_build/results?buildId=64&view=results.


-- 
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 #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33150",
       "triggerID" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33159",
       "triggerID" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a49d30664180850f03cf10f6e2e1c68bf868ccb8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33166",
       "triggerID" : "a49d30664180850f03cf10f6e2e1c68bf868ccb8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201",
       "triggerID" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201",
       "triggerID" : "1070366163",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201",
       "triggerID" : "1070839385",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201",
       "triggerID" : "1071964690",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * f6824b8151ccb63002b4059eb13eb448143be197 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201) 
   
   <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] Myasuka closed pull request #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

Posted by GitBox <gi...@apache.org>.
Myasuka closed pull request #19106:
URL: https://github.com/apache/flink/pull/19106


   


-- 
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 #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33150",
       "triggerID" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33159",
       "triggerID" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a49d30664180850f03cf10f6e2e1c68bf868ccb8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33166",
       "triggerID" : "a49d30664180850f03cf10f6e2e1c68bf868ccb8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201",
       "triggerID" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201",
       "triggerID" : "1070366163",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201",
       "triggerID" : "1070839385",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201",
       "triggerID" : "1071964690",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * f6824b8151ccb63002b4059eb13eb448143be197 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201) 
   
   <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 #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33150",
       "triggerID" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33159",
       "triggerID" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a49d30664180850f03cf10f6e2e1c68bf868ccb8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33166",
       "triggerID" : "a49d30664180850f03cf10f6e2e1c68bf868ccb8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201",
       "triggerID" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201",
       "triggerID" : "1070366163",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201",
       "triggerID" : "1070839385",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201",
       "triggerID" : "1071964690",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "fdef055c05166ebd3c05f1f8a383f531480d1a22",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "fdef055c05166ebd3c05f1f8a383f531480d1a22",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * f6824b8151ccb63002b4059eb13eb448143be197 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201) 
   * fdef055c05166ebd3c05f1f8a383f531480d1a22 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] Myasuka commented on a change in pull request #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

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



##########
File path: flink-state-backends/flink-statebackend-rocksdb/src/test/java/org/apache/flink/contrib/streaming/state/RocksDBIncrementalCheckpointUtilsTest.java
##########
@@ -95,39 +96,49 @@ public void testChooseTheBestStateHandleForInitial() {
         when(keyedStateHandle3.getKeyGroupRange()).thenReturn(new KeyGroupRange(8, 12));
         keyedStateHandles.add(keyedStateHandle3);
 
-        // this should choose no one handle.
-        Assert.assertNull(
+        Assert.assertEquals(
+                keyedStateHandle2,

Review comment:
       Why this test is different from previous one?
   In my opion, we just make the option configurable, and it should not affect the testing result since we did not change the default overlap fraction threshold.




-- 
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 #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33150",
       "triggerID" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33159",
       "triggerID" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a49d30664180850f03cf10f6e2e1c68bf868ccb8",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33166",
       "triggerID" : "a49d30664180850f03cf10f6e2e1c68bf868ccb8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a49d30664180850f03cf10f6e2e1c68bf868ccb8 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33166) 
   * f6824b8151ccb63002b4059eb13eb448143be197 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] Myasuka commented on pull request #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

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


   @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 #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33150",
       "triggerID" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * cf337f5bb2d925c8f05d6c675fa8fc01fa180cba Azure: [CANCELED](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33150) 
   
   <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 #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33150",
       "triggerID" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33159",
       "triggerID" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a49d30664180850f03cf10f6e2e1c68bf868ccb8",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "a49d30664180850f03cf10f6e2e1c68bf868ccb8",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * f04b24004dfa631af9553ffad7cb35c6048cb878 Azure: [CANCELED](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33159) 
   * a49d30664180850f03cf10f6e2e1c68bf868ccb8 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 #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33150",
       "triggerID" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * cf337f5bb2d925c8f05d6c675fa8fc01fa180cba Azure: [CANCELED](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33150) 
   * f04b24004dfa631af9553ffad7cb35c6048cb878 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] fredia edited a comment on pull request #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

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


   CI passed at https://dev.azure.com/fredia/flink/_build/results?buildId=64&view=results.


-- 
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 #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33150",
       "triggerID" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33159",
       "triggerID" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a49d30664180850f03cf10f6e2e1c68bf868ccb8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33166",
       "triggerID" : "a49d30664180850f03cf10f6e2e1c68bf868ccb8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201",
       "triggerID" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * f6824b8151ccb63002b4059eb13eb448143be197 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201) 
   
   <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] fredia commented on pull request #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

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


   @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] Myasuka commented on pull request #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

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


   @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 #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33150",
       "triggerID" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * cf337f5bb2d925c8f05d6c675fa8fc01fa180cba Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33150) 
   * f04b24004dfa631af9553ffad7cb35c6048cb878 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 #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33150",
       "triggerID" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33159",
       "triggerID" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * cf337f5bb2d925c8f05d6c675fa8fc01fa180cba Azure: [CANCELED](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33150) 
   * f04b24004dfa631af9553ffad7cb35c6048cb878 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33159) 
   
   <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] Myasuka commented on a change in pull request #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

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



##########
File path: flink-state-backends/flink-statebackend-rocksdb/src/test/java/org/apache/flink/contrib/streaming/state/RocksDBIncrementalCheckpointUtilsTest.java
##########
@@ -95,39 +96,49 @@ public void testChooseTheBestStateHandleForInitial() {
         when(keyedStateHandle3.getKeyGroupRange()).thenReturn(new KeyGroupRange(8, 12));
         keyedStateHandles.add(keyedStateHandle3);
 
-        // this should choose no one handle.
-        Assert.assertNull(
+        Assert.assertEquals(
+                keyedStateHandle2,

Review comment:
       Why this test is different from previous one?
   In my opinon, we just make the option configurable, and it should not affect the testing result since we did not change the default overlap fraction threshold.




-- 
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 #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33150",
       "triggerID" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33159",
       "triggerID" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a49d30664180850f03cf10f6e2e1c68bf868ccb8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33166",
       "triggerID" : "a49d30664180850f03cf10f6e2e1c68bf868ccb8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201",
       "triggerID" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201",
       "triggerID" : "1070366163",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201",
       "triggerID" : "1070839385",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201",
       "triggerID" : "1071964690",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * f6824b8151ccb63002b4059eb13eb448143be197 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201) 
   
   <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] fredia commented on pull request #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

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


   CI has passed at https://dev.azure.com/fredia/flink/_build/results?buildId=64&view=results.


-- 
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] Myasuka closed pull request #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

Posted by GitBox <gi...@apache.org>.
Myasuka closed pull request #19106:
URL: https://github.com/apache/flink/pull/19106


   


-- 
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] Myasuka commented on a change in pull request #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

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



##########
File path: flink-state-backends/flink-statebackend-rocksdb/src/main/java/org/apache/flink/contrib/streaming/state/RocksDBConfigurableOptions.java
##########
@@ -255,6 +255,15 @@
                             "If true, RocksDB will use block-based filter instead of full filter, this only take effect when bloom filter is used. "
                                     + "The default value is 'false'.");
 
+    public static final ConfigOption<Double> RESTORE_OVERLAP_FRACTION_THRESHOLD =
+            key("state.backend.rocksdb.restore-overlap-fraction-threshold")
+                    .doubleType()
+                    .defaultValue(0.0)

Review comment:
       In this PR, we should still left this value as `0.75` as before. 

##########
File path: flink-state-backends/flink-statebackend-rocksdb/src/main/java/org/apache/flink/contrib/streaming/state/RocksDBIncrementalCheckpointUtils.java
##########
@@ -33,39 +33,30 @@
 import java.util.Collection;
 import java.util.Comparator;
 import java.util.List;
-import java.util.function.BiFunction;
 
 /** Utils for RocksDB Incremental Checkpoint. */
 public class RocksDBIncrementalCheckpointUtils {
-
-    /**
-     * The threshold of the overlap fraction of the handle's key-group range with target key-group
-     * range to be an initial handle.
-     */
-    private static final double OVERLAP_FRACTION_THRESHOLD = 0.75;
-
     /**
      * Evaluates state handle's "score" regarding to the target range when choosing the best state
-     * handle to init the initial db for recovery, if the overlap fraction is less than {@link
-     * #OVERLAP_FRACTION_THRESHOLD}, then just return {@code Score.MIN} to mean the handle has no
-     * chance to be the initial handle.
+     * handle to init the initial db for recovery.

Review comment:
       I think the description of `Score` should still stay 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] flinkbot commented on pull request #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * cf337f5bb2d925c8f05d6c675fa8fc01fa180cba 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 #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33150",
       "triggerID" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * cf337f5bb2d925c8f05d6c675fa8fc01fa180cba Azure: [CANCELED](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33150) 
   
   <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 #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33150",
       "triggerID" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33159",
       "triggerID" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a49d30664180850f03cf10f6e2e1c68bf868ccb8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33166",
       "triggerID" : "a49d30664180850f03cf10f6e2e1c68bf868ccb8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201",
       "triggerID" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201",
       "triggerID" : "1070366163",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * f6824b8151ccb63002b4059eb13eb448143be197 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201) 
   
   <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] Myasuka commented on pull request #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

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


   @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 #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33150",
       "triggerID" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33159",
       "triggerID" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a49d30664180850f03cf10f6e2e1c68bf868ccb8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33166",
       "triggerID" : "a49d30664180850f03cf10f6e2e1c68bf868ccb8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201",
       "triggerID" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201",
       "triggerID" : "1070366163",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * f6824b8151ccb63002b4059eb13eb448143be197 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201) 
   
   <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] fredia commented on pull request #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

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






-- 
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 #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33150",
       "triggerID" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33159",
       "triggerID" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a49d30664180850f03cf10f6e2e1c68bf868ccb8",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33166",
       "triggerID" : "a49d30664180850f03cf10f6e2e1c68bf868ccb8",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * f04b24004dfa631af9553ffad7cb35c6048cb878 Azure: [CANCELED](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33159) 
   * a49d30664180850f03cf10f6e2e1c68bf868ccb8 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33166) 
   
   <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 #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33150",
       "triggerID" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33159",
       "triggerID" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a49d30664180850f03cf10f6e2e1c68bf868ccb8",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33166",
       "triggerID" : "a49d30664180850f03cf10f6e2e1c68bf868ccb8",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a49d30664180850f03cf10f6e2e1c68bf868ccb8 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33166) 
   
   <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 #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33150",
       "triggerID" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33159",
       "triggerID" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a49d30664180850f03cf10f6e2e1c68bf868ccb8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33166",
       "triggerID" : "a49d30664180850f03cf10f6e2e1c68bf868ccb8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201",
       "triggerID" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201",
       "triggerID" : "1070366163",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201",
       "triggerID" : "1070839385",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * f6824b8151ccb63002b4059eb13eb448143be197 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201) 
   
   <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 #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33150",
       "triggerID" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * cf337f5bb2d925c8f05d6c675fa8fc01fa180cba Azure: [CANCELED](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33150) 
   * f04b24004dfa631af9553ffad7cb35c6048cb878 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 #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33150",
       "triggerID" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * cf337f5bb2d925c8f05d6c675fa8fc01fa180cba Azure: [CANCELED](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33150) 
   * f04b24004dfa631af9553ffad7cb35c6048cb878 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 #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33150",
       "triggerID" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33159",
       "triggerID" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a49d30664180850f03cf10f6e2e1c68bf868ccb8",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33166",
       "triggerID" : "a49d30664180850f03cf10f6e2e1c68bf868ccb8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201",
       "triggerID" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a49d30664180850f03cf10f6e2e1c68bf868ccb8 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33166) 
   * f6824b8151ccb63002b4059eb13eb448143be197 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201) 
   
   <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 #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33150",
       "triggerID" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33159",
       "triggerID" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a49d30664180850f03cf10f6e2e1c68bf868ccb8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33166",
       "triggerID" : "a49d30664180850f03cf10f6e2e1c68bf868ccb8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201",
       "triggerID" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201",
       "triggerID" : "1070366163",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201",
       "triggerID" : "1070839385",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201",
       "triggerID" : "1071964690",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * f6824b8151ccb63002b4059eb13eb448143be197 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201) 
   
   <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 #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33150",
       "triggerID" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33159",
       "triggerID" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a49d30664180850f03cf10f6e2e1c68bf868ccb8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33166",
       "triggerID" : "a49d30664180850f03cf10f6e2e1c68bf868ccb8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201",
       "triggerID" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201",
       "triggerID" : "1070366163",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201",
       "triggerID" : "1070839385",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201",
       "triggerID" : "1071964690",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "fdef055c05166ebd3c05f1f8a383f531480d1a22",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33291",
       "triggerID" : "fdef055c05166ebd3c05f1f8a383f531480d1a22",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * f6824b8151ccb63002b4059eb13eb448143be197 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201) 
   * fdef055c05166ebd3c05f1f8a383f531480d1a22 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33291) 
   
   <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 #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33150",
       "triggerID" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33159",
       "triggerID" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a49d30664180850f03cf10f6e2e1c68bf868ccb8",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "a49d30664180850f03cf10f6e2e1c68bf868ccb8",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * cf337f5bb2d925c8f05d6c675fa8fc01fa180cba Azure: [CANCELED](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33150) 
   * f04b24004dfa631af9553ffad7cb35c6048cb878 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33159) 
   * a49d30664180850f03cf10f6e2e1c68bf868ccb8 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 #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33150",
       "triggerID" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * cf337f5bb2d925c8f05d6c675fa8fc01fa180cba Azure: [CANCELED](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33150) 
   
   <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 #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

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






-- 
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 #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33150",
       "triggerID" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * cf337f5bb2d925c8f05d6c675fa8fc01fa180cba Azure: [CANCELED](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33150) 
   * f04b24004dfa631af9553ffad7cb35c6048cb878 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 #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33150",
       "triggerID" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * cf337f5bb2d925c8f05d6c675fa8fc01fa180cba Azure: [CANCELED](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33150) 
   
   <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 #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33150",
       "triggerID" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * cf337f5bb2d925c8f05d6c675fa8fc01fa180cba Azure: [CANCELED](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33150) 
   * f04b24004dfa631af9553ffad7cb35c6048cb878 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 #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33150",
       "triggerID" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33159",
       "triggerID" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * f04b24004dfa631af9553ffad7cb35c6048cb878 Azure: [CANCELED](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33159) 
   
   <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 #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33150",
       "triggerID" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33159",
       "triggerID" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a49d30664180850f03cf10f6e2e1c68bf868ccb8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33166",
       "triggerID" : "a49d30664180850f03cf10f6e2e1c68bf868ccb8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201",
       "triggerID" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201",
       "triggerID" : "1070366163",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * f6824b8151ccb63002b4059eb13eb448143be197 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201) 
   
   <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 #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33150",
       "triggerID" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33159",
       "triggerID" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a49d30664180850f03cf10f6e2e1c68bf868ccb8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33166",
       "triggerID" : "a49d30664180850f03cf10f6e2e1c68bf868ccb8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201",
       "triggerID" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201",
       "triggerID" : "1070366163",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201",
       "triggerID" : "1070839385",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * f6824b8151ccb63002b4059eb13eb448143be197 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201) 
   
   <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 #19106: [FLINK-26560][StateBackends] Make the threshold of the overlap fraction of incremental restoring configurable

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33150",
       "triggerID" : "cf337f5bb2d925c8f05d6c675fa8fc01fa180cba",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33159",
       "triggerID" : "f04b24004dfa631af9553ffad7cb35c6048cb878",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a49d30664180850f03cf10f6e2e1c68bf868ccb8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33166",
       "triggerID" : "a49d30664180850f03cf10f6e2e1c68bf868ccb8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201",
       "triggerID" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201",
       "triggerID" : "1070366163",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f6824b8151ccb63002b4059eb13eb448143be197",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201",
       "triggerID" : "1070839385",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * f6824b8151ccb63002b4059eb13eb448143be197 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=33201) 
   
   <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