zentol commented on a change in pull request #18721:
URL: https://github.com/apache/flink/pull/18721#discussion_r804504037



##########
File path: flink-dist/src/main/resources/flink-conf.yaml
##########
@@ -36,13 +36,32 @@ jobmanager.rpc.address: localhost
 
 jobmanager.rpc.port: 6123
 
+# The host interface the JobManager will bind to. My default, this is 
localhost, and will prevent
+# the JobManager from communicating outside the machine/container it is 
running on.
+#
+# To enable this, set the bind-host address to one that has access to an 
outside facing network
+# interface, such as 0.0.0.0.
+
+jobmanager.bind-host: localhost
+
 
 # The total process memory size for the JobManager.
 #
 # Note this accounts for all memory usage within the JobManager process, 
including JVM metaspace and other overhead.
 
 jobmanager.memory.process.size: 1600m
 
+# The external address of the network interface where the TaskManager is 
exposed.
+
+taskmanager.host: localhost

Review comment:
       This shouldn't be necessary; this is just under which address other 
processes try to talk to it. If it isn't set then we'll figure that out on our 
own.
   
   




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to