ml.shifu.guagua.example.sum.SumSequenceFileWorker Maven / Gradle / Ivy
/*
* Copyright [2013-2014] PayPal Software Foundation
*
* 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 ml.shifu.guagua.example.sum;
import java.io.IOException;
import java.util.LinkedList;
import java.util.List;
import ml.shifu.guagua.hadoop.io.GuaguaSequenceRecordReader;
import ml.shifu.guagua.hadoop.io.GuaguaWritableAdapter;
import ml.shifu.guagua.io.GuaguaFileSplit;
import ml.shifu.guagua.worker.AbstractWorkerComputable;
import ml.shifu.guagua.worker.WorkerContext;
import org.apache.hadoop.io.LongWritable;
import org.apache.hadoop.io.Text;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* {@link SumSequenceFileWorker} is used to accumulate the sum value for each line.
*
*
* Each line of input should be number.
*
*
* The master's sum value will be added to current iteration.
*/
public class SumSequenceFileWorker
extends
AbstractWorkerComputable, GuaguaWritableAdapter, GuaguaWritableAdapter, GuaguaWritableAdapter> {
private static final Logger LOG = LoggerFactory.getLogger(SumSequenceFileWorker.class);
private List list;
@Override
public void init(
WorkerContext, GuaguaWritableAdapter> workerContext) {
this.list = new LinkedList();
}
@Override
public GuaguaWritableAdapter doCompute(
WorkerContext, GuaguaWritableAdapter> workerContext) {
long sum = workerContext.getLastMasterResult() == null ? 0l : workerContext.getLastMasterResult().getWritable()
.get();
for(long longValue: this.list) {
sum += longValue;
}
LOG.info("worker: {} ; sum: {}", workerContext, sum);
return new GuaguaWritableAdapter(new LongWritable(sum));
}
@Override
public void load(GuaguaWritableAdapter currentKey, GuaguaWritableAdapter currentValue,
WorkerContext, GuaguaWritableAdapter> workerContext) {
this.list.add(Long.parseLong(currentValue.getWritable().toString()));
}
@Override
public void initRecordReader(GuaguaFileSplit fileSplit) throws IOException {
this.setRecordReader(new GuaguaSequenceRecordReader(fileSplit, Text.class, Text.class));
// this.setRecordReader(new GuaguaSequenceAsTextRecordReader(fileSplit));
}
}