在Reducer中减去日期



对reducer的输入如下

key: 12
List<values> : 
               1,2,3,2013-12-23 10:21:44
               1,2,3,2013-12-23 10:21:59
               1,2,3,2013-12-23 10:22:07

需要的输出如下:

1,2,3,2013-12-23 10:21:44,15
1,2,3,2013-12-23 10:21:59,8
1,2,3,2013-12-23 10:22:07,0

请注意最后一列是10:21:59减去10:21:44。日期(下)-日期(当前)

我尝试加载到内存和减法,但它会导致java堆内存问题。非常感谢你的帮助。

这个键的数据量太大,大于1gb,无法装入主存。

也许在您的reduce()方法中有类似的伪代码:

long lastDate = 0;
V lastValue = null;
for (V value : values) {
    currentDate = parseDateIntoMillis(value);
    if (lastValue != null) {
        context.write(key, lastValue.toString() + "," + (currentDate - lastDate));
    }
    lastDate = currentDate;
    lastValue = value;
}
context.write(key, lastValue.toString() + "," + 0);

显然会有整理要做,但一般的想法是相当简单的。

请注意,由于您需要将下一个值的日期作为当前值计算的一部分,因此对值的迭代跳过了第一次写入,因此在循环之后进行了额外的写入,以确保所有值都被考虑在内。

如果你有任何问题,请尽管问。

可以通过以下代码

reduce (LongWritable key, Iterable<String> Values, context){
  Date currentDate = null;
  LongWritable  diff = new LongWritable();
 for (String value : values) {
    Date nextDate = new Date(value.toString().split(",")[3]);
    if (currentDate != null) {
        diff.set(Math.abs(nextDate.getTime()-currentDate.getTime())/1000)
        context.write(key, diff);
    }
    currentDate = nextDate;
}

}

相关内容

  • 没有找到相关文章

最新更新