码迷,mamicode.com
首页 > 其他好文 > 详细

hadoop 计数器

时间:2014-10-29 00:17:37      阅读:330      评论:0      收藏:0      [点我收藏+]

标签:hadoop   计数器   

一、hadoop有很多自带的计数器,相信看过运行log的都会看到各种数据
二、用户自定义计数器
在开发中经常需要记录错误的数据条数,就可以用计数器来解决。

1、定义:用一个枚举来定义一组计数器,枚举中的每个元素都是一个计数器

在main类中定义

enum RecordsCounter{
    RIGHT_COUNTER,
    WRONG_COUNTER
  };

2、使用
在map和reduce端均可使用,job会在技术后收集数据。
在需要记录的地方:
context.getCounter(RecordsCounter.WRONG_COUNTER).increment(1);

在run函数中,在job执行完后得到结果:

Counters counters = job.getCounters();
Counter counter = counters.findCounter(RecordsCounter.WRONG_COUNTER);
Long wrongCount = counter.getValue();


hadoop 计数器

标签:hadoop   计数器   

原文地址:http://blog.csdn.net/smile0198/article/details/40559769

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!