分享

HBase MapReduce实例分析

问题导读:
1.hbase的mapreduce与hadoop mapreduce的区别点在什么地方?
2.java.lang.NoClassDefFoundError: org/apache/hadoop/hbase/HTableDescriptor可能的解决方案是什么?






跟Hadoop的无缝集成使得使用MapReduce对HBase的数据进行分布式计算非常方便,本文将介绍HBase下 MapReduce开发要点。很好理解本文前提是你对Hadoop MapReduce有一定的了解,如果你是初次接触Hadoop MapReduce编程,可以参考 " mapreduce学习指导及疑难解惑汇总" 这篇文章来建立基本概念。

  1. package hbase;
  2. import java.io.IOException;
  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.HColumnDescriptor;
  7. import org.apache.hadoop.hbase.HTableDescriptor;
  8. import org.apache.hadoop.hbase.client.HBaseAdmin;
  9. import org.apache.hadoop.hbase.client.Put;
  10. import org.apache.hadoop.hbase.mapreduce.TableOutputFormat;
  11. import org.apache.hadoop.hbase.mapreduce.TableReducer;
  12. import org.apache.hadoop.hbase.util.Bytes;
  13. import org.apache.hadoop.io.IntWritable;
  14. import org.apache.hadoop.io.LongWritable;
  15. import org.apache.hadoop.io.NullWritable;
  16. import org.apache.hadoop.io.Text;
  17. import org.apache.hadoop.mapreduce.Job;
  18. import org.apache.hadoop.mapreduce.Mapper;
  19. import org.apache.hadoop.mapreduce.lib.input.FileInputFormat;
  20. import org.apache.hadoop.mapreduce.lib.input.TextInputFormat;
  21. public class WordCountHBase {
  22.     public static class Map extends
  23.             Mapper<LongWritable, Text, Text, IntWritable> {
  24.         private IntWritable i = new IntWritable(1);
  25.         public void map(LongWritable key, Text value, Context context)
  26.                 throws IOException, InterruptedException {
  27.             String s[] = value.toString().trim().split(" ");
  28.             // 将输入的每行以空格分开
  29.             for (String m : s) {
  30.                 context.write(new Text(m), i);
  31.             }
  32.         }
  33.     }
  34.     public static class Reduce extends
  35.             TableReducer<Text, IntWritable, NullWritable> {
  36.         public void reduce(Text key, Iterable<IntWritable> values,
  37.                 Context context) throws IOException, InterruptedException {
  38.             int sum = 0;
  39.             for (IntWritable i : values) {
  40.                 sum += i.get();
  41.             }
  42.             Put put = new Put(Bytes.toBytes(key.toString()));
  43.             // Put实例化,每一个词存一行
  44.             put.add(Bytes.toBytes("content"), Bytes.toBytes("count"),
  45.                     Bytes.toBytes(String.valueOf(sum)));
  46.             // 列族为content,列为count,列值为数目
  47.             context.write(NullWritable.get(), put);
  48.         }
  49.     }
  50.     public static void createHBaseTable(String tableName) throws IOException {
  51.         HTableDescriptor htd = new HTableDescriptor(tableName);
  52.         HColumnDescriptor col = new HColumnDescriptor("content");
  53.         htd.addFamily(col);
  54.         Configuration conf = HBaseConfiguration.create();
  55.         conf.set("hbase.zookeeper.quorum", "libin2");
  56.         HBaseAdmin admin = new HBaseAdmin(conf);
  57.         if (admin.tableExists(tableName)) {
  58.             System.out.println("table exists, trying to recreate table......");
  59.             admin.disableTable(tableName);
  60.             admin.deleteTable(tableName);
  61.         }
  62.         System.out.println("create new table:" + tableName);
  63.         admin.createTable(htd);
  64.     }
  65.     public static void main(String[] args) throws IOException,
  66.             InterruptedException, ClassNotFoundException {
  67.         String tableName = "WordCount";
  68.         Configuration conf = new Configuration();
  69.         conf.set(TableOutputFormat.OUTPUT_TABLE, tableName);
  70.         createHBaseTable(tableName);
  71.         String input = args[0];
  72.         Job job = new Job(conf, "WordCount table with " + input);
  73.         job.setJarByClass(WordCountHBase.class);
  74.         job.setNumReduceTasks(3);
  75.         job.setMapperClass(Map.class);
  76.         job.setReducerClass(Reduce.class);
  77.         job.setMapOutputKeyClass(Text.class);
  78.         job.setMapOutputValueClass(IntWritable.class);
  79.         job.setInputFormatClass(TextInputFormat.class);
  80.         job.setOutputFormatClass(TableOutputFormat.class);
  81.         FileInputFormat.addInputPath(job, new Path(input));
  82.         System.exit(job.waitForCompletion(true) ? 0 : 1);
  83.     }
  84. }
复制代码
二、把java代码打成jar包
1.png
如果同时用到了两个jar包,需要在两个jar包之间加一个":"分隔符。
2.png

三、运行程序
3.png
运行WordCountHBase.jar可能会报错:java.lang.NoClassDefFoundError: org/apache/hadoop/hbase/HTableDescriptor
解决方法(把hbase的核心jar包和hbase自带的Zookeeperjar包拷贝到hadoop的安装目录\lib下,然后重启服务): 4.png
然后再次执行
5.png
6.png
7.png
8.png

四、查看HBase表中的数据
9.png
  如果表中有保存好的MapReduce处理后的数据,说明成功!本文通过实例分析演示了使用MapReduce分析HBase的数据,需要注意的这只是一种常规的方式(分析表中的数据存到另外的表中),实际上不局限于此,不过其他方式跟此类似。






已有(1)人评论

跳转到指定楼层
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关闭

推荐上一条 /2 下一条