Re: Logging in flink 1.13.2 when running tests

2021-08-24 Thread Chesnay Schepler
The warning isn't strictly related to the UI; the logs can also be accessed through the REST API. I'd say disabling the logger is the easiest option, but you could also set the log.file property and have it point to some text file. On 24/08/2021 20:24, Nikola Hrusov wrote: Hi Chesnay, That

Re: Logging in flink 1.13.2 when running tests

2021-08-24 Thread Nikola Hrusov
Hi Chesnay, That is also what I did for the time being. I just wanted to hear if there is a better (configurable) way of doing this. I do not expect anybody to look into the Flink UI while the tests run in a minicluster setup. Thank you for your answer. Regards , Nikola On Tue, Aug 24, 2021 at

Re: Logging in flink 1.13.2 when running tests

2021-08-24 Thread Chesnay Schepler
It's not unusual for this warning to be logged. You could always disable logging from the WebMonitorUtils: logger.wmu.name = org.apache.flink.runtime.webmonitor.WebMonitorUtils logger.wmu.level = off On 24/08/2021 18:10, Nikola Hrusov wrote: Hello, I am trying to manage logs better with flink