Re: Logging Exceptions

2016-05-25 Thread David Kim
Awesome, thank you! David On Wed, May 25, 2016 at 4:54 AM Aljoscha Krettek wrote: > Hi David, > you are right, for some exceptions Flink only forwards to the > web-dashboard/application client but does not print to the log file. I > opened a Jira issue to track this: FLINK-3969 >

Re: Logging Exceptions

2016-05-25 Thread Aljoscha Krettek
Hi David, you are right, for some exceptions Flink only forwards to the web-dashboard/application client but does not print to the log file. I opened a Jira issue to track this: FLINK-3969 . Thanks for reporting! Aljoscha On Mon, 23 May 2016 at

Re: Logging Exceptions

2016-05-23 Thread David Kim
Hi Max! Unfortunately, that's not the behavior I'm seeing. I verified my log4.properties is configured properly because I do see messages in the /log directory. However, for this stack trace (grabbed from the web dashboard), I do not see it in my log file: java.lang.RuntimeException: Could not

Re: Logging Exceptions

2016-05-23 Thread Maximilian Michels
Hi David, I'm afraid Flink logs all exceptions. You'll find the exceptions in the /log directory. Cheers, Max On Mon, May 23, 2016 at 6:18 PM, David Kim wrote: > Hello! > > Just wanted to check up on this. :) > > I grepped around for `log.error` and it *seems* that currently the only > events

Re: Logging Exceptions

2016-05-23 Thread David Kim
Hello! Just wanted to check up on this. :) I grepped around for `log.error` and it *seems* that currently the only events for logging out exceptions are for non-application related errors. Thanks! David On Fri, May 20, 2016 at 12:35 PM David Kim wrote: > Hello! > > Using flink 1.0.2, I notice

Logging Exceptions

2016-05-20 Thread David Kim
Hello! Using flink 1.0.2, I noticed that exceptions thrown during a flink program would show up on the flink dashboard in the 'Exceptions' tab. That's great! However, I don't think flink currently logs this same exception. I was hoping there would be an equivalent `log.error` call so that third p