@Override
protected void mapNativeValue(
final GeoWaveInputKey key,
final Object value,
final org.apache.hadoop.mapreduce.Mapper<GeoWaveInputKey, ObjectWritable, GeoWaveInputKey, ObjectWritable>.Context context )
throws IOException,
InterruptedException {
@SuppressWarnings("unchecked")
final AnalyticItemWrapper<T> wrapper = itemWrapperFactory.create((T) value);
outputKey.setAdapterId(key.getAdapterId());
outputKey.setDataId(new ByteArrayId(
StringUtils.stringToBinary(nestedGroupCentroidAssigner.getGroupForLevel(wrapper))));
outputKey.setInsertionId(key.getInsertionId());
context.write(
outputKey,
currentValue);
}
ConvexHullMapReduce.java 文件源码
java
阅读 22
收藏 0
点赞 0
评论 0
项目:geowave
作者:
评论列表
文章目录