HBase HFile BulkLoad

原文:http://shitouer.cn/2013/02/hbase-hfile-bulk-load/

一、这种方式有很多的优点:

1. 如果我们一次性入库Hbase巨量数据,处理速度慢不说,还特别占用Region资源, 一个比较高效便捷的方法就是使用 “Bulk Loading”方法,即HBase提供的HFileOutputFormat类。

2. 它是利用hbase的数据信息按照特定格式存储在hdfs内这一原理,直接生成这种hdfs内存储的数据格式文件,然后上传至合适位置,即完成巨量数据快速入库的办法。配合mapreduce完成,高效便捷,而且不占用region资源,增添负载。

二、这种方式也有很大的限制:

1. 仅适合初次数据导入,即表内数据为空,或者每次入库表内都无数据的情况。

2. HBase集群与Hadoop集群为同一集群,即HBase所基于的HDFS为生成HFile的MR的集群(额,咋表述~~~)

三、接下来一个demo,简单介绍整个过程。

1. 生成HFile部分

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package  zl.hbase.mr;
  
import  java.io.IOException;
  
import  org.apache.hadoop.conf.Configuration;
import  org.apache.hadoop.fs.Path;
import  org.apache.hadoop.hbase.KeyValue;
import  org.apache.hadoop.hbase.io.ImmutableBytesWritable;
import  org.apache.hadoop.hbase.mapreduce.HFileOutputFormat;
import  org.apache.hadoop.hbase.mapreduce.KeyValueSortReducer;
import  org.apache.hadoop.hbase.mapreduce.SimpleTotalOrderPartitioner;
import  org.apache.hadoop.hbase.util.Bytes;
import  org.apache.hadoop.io.LongWritable;
import  org.apache.hadoop.io.Text;
import  org.apache.hadoop.mapreduce.Job;
import  org.apache.hadoop.mapreduce.Mapper;
import  org.apache.hadoop.mapreduce.lib.input.FileInputFormat;
import  org.apache.hadoop.mapreduce.lib.output.FileOutputFormat;
import  org.apache.hadoop.util.GenericOptionsParser;
  
import  zl.hbase.util.ConnectionUtil;
  
public  class  HFileGenerator {
  
     public  static  class  HFileMapper  extends
             Mapper<LongWritable, Text, ImmutableBytesWritable, KeyValue> {
         @Override
         protected  void  map(LongWritable key, Text value, Context context)
                 throws  IOException, InterruptedException {
             String line = value.toString();
             String[] items = line.split( "," , - 1 );
             ImmutableBytesWritable rowkey =  new  ImmutableBytesWritable(
                     items[ 0 ].getBytes());
  
             KeyValue kv =  new  KeyValue(Bytes.toBytes(items[ 0 ]),
                     Bytes.toBytes(items[ 1 ]), Bytes.toBytes(items[ 2 ]),
                     System.currentTimeMillis(), Bytes.toBytes(items[ 3 ]));
             if  ( null  != kv) {
                 context.write(rowkey, kv);
             }
         }
     }
  
     public  static  void  main(String[] args)  throws  IOException,
             InterruptedException, ClassNotFoundException {
         Configuration conf =  new  Configuration();
         String[] dfsArgs =  new  GenericOptionsParser(conf, args)
                 .getRemainingArgs();
  
         Job job =  new  Job(conf,  "HFile bulk load test" );
         job.setJarByClass(HFileGenerator. class );
  
         job.setMapperClass(HFileMapper. class );
         job.setReducerClass(KeyValueSortReducer. class );
  
         job.setMapOutputKeyClass(ImmutableBytesWritable. class );
         job.setMapOutputValueClass(Text. class );
  
         job.setPartitionerClass(SimpleTotalOrderPartitioner. class );
  
         FileInputFormat.addInputPath(job,  new  Path(dfsArgs[ 0 ]));
         FileOutputFormat.setOutputPath(job,  new  Path(dfsArgs[ 1 ]));
  
         HFileOutputFormat.configureIncrementalLoad(job,
                 ConnectionUtil.getTable());
         System.exit(job.waitForCompletion( true ) ?  0  1 );
     }
}

