ASP源码.NET源码PHP源码JSP源码JAVA源码DELPHI源码PB源码VC源码VB源码Android源码
当前位置:首页 >> 软件工程 >> HDFS块检查命令Fsck机理的分析

HDFS块检查命令Fsck机理的分析(1/10)

来源:网络整理     时间:2016-03-29     关键词:

本篇文章主要介绍了"HDFS块检查命令Fsck机理的分析",主要涉及到方面的内容,对于软件工程感兴趣的同学可以参考一下: 前言在HDFS中,所有的文件都是以block块的概念而存在的,那么在这样海量的文件数据的情况下,难免会发生一些文件块损坏的现象,那么有什么好的办法去发现呢.答案...

前言


在HDFS中,所有的文件都是以block块的概念而存在的,那么在这样海量的文件数据的情况下,难免会发生一些文件块损坏的现象,那么有什么好的办法去发现呢.答案是使用HDFS的fsck相关的命令.这个命令独立于dfsadmin的命令,可能会让部分人不知道HDFS中还存在这样的命令,本文就来深度挖掘一下这个命令的特殊的用处和内在机理的实现.

Fsck命令


其实说到fsck命令本身,熟悉Linux操作系统的人,可能或多或少听到过或使用过这个命令.Fsck命令的全称为file system check,更加类似的是一种修复命令.当然,本文不会讲大量的关于操作系统的fsck怎么用,而是HDFS下的fsck的使用,在bin/hdfs fsck下还是有很多可选参数的.

Fsck参数使用


本人在测试集群中输入hdfs fsck命令,获取了帮助信息,在此信息中展示了最全的参数使用说明:

$ hdfs fsck
Usage: hdfs fsck  [-list-corruptfileblocks | [-move | -delete | -openforwrite] [-files [-blocks [-locations | -racks]]]]
      start checking from this path
    -move   move corrupted filesto /lost+found
    -deletedelete corrupted files
    -files  print out files being checked
    -openforwrite   print out files opened forwrite
    -includeSnapshots   include snapshot data ifthe given path indicates a snapshottable directoryor there are snapshottable directories under it
    -list-corruptfileblocks print out list of missing blocks andfiles they belong to
    -blocks print out block report
    -locations  print out locations for every block
    -racks  print out network topology for data-node locations
    -storagepolicies    print out storage policy summary forthe blocks

    -blockId    print out which file this blockId belongs to, locations (nodes, racks) of this block, and other diagnostics info (under replicated, corrupted ornot, etc)

简单的总结一下,首先是必填参数和命令名:

相关图片

相关文章