hadoop GenerateDNBlockInfosReducer 源码
haddop GenerateDNBlockInfosReducer 代码
文件路径:/hadoop-tools/hadoop-dynamometer/hadoop-dynamometer-blockgen/src/main/java/org/apache/hadoop/tools/dynamometer/blockgenerator/GenerateDNBlockInfosReducer.java
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.hadoop.tools.dynamometer.blockgenerator;
import java.io.IOException;
import java.util.Iterator;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.io.IntWritable;
import org.apache.hadoop.io.NullWritable;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce.Reducer;
import org.apache.hadoop.mapreduce.lib.output.FileOutputFormat;
import org.apache.hadoop.mapreduce.lib.output.MultipleOutputs;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* This Reducer class generates a simple text file for each DN, listing the
* blocks to be generated.
*
* Input: {@link BlockInfo}'s from {@link XMLParserMapper}
*
* Output: A text file named as dni-XXX, where i is the ID of the DN and XXX is
* a reducer ID. Each line in the file is in format:
* blockID,blockGenStamp,blockSize
*/
public class GenerateDNBlockInfosReducer
extends Reducer<IntWritable, BlockInfo, NullWritable, Text> {
private static final Logger LOG = LoggerFactory
.getLogger(GenerateDNBlockInfosReducer.class);
private MultipleOutputs<NullWritable, Text> multiOutputs;
@Override
public void setup(
Reducer<IntWritable, BlockInfo, NullWritable, Text>.Context context) {
multiOutputs = new MultipleOutputs<>(context);
}
@Override
public void cleanup(Context context)
throws IOException, InterruptedException {
multiOutputs.close();
multiOutputs = null;
}
@Override
public void reduce(IntWritable key, Iterable<BlockInfo> values,
Context context) throws IOException, InterruptedException {
long blockIndex = 0;
int datanodeId = key.get();
String dnFile = "dn" + datanodeId + "-a-"
+ context.getTaskAttemptID().getId();
Iterator<BlockInfo> it = values.iterator();
long startTimestamp = System.currentTimeMillis();
long endTimestamp;
Path baseOutputPath = FileOutputFormat.getOutputPath(context);
String fullPath = new Path(baseOutputPath, dnFile).toString();
Text out = new Text();
while (it.hasNext()) {
BlockInfo blockInfo = it.next();
String blockLine = blockInfo.getBlockId() + ","
+ blockInfo.getBlockGenerationStamp() + "," + blockInfo.getSize();
out.set(blockLine);
multiOutputs.write(NullWritable.get(), out, fullPath);
blockIndex++;
// Report progress for every 1000 blocks
if (blockIndex % 1000 == 0) {
context.progress();
endTimestamp = System.currentTimeMillis();
System.out.println("Time taken to process 1000 records in ms:"
+ (endTimestamp - startTimestamp));
startTimestamp = endTimestamp;
}
}
LOG.info("Number of blocks processed:" + blockIndex);
}
}
相关信息
相关文章
0
赞
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