Hi everyone,
We are attempting to run flink 1.2 in a distributed dockerized environment and are running into issues when running jobs in parallel. The exception we are getting fairly quickly after start up is: org.apache.flink.runtime.io. This only occurs when running in parallel but I don't have a lot to go on from the exception. We have configured the following ports: jobmanager.rpc.port: 6123 taskmanager.rpc.port: 6122 taskmanager.data.port: 6121 And have mapped the docker ports 6121 and 6122 on the task managers as well as 6123 on the job manager. Does anyone have any suggestions for other places to look or settings to try? Thanks, David |
Hi! Can it be that some hostname / IP address mapping / etc gets thrown off somewhere in the process? This exception looks like the following happens: - JobManager gets a message from a TaskManager that a partition is ready, notifies other TaskManagers - TaskManager gets the update message, connects to the address of the indicated TaskManager - That taskmanager does not have that partition Is it possible that JobManager / TaskManager see different names / addresses? Also, is that Flink 1.2, DataSet job? Stephan On Wed, May 10, 2017 at 7:05 PM, David Brelloch <[hidden email]> wrote:
|
Stephan, Thanks for pointing us in the right direction on the different addresses. That was the issue. David On Wed, May 10, 2017 at 3:03 PM, Stephan Ewen <[hidden email]> wrote:
|
Glad to hear it!
Overlay networks (as most container infras use) are tricky and we need to add some code to make diagnostics of issues easier in those cases... Stephan On Wed, May 10, 2017 at 9:30 PM, David Brelloch <[hidden email]> wrote:
|
Free forum by Nabble | Edit this page |