[ https://issues.apache.org/jira/browse/FLINK-8860?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16386035#comment-16386035 ]
ASF GitHub Bot commented on FLINK-8860: --------------------------------------- GitHub user NicoK opened a pull request: https://github.com/apache/flink/pull/5637 [FLINK-8860][flip6] stop SlotManager spamming logs for every TM heartbeat at log level 'info' ## What is the purpose of the change For every `TaskManager` heartbeat message, `SlotManager` was writing the message `Received slot report from instance...` into the logs at info level although this is clearly a debug information that is even already printed with a different of detail by the `ResourceManager`. ## Brief change log - change log level of a slot report to `debug` ## Verifying this change This change is a trivial rework / code cleanup without any test coverage. ## Does this pull request potentially affect one of the following parts: - Dependencies (does it add or upgrade a dependency): **no** - The public API, i.e., is any changed class annotated with `@Public(Evolving)`: **no** - The serializers: **no** - The runtime per-record code paths (performance sensitive): **no** - Anything that affects deployment or recovery: JobManager (and its components), Checkpointing, Yarn/Mesos, ZooKeeper: **yes** - The S3 file system connector: **no** ## Documentation - Does this pull request introduce a new feature? **no** - If yes, how is the feature documented? **not applicable** You can merge this pull request into a Git repository by running: $ git pull https://github.com/NicoK/flink flink-8860 Alternatively you can review and apply these changes as the patch at: https://github.com/apache/flink/pull/5637.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #5637 ---- commit aea1dc317d8f5280faadace3f872655a51f32b75 Author: Nico Kruber <nico@...> Date: 2018-03-05T12:55:04Z [FLINK-8860][flip6] stop SlotManager spamming logs for every TM heartbeat at log level 'info' ---- > SlotManager spamming log files > ------------------------------ > > Key: FLINK-8860 > URL: https://issues.apache.org/jira/browse/FLINK-8860 > Project: Flink > Issue Type: Bug > Components: JobManager, ResourceManager > Affects Versions: 1.5.0 > Reporter: Nico Kruber > Assignee: Nico Kruber > Priority: Critical > Labels: flip-6 > Fix For: 1.5.0 > > > {{SlotManager}} is spamming the log files a lot with > {code} > 2018-03-05 10:45:12,393 INFO > org.apache.flink.runtime.resourcemanager.slotmanager.SlotManager - Received > slot report from instance b16c4e516995d1e672c0933bb380770c. > 2018-03-05 10:45:12,393 INFO > org.apache.flink.runtime.resourcemanager.slotmanager.SlotManager - Received > slot report from instance de58fbf1c069620a4275c8b529deb20b. > 2018-03-05 10:45:12,393 INFO > org.apache.flink.runtime.resourcemanager.slotmanager.SlotManager - Received > slot report from instance 86ab5a7e1d57bb2883fc0d1f2aebb304. > 2018-03-05 10:45:12,393 INFO > org.apache.flink.runtime.resourcemanager.slotmanager.SlotManager - Received > slot report from instance 90f9ab2bd433db41b3ab567fd246fb3c. > 2018-03-05 10:45:12,393 INFO > org.apache.flink.runtime.resourcemanager.slotmanager.SlotManager - Received > slot report from instance ec99fcc5a801272402af9afe08a1001d. > 2018-03-05 10:45:12,394 INFO > org.apache.flink.runtime.resourcemanager.slotmanager.SlotManager - Received > slot report from instance 4c1c4b5ce52195dc90196c10c26d9ef8. > 2018-03-05 10:45:12,394 INFO > org.apache.flink.runtime.resourcemanager.slotmanager.SlotManager - Received > slot report from instance 2541d0f1398fc307aaf86bf7750535f1. > 2018-03-05 10:45:12,394 INFO > org.apache.flink.runtime.resourcemanager.slotmanager.SlotManager - Received > slot report from instance 91d94a9fdfce3cbcef32ac1c6e7b3fbf. > 2018-03-05 10:45:22,392 INFO > org.apache.flink.runtime.resourcemanager.slotmanager.SlotManager - Received > slot report from instance 91d94a9fdfce3cbcef32ac1c6e7b3fbf. > 2018-03-05 10:45:22,394 INFO > org.apache.flink.runtime.resourcemanager.slotmanager.SlotManager - Received > slot report from instance 90f9ab2bd433db41b3ab567fd246fb3c. > {code} > This message is printed once per {{TaskManager}} heartbeat. -- This message was sent by Atlassian JIRA (v7.6.3#76005)