This is an automated email from the ASF dual-hosted git repository. azagrebin pushed a commit to branch release-1.11 in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/release-1.11 by this push: new 056d677 [FLINK-18156] Add 'or default' for min/max to JVM Overhead sanity check's error message 056d677 is described below commit 056d677eb27b56751a6a8f4ff74313324265738c Author: Andrey Zagrebin <azagre...@apache.org> AuthorDate: Tue Jun 9 14:14:20 2020 +0300 [FLINK-18156] Add 'or default' for min/max to JVM Overhead sanity check's error message --- .../org/apache/flink/runtime/util/config/memory/ProcessMemoryUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flink-runtime/src/main/java/org/apache/flink/runtime/util/config/memory/ProcessMemoryUtils.java b/flink-runtime/src/main/java/org/apache/flink/runtime/util/config/memory/ProcessMemoryUtils.java index 96ead9a..16a6d2d 100644 --- a/flink-runtime/src/main/java/org/apache/flink/runtime/util/config/memory/ProcessMemoryUtils.java +++ b/flink-runtime/src/main/java/org/apache/flink/runtime/util/config/memory/ProcessMemoryUtils.java @@ -174,7 +174,7 @@ public class ProcessMemoryUtils<FM extends FlinkMemory> { !derivedJvmOverheadSize.equals(totalProcessMemorySize.multiply(jvmOverheadRangeFraction.getFraction()))) { LOG.info( "The derived JVM Overhead size ({}) does not match " + - "the configured JVM Overhead fraction ({}) from the configured Total Process Memory size ({}). " + + "the configured or default JVM Overhead fraction ({}) from the configured Total Process Memory size ({}). " + "The derived JVM OVerhead size will be used.", derivedJvmOverheadSize.toHumanReadableString(), jvmOverheadRangeFraction.getFraction(),