HDFS

简介

NameNode

负责响应客户端请求。
负责管理元数据(文件名、副本数、Block存放的DN)。

DataNode

存储数据。
向NN发送心跳,汇报本身及Block信息。
默认block为128mb。

Secondary NameNode

监控HDFS状态的辅助后台程序,合并fsimage与edits。
fsimage:元数据镜像文件,存储NameNode元数据信息(Secondary Namenode通过合并edits来更新内容)
edits:操作日志文件。

HDFS优缺点

优点

  • 数据多份、硬件容错
  • 适合存储大文件
  • 一次写入多次读取
  • 构建在廉价的机械上

缺点

  • 不适合小文件存储

HDFS shell

hdfs dfs 也可以用hadoop fs
-ls

       ls [-R] <path>  显示当前目录下所有文件
示例:
       hadoop fs -ls /  [显示根目录文件
       hadoop fs -ls -R /   [递归展示

-put

       -put <localsrc> <dst>  //本地文件上传到hdfs
示例:
       hadoop fs -put hello.txt /           [上传文件到hdfs
       hadoop fs -put hello.dir /           [上传一个文件夹,并且文件夹中有文件
       hadoop fs -put ./salesFile ./wcFile /    [上传多个文件

-get

       -get [-ignoreCrc] <src> <localdst>  //复制文件到本地,可以忽略crc校验
示例:
       hadoop fs -get /hello.dir hello2.dir [从hdfs下载一个文件夹包括文件
       hadoop fs -get /hello.txt hello2.txt [从hdfs下载一个文件

-cat

       -cat <src>  //在终端显示文件内容
示例:
       hadoop fs -cat /hello.txt            [查看文件内容
       hadoop fs -cat /hello.dir/hello2.txt

-mkdir

       -mkdir <path>  //创建文件夹
示例:
       hadoop fs -mkdir /hello3.dir     [创建文件夹

-touchz

       -touchz <path>  //创建一个空文件
示例:
       hadoop fs -touchz /hello3.dir/hello3.txt [创建一个空文件

-mv

       -mv <src> <dst>  //移动多个文件到目标目录
示例:
       hadoop fs -mv /hello.txt /hello3.dir [移动文件
       hadoop fs -mv /hello.dir /hello3.dir [移动一个目录包括子文件

-cp

       -cp <src> <dst>  //复制多个文件到目标目录
       注意这是拷贝hdfs中的文件,而不能用来上传。
示例:
       hadoop fs -cp /hello3.dir/hello.txt /hello3.dir/hello2.txt   [拷贝一个文件
       hadoop fs -cp /hello3.dir /hello.dir                    [拷贝一整个目录

-rm

       -rm   [-r] //删除文件(夹)
示例:
       hadoop fs -rm /hello3.dir/hello.txt  [删除文件
       hadoop fs -rm -R /hello3.dir         [删除文件夹
       hadoop fs -rm -r /hello.dir          [删除文件夹

HDFS JavaAPI

添加依赖

    <dependency>
         <groupId>org.apache.hadoop</groupId>
         <artifactId>hadoop-client</artifactId>
         <version>2.6.0-cdh5.7.0</version>
    </dependency>
因为用的CDH的版本,所以需要加上这个
   <repositories>
      <repository>
         <id>cloudera</id>
         <url>https://repository.cloudera.com/artifactory/cloudera-repos/</url>
      </repository>
   </repositories>

上传文件

    /**
    * 上传文件
    * @throws URISyntaxException
    * @throws IOException
    * @throws InterruptedException
    */
   @Test
   public void put() throws URISyntaxException, IOException, InterruptedException {
      FileSystem fileSystem = FileSystem.get(
            new URI("hdfs://host000:8020"),
            new Configuration(), "user000");
//    //写法1-----------------------------
//    使用copyFromLocalFile方法
//    fileSystem.copyFromLocalFile(new Path("./file"), new Path("/file1"));

//    //写法2-----------------------------
//    使用create创建输出流
//    FileInputStream in = new FileInputStream("./file");
//    FSDataOutputStream out = fileSystem.create(new Path("/file2"));
//    IOUtils.copy(in, out);
//    in.close();
//    out.close();

//    //---------------------------------
//    带有进度提示
      FileInputStream in = new FileInputStream(
            "/Users/baozi/dev/doc/bigdata/hadoop-2.6.0-cdh5.7.0.tar.gz");
      FSDataOutputStream out = fileSystem.create(new Path("/file3"),
            () -> System.out.print("."));//这是实现Progressable接口
      IOUtils.copy(in, out);
      in.close();
      out.close();
   }

下载文件

    /**
    * 下载文件
    * @throws URISyntaxException
    * @throws IOException
    * @throws InterruptedException
    */
   @Test
   public void get() throws URISyntaxException, IOException, InterruptedException {
      FileSystem fileSystem = FileSystem.get(
            new URI("hdfs://host000:8020"),
            new Configuration(), "user000");
//    //写法1-----------------------------
//    使用copyToLocalFile方法
      fileSystem.copyToLocalFile(new Path("/file1"), new Path("./file1"));

//    //写法2-----------------------------
//    使用open创建输入流。(create和open都是相对hdfs的)
//    FSDataInputStream in = fileSystem.open(new Path("/file2"));
//    FileOutputStream out = new FileOutputStream("./file2");
//    IOUtils.copy(in, out);
//    out.close();
//    in.close();
   }

显示所有文件

/**
 * 查看某个目录下的所有文件
 * 这里会发现一个问题,我hadoop配置里副本数配置为1,但是我查看到的有些副本数是3
 * 原因是:使用Java API上传的文件使用的是Hadoop默认的副本3。
 *         但使用Hadoop命令上传的使用的是我们配置的,这里配置的是1。
 * @throws URISyntaxException
 * @throws IOException
 * @throws InterruptedException
 */
@Test
public void listFiles() throws URISyntaxException, IOException, InterruptedException {
   FileSystem fileSystem = FileSystem.get(
         new URI("hdfs://host000:8020"),
         new Configuration(), "user000");
   FileStatus[] fileStatus = fileSystem.listStatus(new Path("/"));
   for (FileStatus f : fileStatus) {
      String fileType = f.isDirectory() ? "目录" : "文件";
      String path = "Path:" + f.getPath();
      String blockSize = "BlockSize:" + f.getBlockSize();
      String len = "Len:" + f.getLen();
      String replications = "副本数:" + f.getReplication();
      System.out.printf("%s\t%s\t%s\t%s\t%s\n",fileType,path,blockSize,len,replications);
   }
}

显示文件内容

其实就是下载

/**
 * 查看HDFS文件的内容
 * @throws URISyntaxException
 * @throws IOException
 * @throws InterruptedException
 */
@Test
public void cat() throws URISyntaxException, IOException, InterruptedException {
   FileSystem fileSystem = FileSystem.get(
         new URI("hdfs://host000:8020"),
         new Configuration(), "user000");
   //其实和下载一样,就是不输出到文件,输出到控制台
   FSDataInputStream in = fileSystem.open(new Path("/file1"));
   IOUtils.copy(in,System.out);
   in.close();
}

创建文件夹

/**
 * 创建HDFS目录
 * @throws URISyntaxException
 * @throws IOException
 * @throws InterruptedException
 */
@Test
public void mkdirs() throws URISyntaxException, IOException, InterruptedException {
   FileSystem fileSystem = FileSystem.get(
         new URI("hdfs://host000:8020"),
         new Configuration(), "user000");
   fileSystem.mkdirs(new Path("/baozi/baozi2"));
}

创建文件

其实就是上传

/**
 * 创建文件
 * @throws URISyntaxException
 * @throws IOException
 * @throws InterruptedException
 */
@Test
public void touchz() throws URISyntaxException, IOException, InterruptedException {
   FileSystem fileSystem = FileSystem.get(
         new URI("hdfs://host000:8020"),
         new Configuration(), "user000");
   //就是创建一个输出流,写文件,其实和上传一样。
   FSDataOutputStream out = fileSystem.create(new Path("/baozi/baozi2/newFile"));
   out.write("baozi".getBytes());
   out.flush();
   out.close();
}

重命名文件

/**
 * 重命名
 * @throws URISyntaxException
 * @throws IOException
 * @throws InterruptedException
 */
@Test
public void rename() throws URISyntaxException, IOException, InterruptedException {
   FileSystem fileSystem = FileSystem.get(
         new URI("hdfs://host000:8020"),
         new Configuration(), "user000");
   fileSystem.rename(new Path("/baozi/baozi2/newFile"),new Path("/baozi/baozi2/oldFile"));
}

删除文件

/**
 * 删除
 * @throws URISyntaxException
 * @throws IOException
 * @throws InterruptedException
 */
@Test
public void rm() throws URISyntaxException, IOException, InterruptedException {
   FileSystem fileSystem = FileSystem.get(
         new URI("hdfs://host000:8020"),
         new Configuration(), "user000");
   //true递归删除
   fileSystem.delete(new Path("/baozi"),true);
}
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,128评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,316评论 3 388
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,737评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,283评论 1 287
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,384评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,458评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,467评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,251评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,688评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,980评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,155评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,818评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,492评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,142评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,382评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,020评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,044评论 2 352

推荐阅读更多精彩内容