如何在Reducer上使用MapReduce中的清理方法?

时间:2016-10-30 17:48:50

标签: java hadoop methods mapreduce reducers

您好〜我已经开始研究Hadoop MapReduce了。

当我在reduce中使用cleanup方法时,我收到错误。

  

exReduce类型的方法清理(Reducer.Context)必须覆盖或   实现超类型方法。

我想在reducer中使用cleanup方法。但这对我来说并不容易。

我做什么sholud ..?

这是我的示例代码。

extension Collection where Indices.Iterator.Element == Index {

    /// Returns the element at the specified index iff it is within bounds, otherwise nil.
    subscript (safe index: Index) -> Iterator.Element? {
        return indices.contains(index) ? self[index] : nil
    }
}

我想用这一行。

  

扩展MapReduceBase实现Reducer

不使用

  

扩展了Reducer。

有没有解决方法?

0 个答案:

没有答案