This is an automated email from the ASF dual-hosted git repository. azagrebin pushed a commit to branch flip116 in repository https://gitbox.apache.org/repos/asf/flink.git
commit 6fe137c2d96144f52224d795c1260d7e4b74d411 Author: Andrey Zagrebin <[email protected]> AuthorDate: Wed Apr 15 11:33:25 2020 +0300 [FLINK-16746] Add default 'jobmanager.memory.process.size: 1472m' to flink-conf.yaml --- flink-dist/src/main/resources/flink-conf.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/flink-dist/src/main/resources/flink-conf.yaml b/flink-dist/src/main/resources/flink-conf.yaml index f58c04b..601bbcc 100644 --- a/flink-dist/src/main/resources/flink-conf.yaml +++ b/flink-dist/src/main/resources/flink-conf.yaml @@ -37,9 +37,11 @@ jobmanager.rpc.address: localhost jobmanager.rpc.port: 6123 -# The heap size for the JobManager JVM +# The total process memory size for the JobManager. +# +# Note this accounts for all memory usage within the JobManager process, including JVM metaspace and other overhead. -jobmanager.heap.size: 1024m +jobmanager.memory.process.size: 1472m # The total process memory size for the TaskManager.
