Skip to content

Commit

Permalink
[FLINK-18117][e2e] Dynamically allocate port causing test instabiliti…
Browse files Browse the repository at this point in the history
…es (apache#13894)
  • Loading branch information
rmetzger committed Nov 5, 2020
1 parent 56207e8 commit 358713b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ RUN set -x \
&& echo "Port 2122" >> /etc/ssh/sshd_config

# Hdfs ports
EXPOSE 50470 9000 50010 50020 50070 50075 50090 50475 50091 8020
EXPOSE 9000 50010 50020 50075 50090 50475 50091 8020
# Mapred ports
EXPOSE 19888
# Yarn ports
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,17 @@ under the License.
<name>dfs.namenode.rpc-address</name>
<value>master.docker-hadoop-cluster-network:9000</value>
</property>

<!-- Introduced to address instability described in FLINK-18117 -->
<property>
<name>dfs.namenode.http-address</name>
<value>0.0.0.0:0</value>
</property>
<property>
<name>dfs.namenode.https-address</name>
<value>0.0.0.0:0</value>
</property>

<property>
<name>dfs.permissions</name>
<value>true</value>
Expand Down

0 comments on commit 358713b

Please sign in to comment.