生成HFile程序说明:

①. 最终输出结果,无论是map还是reduce,输出部分key和value的类型必须是: < ImmutableBytesWritable, KeyValue>或者< ImmutableBytesWritable, Put>。

②. 最终输出部分,Value类型是KeyValue 或Put,对应的Sorter分别是KeyValueSortReducer或PutSortReducer。

③. MR例子中job.setOutputFormatClass(HFileOutputFormat.class); HFileOutputFormat只适合一次对单列族组织成HFile文件。

④. MR例子中HFileOutputFormat.configureIncrementalLoad(job, table);自动对job进行配置。SimpleTotalOrderPartitioner是需要先对key进行整体排序,然后划分到每个reduce中,保证每一个reducer中的的key最小最大值区间范围,是不会有交集的。因为入库到HBase的时候,作为一个整体的Region,key是绝对有序的。

⑤. MR例子中最后生成HFile存储在HDFS上,输出路径下的子目录是各个列族。如果对HFile进行入库HBase,相当于move HFile到HBase的Region中,HFile子目录的列族内容没有了。

2. HFile入库到HBase

 

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package  zl.hbase.bulkload;
  
import  org.apache.hadoop.fs.Path;
import  org.apache.hadoop.hbase.mapreduce.LoadIncrementalHFiles;
import  org.apache.hadoop.util.GenericOptionsParser;
  
import  zl.hbase.util.ConnectionUtil;
  
public  class  HFileLoader {
  
     public  static  void  main(String[] args)  throws  Exception {
         String[] dfsArgs =  new  GenericOptionsParser(
                 ConnectionUtil.getConfiguration(), args).getRemainingArgs();
         LoadIncrementalHFiles loader =  new  LoadIncrementalHFiles(
                 ConnectionUtil.getConfiguration());
         loader.doBulkLoad( new  Path(dfsArgs[ 0 ]), ConnectionUtil.getTable());
     }
  
}

通过HBase中 LoadIncrementalHFiles的doBulkLoad方法,对生成的HFile文件入库

 

我修改了一下如下:

