gpt4 book ai didi

hadoop - 如何在用于联合的核心站点 xml 中描述挂载表?

转载 作者:可可西里 更新时间:2023-11-01 15:27:13 24 4
gpt4 key购买 nike

我在哪里可以找到 mountTable.xml 以及如何在 mountTable.xml 中添加命名空间?

下面给出的语句是什么意思?

<configuration xmlns:xi="http://www.w3.org/2001/XInclude"> <xi:include href="mountTable.xml" /></configuration>

最佳答案

mountTable.xml 默认不存在。在 $HADOOP_CONF_DIR 下创建一个并在其中添加所有可挂载的配置属性。例如,

<configuration>
<property>
<name>fs.viewfs.mounttable.ClusterX.homedir</name>
<value>/home</value>
</property>
<property>
<name>fs.viewfs.mounttable.ClusterX.link./home</name>
<value>hdfs://nn1-clusterx.example.com:8020/home</value>
</property>
....
</configuration>

由于 mounttable 属性是在与 core-site.xml 不同的文件中定义的,因此在 core-site.xml 中添加此配置元素以包含所有已定义的属性在 mountTable.xml 中。

<configuration xmlns:xi="http://www.w3.org/2001/XInclude"> 
<xi:include href="mountTable.xml" />
</configuration>

mounttable 属性不必在不同的文件中,您可以直接将它们包含在 core-site.xml 中。

引用A Mount Table Configuration Example

关于hadoop - 如何在用于联合的核心站点 xml 中描述挂载表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42748582/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com