Skip to content

Commit 59ef2a1

Browse files
committed
+ Fixed problem with port 8088
1 parent 39cb146 commit 59ef2a1

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

config/yarn-site.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,13 @@
1212
<name>yarn.resourcemanager.hostname</name>
1313
<value>master-node</value>
1414
</property>
15+
<!-- Port 8088 uses tcp6 protocol which does not work correctly with published ports using host mode in
16+
docker-compose file (source: https://stackoverflow.com/q/23128593/7058363).
17+
Note that this setting is used only in master node -->
18+
<property>
19+
<name>yarn.resourcemanager.webapp.address</name>
20+
<value>0.0.0.0:8088</value>
21+
</property>
1522
<!-- These two properties prevent some memory issues -->
1623
<property>
1724
<name>yarn.nodemanager.vmem-check-enabled</name>

0 commit comments

Comments
 (0)