zoukankan      html  css  js  c++  java
  • DFS Used%: NaN%问题

    一.问题描述:

    [root@master sbin]# hdfs dfsadmin -report

    Configured Capacity: 0 (0 B)

    Present Capacity: 0 (0 B)

    DFS Remaining: 0 (0 B)

    DFS Used: 0 (0 B)

    DFS Used%: NaN%

    Under replicated blocks: 0

    Blocks with corrupt replicas: 0

    Missing blocks: 0

    Missing blocks (with replication factor 1): 0

    Pending deletion blocks: 0

    二.问题导致可能原因:

    1)多次格式化导致的,可以尝试删除hdfs下的data目录、name目录、tmp目录后格式,然后重新启动;

    2)没有关闭防火墙,可以通过以下命令检查是否关闭了防火墙,如果没有关闭先关闭对应节点的防火墙

    [root@slave1 data]# service iptables status

    iptables: Firewall is not running.

    3)不在同一个网络,需要相互ping通

    4)检查namenode节点上的cat /etc/hosts下有没有注释127.0.0.1映射表,如果没有先注释再重新启动

    [root@master hadoop-3.0.0-alpha4]# cat /etc/hosts

    127.0.0.1   master localhost

    ::1         localhost localhost.localdomain localhost6 localhost6.localdomain6

    192.168.28.130 www

    192.168.28.130 master

    192.168.28.136 slave1

    192.168.28.137 slave2

    发现有127.0.0.1映射,先注释掉再启动hadoop相关服务

    [root@master sbin]# ./start-all.sh 

    Starting namenodes on [master]

    Starting datanodes

    Starting secondary namenodes [master]

    Starting resourcemanager

    Starting nodemanagers

    三.问题解决后,运行结果如下:

    [root@master sbin]# hdfs dfsadmin -report

    Configured Capacity: 202921664512 (188.99 GB)

    Present Capacity: 166830989312 (155.37 GB)

    DFS Remaining: 166830940160 (155.37 GB)

    DFS Used: 49152 (48 KB)

    DFS Used%: 0.00%

    Under replicated blocks: 0

    Blocks with corrupt replicas: 0

    Missing blocks: 0

    Missing blocks (with replication factor 1): 0

    Pending deletion blocks: 0

    -------------------------------------------------

    Live datanodes (2):

    Name: 192.168.28.136:9866 (slave1)

    Hostname: slave1

    Decommission Status : Normal

    Configured Capacity: 101460832256 (94.49 GB)

    DFS Used: 24576 (24 KB)

    Non DFS Used: 12891869184 (12.01 GB)

    DFS Remaining: 83415031808 (77.69 GB)

    DFS Used%: 0.00%

    DFS Remaining%: 82.21%

    Configured Cache Capacity: 0 (0 B)

    Cache Used: 0 (0 B)

    Cache Remaining: 0 (0 B)

    Cache Used%: 100.00%

    Cache Remaining%: 0.00%

    Xceivers: 1

    Last contact: Thu Jun 07 10:52:01 CST 2018

    Last Block Report: Thu Jun 07 10:51:14 CST 2018

    Name: 192.168.28.137:9866 (slave2)

    Hostname: slave2

    Decommission Status : Normal

    Configured Capacity: 101460832256 (94.49 GB)

    DFS Used: 24576 (24 KB)

    Non DFS Used: 12890992640 (12.01 GB)

    DFS Remaining: 83415908352 (77.69 GB)

    DFS Used%: 0.00%

    DFS Remaining%: 82.21%

    Configured Cache Capacity: 0 (0 B)

    Cache Used: 0 (0 B)

    Cache Remaining: 0 (0 B)

    Cache Used%: 100.00%

    Cache Remaining%: 0.00%

    Xceivers: 1

    Last contact: Thu Jun 07 10:52:01 CST 2018

    Last Block Report: Thu Jun 07 10:51:14 CST 2018

  • 相关阅读:
    系统架构师基础到企业应用架构表现层
    网站性能优化之应用程序缓存中篇
    系统架构师基础到企业应用架构企业应用架构
    系统架构师基础到企业应用架构服务层
    http的请求和响应过程管道
    反射获取信息图(转)
    白话学习MVC(二)页面周期一
    Asp.Net请求原理and页面生命周期(转)
    前后台互访
    HttpApplication事件&ASP.NET页面周期
  • 原文地址:https://www.cnblogs.com/code4app/p/9305666.html
Copyright © 2011-2022 走看看