zoukankan      html  css  js  c++  java
  • 【转】在一个Job中同时写入多个HBase的table

    在进行Map/Reduce时,有的业务需要在一个job中将数据写入到多个HBase的表中,下面是实现方式。

    原文地址:http://lookfirst.com/2011/07/hbase-multitableoutputformat-writing-to.html

    HBase MultiTableOutputFormat writing to multiple tables in one Map Reduce Job

     
    Recently, I've been having a lot of fun learning about HBase and Hadoop. One esoteric thing I just learned about is the way that HBase tables are populated.

    By default, HBase / Map Reduce jobs can only write to a single table because you set the output handler at the job level with the job.setOutputFormatClass(). However, if you are creating an HBase table, chances are that you are going to want to build an index related to that table so that you can do fast queries on the master table. The most optimal way to do this is to write the data to both tables at the same time when you are importing the data. The alternative is to write another M/R job to do this after the fact, but that means reading all of the data twice, which is a lot of extra load on the system for no real benefit. Thus, in order to write to both tables at the same time, in the same M/R job, you need to take advantage of the MultiTableOutputFormat class to achieve this result. The key here is that when you write to the context, you specify the name of the table you are writing to. This is some basic example code (with a lot of the meat removed) which demonstrates this.

    static class TsvImporter extends Mapper<LongWritable, Text, ImmutableBytesWritable, Put> {
        @Override
        public void map(LongWritable offset, Text value, Context context) throws IOException {
            // contains the line of tab separated data we are working on (needs to be parsed out).
            byte[] lineBytes = value.getBytes();
    
            // rowKey is the hbase rowKey generated from lineBytes
            Put put = new Put(rowKey);
            // Create your KeyValue object
            put.add(kv);
            context.write("actions", put); // write to the actions table
    
            // rowKey2 is the hbase rowKey
            Put put = new Put(rowKey2);
            // Create your KeyValue object
            put.add(kv);
            context.write("actions_index", put); // write to the actions table
        }
    }
    
    public static Job createSubmittableJob(Configuration conf, String[] args) throws IOException {
        String pathStr = args[0];
        Path inputDir = new Path(pathStr);
        Job job = new Job(conf, "my_custom_job");
        job.setJarByClass(TsvImporter.class);
        FileInputFormat.setInputPaths(job, inputDir);
        job.setInputFormatClass(TextInputFormat.class);
        
        // this is the key to writing to multiple tables in hbase
        job.setOutputFormatClass(MultiTableOutputFormat.class);
        job.setMapperClass(TsvImporter.class);
        job.setNumReduceTasks(0);
    
        TableMapReduceUtil.addDependencyJars(job);
        TableMapReduceUtil.addDependencyJars(job.getConfiguration());
        return job;
    }
     
  • 相关阅读:
    Linux 不常用命令总结
    Linux系统修改防火墙配置
    更换git用户名或密码
    Linux 笔记
    laravel 上传文件到亚马逊 aws s3
    curl 发送请求的时候报错
    laraver + pusher + vue实现聊天室
    linux服务器查看公网IP信息的方法
    剑指offer :从尾到头打印链表
    剑指offer:替换空格
  • 原文地址:https://www.cnblogs.com/sixiweb/p/3390820.html
Copyright © 2011-2022 走看看