Github user zentol commented on a diff in the pull request:
https://github.com/apache/flink/pull/5808#discussion_r179045129
--- Diff:
flink-core/src/main/java/org/apache/flink/configuration/TaskManagerOptions.java
---
@@ -153,13 +153,13 @@
" is typically proportional to the number of
physical CPU cores that the TaskManager's machine has" +
" (e.g., equal to the number of cores, or half
the number of cores).");
- public static final ConfigOption<Boolean>
DEBUG_MEMORY_USAGE_START_LOG_THREAD =
- key("taskmanager.debug.memory.startLogThread")
+ public static final ConfigOption<Boolean> DEBUG_MEMORY_LOG =
+ key("taskmanager.debug.memory.log")
.defaultValue(false)
.withDescription("Flag indicating whether to start a
thread, which repeatedly logs the memory usage of the JVM.");
- public static final ConfigOption<Long>
DEBUG_MEMORY_USAGE_LOG_INTERVAL_MS =
- key("taskmanager.debug.memory.logIntervalMs")
+ public static final ConfigOption<Long> DEBUG_MEMORY_USAGE_LOG_INTERVAL =
+ key("taskmanager.debug.memory.log-interval")
--- End diff --
missing deprecated key `"taskmanager.debug.memory.logIntervalMs"`
---