Re: Flink Dashboard stopped showing list of uploaded jars

2016-07-20 Thread Maximilian Michels
Good catch! That should do it if you have access to the local storage of the JobManager. On Wed, Jul 20, 2016 at 5:25 PM, Aljoscha Krettek wrote: > Hi, > in the JobManager log there should be a line like this: > 2016-07-20 17:19:00,552 INFO > org.apache.flink.runtime.webmonitor.WebRuntimeMonitor

Re: Flink Dashboard stopped showing list of uploaded jars

2016-07-20 Thread Aljoscha Krettek
Hi, in the JobManager log there should be a line like this: 2016-07-20 17:19:00,552 INFO org.apache.flink.runtime.webmonitor.WebRuntimeMonitor - Using directory /some/dir for web frontend JAR file uploads if you manually delete the offending jar file from that directory it could solve your problem

Re: Flink Dashboard stopped showing list of uploaded jars

2016-07-20 Thread Maximilian Michels
Hi Gary, That is a bug. The main method might actually be there but it fails to load a class: > Caused by: java.lang.ClassNotFoundException: > org.shaded.apache.flink.streaming.api.functions.source.SourceFunction It looks like internal Flink classes have been shaded but not included in the job j

Flink Dashboard stopped showing list of uploaded jars

2016-07-20 Thread Gary Yao
Hi all, I accidentally packaged a Flink Job for which the main method could not be looked up. This breaks the Flink Dashboard's job submission page (no jobs are displayed). I opened a ticket: https://issues.apache.org/jira/browse/FLINK-4236 Is there a way to recover from this without restartin