[ https://issues.apache.org/jira/browse/FLINK-26560?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
ASF GitHub Bot updated FLINK-26560: ----------------------------------- Labels: pull-request-available (was: ) > Make the threshold of the overlap fraction of incremental restoring > configurable > -------------------------------------------------------------------------------- > > Key: FLINK-26560 > URL: https://issues.apache.org/jira/browse/FLINK-26560 > Project: Flink > Issue Type: Improvement > Components: Runtime / State Backends > Affects Versions: 1.15.0 > Reporter: Yanfei Lei > Assignee: Yanfei Lei > Priority: Major > Labels: pull-request-available > Fix For: 1.16.0 > > > Currently, the threshold of the overlap fraction of incremental restoring > `OVERLAP_FRACTION_THRESHOLD` is a hard-coded, fixed value. > > {code:java} > 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; > ... > } {code} > > `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, 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. -- This message was sent by Atlassian Jira (v8.20.1#820001)