[java]  view plain  copy
  在CODE上查看代码片 派生到我的代码片
  1. import java.io.IOException;  
  2.   
  3. import org.apache.hadoop.conf.Configuration;  
  4. import org.apache.hadoop.fs.Path;  
  5. import org.apache.hadoop.hbase.HBaseConfiguration;  
  6. import org.apache.hadoop.hbase.KeyValue;  
  7. import org.apache.hadoop.hbase.client.HTable;  
  8. import org.apache.hadoop.hbase.io.ImmutableBytesWritable;  
  9. import org.apache.hadoop.hbase.mapreduce.HFileOutputFormat;  
  10. import org.apache.hadoop.hbase.mapreduce.SimpleTotalOrderPartitioner;  
  11. import org.apache.hadoop.hbase.util.Bytes;  
  12. import org.apache.hadoop.io.LongWritable;  
  13. import org.apache.hadoop.io.Text;  
  14. import org.apache.hadoop.mapreduce.Job;  
  15. import org.apache.hadoop.mapreduce.Mapper;  
  16. import org.apache.hadoop.mapreduce.lib.input.FileInputFormat;  
  17. import org.apache.hadoop.mapreduce.lib.output.FileOutputFormat;  
  18. import org.apache.hadoop.util.GenericOptionsParser;  
  19.   
  20. public class HFileGenerator {  
  21.   
  22.         public static class HFileMapper extends  
  23.                         Mapper<LongWritable, Text, ImmutableBytesWritable, KeyValue> {  
  24.   
  25.                 ImmutableBytesWritable tableKey = new ImmutableBytesWritable();  
  26.   
  27.                 @Override  
  28.                 protected void map(LongWritable key, Text value, Context context)  
  29.                                 throws IOException, InterruptedException {  
  30.   
  31.                         String line = value.toString();  
  32.                         String[] items = line.split(",", -1);  
  33.                         tableKey.set(Bytes.toBytes(items[0]));  
  34.                         KeyValue kv = new KeyValue(Bytes.toBytes(items[0]),  
  35.                                         Bytes.toBytes(items[1]), Bytes.toBytes(items[2]),  
  36.                                         System.currentTimeMillis(), Bytes.toBytes(items[3]));  
  37.   
  38.                         if (kv != null) {  
  39.                                 context.write(tableKey, kv);  
  40.                         }  
  41.   
  42.                 }  
  43.   
  44.         }  
  45.   
  46.         /** 
  47.          * * @param args * @throws IOException 
  48.          * */  
  49.         public static void main(String[] args) throws Exception {  
  50.   
  51.                 Configuration conf = new Configuration();  
  52.                 String[] otherArgs = new GenericOptionsParser(conf, args)  
  53.                                 .getRemainingArgs();  
  54.                 if (otherArgs.length != 2) {  
  55.                         System.err.println("Usage: " + HFileGenerator.class.getName()  
  56.                                         + " <in> <out>");  
  57.                         System.exit(2);  
  58.                 }  
  59.                 Job job = new Job(conf, "HFile bulk load test");  
  60.                 job.setJarByClass(HFileGenerator.class);  
  61.                 job.setMapperClass(HFileMapper.class);  
  62. //              job.setReducerClass(KeyValueSortReducer.class);  
  63. //              job.setOutputKeyClass(ImmutableBytesWritable.class);  
  64. //              job.setOutputValueClass(Text.class);  
  65. //              job.setPartitionerClass(SimpleTotalOrderPartitioner.class);  
  66.                 FileInputFormat.addInputPath(job, new Path(otherArgs[0]));  
  67.                 FileOutputFormat.setOutputPath(job, new Path(otherArgs[1]));  
  68.   
  69.                 Configuration hbaseconfig = null;  
  70.                 HTable table;  
  71.                 hbaseconfig = HBaseConfiguration.create();  
  72.                 table = new HTable(hbaseconfig, "member3");  
  73.                 HFileOutputFormat.configureIncrementalLoad(job, table);  
  74.                 job.setPartitionerClass(SimpleTotalOrderPartitioner.class);  
  75.                 System.exit(job.waitForCompletion(true) ? 0 : 1);  
  76.   
  77.         }  
  78. }  


// job.setReducerClass(KeyValueSortReducer.class);// job.setOutputKeyClass(ImmutableBytesWritable.class);// job.setOutputValueClass(Text.class);// job.setPartitionerClass(SimpleTotalOrderPartitioner.class);

这几句可以不用写,因为在HFileOutputFormat.configureIncrementalLoad(job, table);会设置它们。

 

2.HFileLoader的修改

[java]  view plain  copy
  在CODE上查看代码片 派生到我的代码片
  1. import org.apache.hadoop.conf.Configuration;  
  2. import org.apache.hadoop.fs.Path;  
  3. import org.apache.hadoop.hbase.HBaseConfiguration;  
  4. import org.apache.hadoop.hbase.client.HTable;  
  5. import org.apache.hadoop.hbase.mapreduce.LoadIncrementalHFiles;  
  6.   
  7. public class HFileLoader {  
  8.   
  9.         public static void main(String[] args) throws Exception {  
  10.                 Configuration hbaseconfig = null;  
  11.                 HTable table;  
  12.                 hbaseconfig = HBaseConfiguration.create();  
  13.                 table = new HTable(hbaseconfig, "member3");  
  14.   
  15.                 LoadIncrementalHFiles lf = new LoadIncrementalHFiles(hbaseconfig);  
  16.                 lf.doBulkLoad(new Path("hdfs://master24:9000/user/hadoop/hbasemapred/out"), table);  
  17.   
  18.         }  
  19. }  


Path用前一步mapreduce的输出目录,写全路径

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值