RE: Remote Debugging Flink

2018-06-22 Thread Teena Kappen // BPRISE
In conf.yaml file, replace the setting ‘env.java.opts: "-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=5005" ‘ as mentioned in the link with the below setting env.java.opts.taskmanager: "-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005" Regards, Teena From: Th

Re: Remote Debugging Flink

2018-06-22 Thread Till Rohrmann
Hi, did you specify the `suspend=y` flag? This could stop the TaskManagers from connecting to the ResourceManager and offering their slots. This can then ultimately lead to the NoResourceAvailableException if you don't allow the TaskManagers to continue. So my suspicion would be that you don't con