关注wx:CodingTechWork,一起学习进步。
问题1
如何查看hdfs的默认命名空间是哪个?
方案
1)通过查询core-site.xml
中的fs.defaultFS
配置值。
2)shell命令
hdfs getconf -confKey fs.default.name
或者
hdfs getconf -confKey fs.defaultFS
问题2
如何查看hdfs的所有命名空间列表?
方案
1)通过查询core-site.xml
中的dfs.nameservices
配置值
2)shell命令
hdfs getconf -confKey dfs.nameservices
网友评论