[Hadoop]Hadoop Archives

简介: 版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/SunnyYoona/article/details/53889284 1. 什么是Hadoop archives?Hadoop archives是特殊的档案格式。
版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/SunnyYoona/article/details/53889284
1. 什么是Hadoop archives?

Hadoop archives是特殊的档案格式。一个Hadoop archive对应一个文件系统目录。 Hadoop archive的扩展名是*.har。Hadoop archive包含元数据(形式是_index和_masterindx)和数据(part-*)文件。_index文件包含了档案中的文件的文件名和位置信息。

2. 如何创建archive?
2.1 格式
 
  
  1. hadoop archive -archiveName name -p <parent> <src>* <dest>
2.2 参数

(1)由-archiveName选项指定你要创建的archive的名字(name)。比如user_order.har。archive的名字的扩展名应该是*.har

(2)-p参数指定文件存档文件(src)的相对路径,举个例子:

 
  
  1. -p /foo/bar a/b/c e/f/g
这里的/foo/bar是a/b/c与e/f/g的父路径,所以完整路径为/foor/bar/a/b/c与/foo/bar/e/f/g

(3)src 是输入归档文件的目录

(4)dest 是目标目录,创建的archive会保存到该目录下

2.3 Example
 
  
  1. hadoop archive -archiveName user_order.har -p /user/xiaosi user/user_active_new_user order/entrance_order test/archive
在上面的例子中, /user/xiaosi/user/user_active_new_user 和 /user/xiaosi/order/entrance_order 会被归档到test/aarchive/user_order.har。当创建archive时,源文件不会被更改或删除。

注意创建archives是一个Map/Reduce job。你应该在map reduce集群上运行这个命令:

 
  
  1. xiaosi@yoona:~/opt/hadoop-2.7.3$ hadoop archive -archiveName user_order.har -p /user/xiaosi user/user_active_new_user order/entrance_order test/archive
  2. 16/12/26 20:45:36 INFO Configuration.deprecation: session.id is deprecated. Instead, use dfs.metrics.session-id
  3. 16/12/26 20:45:36 INFO jvm.JvmMetrics: Initializing JVM Metrics with processName=JobTracker, sessionId=
  4. 16/12/26 20:45:37 INFO jvm.JvmMetrics: Cannot initialize JVM Metrics with processName=JobTracker, sessionId= - already initialized
  5. 16/12/26 20:45:37 INFO jvm.JvmMetrics: Cannot initialize JVM Metrics with processName=JobTracker, sessionId= - already initialized
  6. 16/12/26 20:45:37 INFO mapreduce.JobSubmitter: number of splits:1
  7. 16/12/26 20:45:37 INFO mapreduce.JobSubmitter: Submitting tokens for job: job_local133687258_0001
  8. 16/12/26 20:45:37 INFO mapreduce.Job: The url to track the job: http://localhost:8080/
  9. 16/12/26 20:45:37 INFO mapreduce.Job: Running job: job_local133687258_0001
  10. ...
  11. 16/12/26 20:45:38 INFO mapred.LocalJobRunner: reduce task executor complete.
  12. 16/12/26 20:45:39 INFO mapreduce.Job: map 100% reduce 100%
  13. 16/12/26 20:45:39 INFO mapreduce.Job: Job job_local133687258_0001 completed successfully
  14. 16/12/26 20:45:39 INFO mapreduce.Job: Counters: 35
  15. File System Counters
  16. FILE: Number of bytes read=95398
  17. FILE: Number of bytes written=678069
  18. FILE: Number of read operations=0
  19. FILE: Number of large read operations=0
  20. FILE: Number of write operations=0
  21. HDFS: Number of bytes read=974540
  22. HDFS: Number of bytes written=975292
  23. HDFS: Number of read operations=55
  24. HDFS: Number of large read operations=0
  25. HDFS: Number of write operations=11
  26. Map-Reduce Framework
  27. Map input records=8
  28. Map output records=8
  29. Map output bytes=761
  30. Map output materialized bytes=783
  31. Input split bytes=147
  32. Combine input records=0
  33. Combine output records=0
  34. Reduce input groups=8
  35. Reduce shuffle bytes=783
  36. Reduce input records=8
  37. Reduce output records=0
  38. Spilled Records=16
  39. Shuffled Maps =1
  40. Failed Shuffles=0
  41. Merged Map outputs=1
  42. GC time elapsed (ms)=0
  43. Total committed heap usage (bytes)=593494016
  44. Shuffle Errors
  45. BAD_ID=0
  46. CONNECTION=0
  47. IO_ERROR=0
  48. WRONG_LENGTH=0
  49. WRONG_MAP=0
  50. WRONG_REDUCE=0
  51. File Input Format Counters
  52. Bytes Read=689
  53. File Output Format Counters
  54. Bytes Written=0
