This PR change the recycle log threshold from (purge_threshold / target_file_size) + 2 to (purge_threshold / target_file_size)*1.5 to avoid repeatedly creating and purging log files when tikv's log compaction has non-trivial latency.
Also changes the prefill_limit's semantic meaning, after this change, it will means the total log files threshold instead of recycle files threshold.
(purge_threshold / target_file_size) + 2
to(purge_threshold / target_file_size)*1.5
to avoid repeatedly creating and purging log files when tikv's log compaction has non-trivial latency.prefill_limit
's semantic meaning, after this change, it will means the total log files threshold instead of recycle files threshold.