批量Load到HBase

来源:互联网 发布:淘宝竞拍是真的吗 编辑:程序博客网 时间:2024/06/05 03:23

hbase提供了写的操作,通常,我们可以采用HBase的Shell 客户端或者Java API进行操作。

如果数据量大的话,这两种操作是很费时的。其实如果了解了HBase的数据底层存储的细节的话,HBase的数据存储格式是HFile定义的格式。

批量导入HBase主要分两步:

  • 通过mapreduce在输出目录OutputDir下生成一系列按Store存储结构一样的,存储HFile文件
  • 通过LoadIncrementalHFiles.doBulkLoad把OutputDir里面的数据导入HBase表中
优点
  1. HBase提供了一种直接写hfile文件的类,同时通过类似传统数据库的load把这些文件写进去,不再需要通过客户端或Java API一条一条插进去,
  2. 这些接口简单方便,快捷灵活;
  3. 应用不需要一直去连HBase集群进行RPC multi写,提高mapreduce效率;
  4. HBase集群也相应减少不必要的连接,可以让它去多干些其它的事,效率更加高效,降低HBase集群因为大量并发写而产生不必要的风险。
1. 从HDFS批量导入

在MapReduce里面就把想要的输出成HFileOutputFormat格式的文件,然后通过LoadIncrementalHFiles.doBulkLoad方式就可以load进去即可。例子如下: 

Java代码  收藏代码
  1. Configuration conf = getConf();  
  2. conf.set("hbase.table.name", args[2]);  
  3. // Load hbase-site.xml  
  4. HBaseConfiguration.addHbaseResources(conf);  
  5. Job job = new Job(conf, "HBase Bulk Import Example");  
  6. job.setJarByClass(Mapper2.class);  
  7. job.setMapperClass(Mapper2.class);  
  8. job.setMapOutputKeyClass(ImmutableBytesWritable.class);  
  9. job.setMapOutputValueClass(KeyValue.class);  
  10. job.setInputFormatClass(TextInputFormat.class);  
  11.   
  12. // Auto configure partitioner and reducer  
  13. HTable hTable = new HTable(conf, args[2]);  
  14. HFileOutputFormat.configureIncrementalLoad(job, hTable);  
  15.   
  16. FileInputFormat.addInputPath(job, new Path(args[0]));  
  17. FileOutputFormat.setOutputPath(job, new Path(args[1]));  
  18. job.waitForCompletion(true);  
  19.   
  20. // Load generated HFiles into table  
  21. LoadIncrementalHFiles loader = new LoadIncrementalHFiles(conf);  
  22. loader.doBulkLoad(new Path(args[1]), hTable);  
2. 从MySQL批量导入

这个星期把一些MySQL表导到线上HBase表。这个MySQL表散了100份,在HBase集群未提供向业务使用时,通过Sqoop工具导进HBase表所花费的时间大约32个小时(已串行化),在hbase集群繁忙时,花了10个小时都还没有把一张表导到HBase里面。这是有原因的,Sqoop未实现批量导的功能,它通常是边读边写。

后来自己写了一个从MySQL批量导入HBase的应用程序,每个表导入HBase所需时间平均只需要8分钟。

核心代码如下:

Java代码  收藏代码
  1. HBaseConfiguration.addHbaseResources(conf);  
  2.   
  3. Job job = new Job(conf, "Load_MySQL_" + table + "_to_HBase_" + hbaseTable);  
  4. // 用来读mysql的Mapper  
  5. job.setJarByClass(MysqlMapper.class);  
  6.   
  7. job.setMapperClass(MysqlMapper.class);  
  8. job.setMapOutputKeyClass(ImmutableBytesWritable.class);  
  9. job.setMapOutputValueClass(KeyValue.class);  
  10. //配置DB参数  
  11. DBConfiguration.configureDB(job.getConfiguration(), driver, connect, username, password);  
  12. DataDrivenDBInputFormat.setInput(job, dbWritableClass, query, boundaryQuery);  
  13. DataDrivenDBInputFormat.setInput(job, dbWritableClass, table, conditions, splitBy, columns);  
  14. //设置输出路径  
  15. FileOutputFormat.setOutputPath(job, new Path(tmpTargetDir));  
  16. // 自动设置partitioner和reduce  
  17. HTable hTable = new HTable(conf, hbaseTable);  
  18. HFileOutputFormat.configureIncrementalLoad(job, hTable);  
  19.   
  20. job.waitForCompletion(true);  
  21.   
  22. // 上面JOB运行完后,就把数据批量load到HBASE中  
  23. LoadIncrementalHFiles loader = new LoadIncrementalHFiles(conf);  
  24. loader.doBulkLoad(new Path(tmpTargetDir), hTable);  
原创粉丝点击