3. 如何查看archives中的文件?

archive作为文件系统层暴露给外界。所以所有的fs shell命令都能在archive上运行,但是要使用不同的URI。 另外,archive是不可改变的。所以重命名,删除和创建都会返回错误。

Hadoop Archives 的URI是

 
  
  1. har://scheme-hostname:port/archivepath/fileinarchive
如果没提供scheme-hostname,它会使用默认的文件系统。这种情况下URI是这种形式
 
  
  1. har:///archivepath/fileinarchive
获得创建的archive中的文件列表,使用命令
 
  
  1. hadoop dfs -ls har:///user/xiaosi/test/archive/user_order.har
Example:
 
   
  1. xiaosi@yoona:~/opt/hadoop-2.7.3$ hadoop dfs -ls har:///user/xiaosi/test/archive/user_order.har
  2. DEPRECATED: Use of this script to execute hdfs command is deprecated.
  3. Instead use the hdfs command for it.
  4. Found 2 items
  5. drwxr-xr-x - xiaosi supergroup 0 2016-12-13 13:39 har:///user/xiaosi/test/archive/user_order.har/order
  6. drwxr-xr-x - xiaosi supergroup 0 2016-12-24 15:51 har:///user/xiaosi/test/archive/user_order.har/user
查看archive中的entrance_order.txt文件的命令:
 
  
  1. hadoop dfs -cat har:///user/xiaosi/test/archive/user_order.har/order/entrance_order/entrance_order.txt
Example:
 
  
  1. xiaosi@yoona:~/opt/hadoop-2.7.3$ hadoop dfs -cat har:///user/xiaosi/test/archive/user_order.har/order/entrance_order/entrance_order.txt
  2. DEPRECATED: Use of this script to execute hdfs command is deprecated.
  3. Instead use the hdfs command for it.
  4. {"clickTime":"20161210 14:47:35.000","entrance":"306","actionTime":"20161210 14:48:14.000","orderId":"21014149","businessType":"TRAIN","gid":"1B369BF1D","uid":"8661840271741","vid":"01151","income":105.5,"status":140}
  5. {"clickTime":"20161210 14:47:35.000","entrance":"306","actionTime":"20161210 14:48:18.000","orderId":"121818e46","businessType":"TRAIN","gid":"69BF1D","uid":"86618471741","vid":"01151","income":105.5,"status":140

参考:https://hadoop.apache.org/docs/r1.2.1/hadoop_archives.html


目录
相关文章
|
4月前
|
XML 分布式计算 Hadoop
hadoop
hadoop
373 0
|
5天前
|
资源调度
Hadoop3的安装
Hadoop3的安装
11 0
|
27天前
|
分布式计算 资源调度 Hadoop
bigdata-06-Hadoop了解与配置
bigdata-06-Hadoop了解与配置
37 0
|
存储 分布式计算 大数据
hadoop介绍
以下内容是我的学习笔记,网络课程的笔记。出处 Hadoop实现了一个分布式文件系统(Hadoop Distributed File System),简称HDFS。
2650 0
|
分布式计算 Hadoop 网络安全
hadoop1.2.1的安装
前提:1.机器最好都做ssh免密登录,最后在启动hadoop的时候会简单很多 免密登录看免密登录   2.集群中的虚拟机最好都关闭防火墙,否则很麻烦   3集群中的虚拟机中必须安装jdk.   具体安装步骤如下: 1.
847 0
hadoop3.x的安装
请看https://www.cnblogs.com/garfieldcgf/p/8119506.html
824 0
|
SQL 分布式计算 HIVE
|
存储 分布式计算 Hadoop
|
分布式计算 Hadoop 索引
Hadoop Archives
本文讲的是Hadoop Archives,Hadoop archives是特殊的档案格式。一个Hadoop archive对应一个文件系统目录。 Hadoop archive的扩展名是*.har。Hadoop archive包含元数据(形式是_index和_masterindx)和数据(part-*)文件。
1216 0

相关实验场景

更多