Package com.mongodb.hadoop.examples.enron

Source Code of com.mongodb.hadoop.examples.enron.EnronMailReducer

/*
* Copyright 2011 10gen Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.mongodb.hadoop.examples.enron;

import com.mongodb.BasicDBObjectBuilder;
import com.mongodb.hadoop.io.BSONWritable;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.hadoop.io.IntWritable;
import org.apache.hadoop.mapred.JobConf;
import org.apache.hadoop.mapred.OutputCollector;
import org.apache.hadoop.mapred.Reporter;
import org.apache.hadoop.mapreduce.Reducer;
import org.bson.BSONObject;

import java.io.IOException;
import java.util.Iterator;

public class EnronMailReducer extends Reducer<MailPair, IntWritable, BSONWritable, IntWritable>
    implements org.apache.hadoop.mapred.Reducer<MailPair, IntWritable, BSONWritable, IntWritable> {

    private static final Log LOG = LogFactory.getLog(EnronMailReducer.class);

    @Override
    public void reduce(final MailPair pKey, final Iterable<IntWritable> pValues, final Context pContext)
        throws IOException, InterruptedException {
        int sum = 0;
        for (final IntWritable value : pValues) {
            sum += value.get();
        }
        BSONObject outDoc = BasicDBObjectBuilder.start().add("f", pKey.from).add("t", pKey.to).get();
        BSONWritable pkeyOut = new BSONWritable(outDoc);

        pContext.write(pkeyOut, new IntWritable(sum));
    }

    @Override
    public void reduce(final MailPair key, final Iterator<IntWritable> values, final OutputCollector<BSONWritable, IntWritable> output,
                       final Reporter reporter)
        throws IOException {
        int sum = 0;
        while (values.hasNext()) {
            sum += values.next().get();
        }
        BSONObject outDoc = BasicDBObjectBuilder.start().add("f", key.from).add("t", key.to).get();
        BSONWritable pkeyOut = new BSONWritable(outDoc);

        output.collect(pkeyOut, new IntWritable(sum));
    }

    @Override
    public void close() throws IOException {
    }

    @Override
    public void configure(final JobConf job) {
    }
}
TOP

Related Classes of com.mongodb.hadoop.examples.enron.EnronMailReducer

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.