- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我正在尝试使用 map/reducer 来处理与我之前使用的不同的 staff。
我现在有一个这样的输入文件:
1 50000 2015 pc technology
2 15424 1998 mouse technology
3 78420 2010 pen technology
4 8452 2000 pen stationery
5 4125 2000 pen stationery
id、价格、年份、项目、类型
我正在尝试做的是计算特定类型的特定商品的平均价格、每种类型以及该特定商品售出的每一年的平均价格。所以,举个例子,我开始为钢笔做这些东西。 2000 年钢笔的平均价格是多少?在我的示例中,有两种笔(用于 PC 的数字笔和标准笔),所以我喜欢这样的输出:
pen stationery 6288 2000
pen technology 78420 2010
我遇到的问题是我不知道该怎么做...我知道如何使用组合器/ reducer 计算平均值,但我不知道如何跟踪年份和项目...我的逻辑是这样的:检查元素是否是一支钢笔,然后跟踪那支钢笔的年份和价格,并用这些数据计算平均值。但我不知道该怎么做。非常感谢任何帮助,谢谢
import java.io.IOException;
import java.util.StringTokenizer;
import java.util.*;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.io.IntWritable;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce.Job;
import org.apache.hadoop.mapreduce.Mapper;
import org.apache.hadoop.mapreduce.Reducer;
import org.apache.hadoop.mapreduce.lib.input.FileInputFormat;
import org.apache.hadoop.mapreduce.lib.output.FileOutputFormat;
public class Draft2 {
public static class TokenizerMapper extends Mapper<Object, Text, Text, Text>{
private Text word = new Text();
private Text word2 = new Text();
public void map(Object key, Text value, Context context) throws IOException, InterruptedException {
String[] tokens = value.toString().split(",");
String price = "";
String item = "";
String typ = "";
String year = "";
if(tokens.length >= 2)
price = tokens[1];
if(tokens.length >= 3)
year = tokens[2];
if (tokens.length >=5)
typ = tokens[4];
if (tokens.length >=14)
item = tokens[13];
if(!item.isEmpty())
{
word.set(item + "|" + year);
word2.set(price + "|" + typ);
context.write(word, word2);
}
}
}
public static class MeanCombiner extends Reducer <Text,Text,Text,Text> {
private Text word = new Text();
private Text word2 = new Text();
public void combine(Text key, Iterable<Text> values, Context context) throws IOException, InterruptedException {
int sum = 0;
int counter = 0;
final Iterator<Text> itr = values.iterator();
String[] strs = key.toString().split("|");
final String[] tokens = values.toString().split("|");
String item = strs[0];
String typ = tokens[1];
String type = "pen";
String year = strs[1];
Boolean found = false;
for (Text val: values) {
String[] strs = key.toString().split("|");
final String[] tokens = values.toString().split("|");
String item= strs[0];
String typ = tokens[1];
String type = "pen";
String year = strs[1];
if (typ.equals(type)) {
found = true;
//don't know how to go on
}
/*this part is for the average but with wrong data*/
while (itr.hasNext()) {
if (typ.equals(type)) {
final String price = tokens[0];
final int value = Integer.parseInt(price);
counter++;
sum += value;
}
}
final int average = sum/counter;
String avg = Integer.toString(average);
String count = Integer.toString(counter);
word.set(key.toString());
word2.set(avg + "|" + count);
context.write(word, word2);
}
}
/*The reducer is incomplete*/
public static class MeanReducer extends Reducer<Text,Text,Text,Text> {
private Text word = new Text();
private Text word2 = new Text();
public void reduce(Text key, Iterable<Text> values, Context context
) throws IOException, InterruptedException {
word.set(k);
word2.set();
context.write(word, word2);
}
}
public static void main(String[] args) throws Exception {
Configuration conf = new Configuration();
Job job = Job.getInstance(conf, "Draft2");
job.setJarByClass(Draft2.class);
job.setCombinerClass(MeanCombiner.class);
job.setMapperClass(TokenizerMapper.class);
job.setReducerClass(MeanReducer.class);
job.setMapOutputKeyClass(Text.class);
job.setMapOutputValueClass(Text.class);
job.setOutputKeyClass(Text.class);
job.setOutputValueClass(Text.class);
FileInputFormat.addInputPath(job, new Path(args[0]));
FileOutputFormat.setOutputPath(job, new Path(args[1]));
System.exit(job.waitForCompletion(true) ? 0 : 1);
}
}
最佳答案
计算平均值时不应使用组合器。
假设以下是您的输入,我将解释解决方案:
1 50000 2015 pc technology
2 15424 1998 mouse technology
3 78420 2010 pen technology
4 8452 2000 pen stationery
5 4125 2000 pen stationery
映射器:
因此映射器的输出将是:
2015|pc|technology 50000
1998|mouse|technology 15424
2010|pen|technology 78420
2000|pen|stationery 8452
2000|pen|stationery 4125
reducer :
例如以下键将进入同一个 reducer :
2000|pen|stationery 8452
2000|pen|stationery 4125
输出将是:
pen stationery 6288 2000
关于java - 缺少 Map/Combine/Reduce 的逻辑,关于如何跟踪某些东西,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34342898/
我不知道如何从 reducerRegister.js 中的 reducerForm.js reducer 访问 bool 值 isLoading 标志。我使用了 combineReducers() 并
我正在尝试找到一种理想的方法来更新我的状态树上的几个顶级字段,同时仍然维护拆分 reducer 。 这是我想出的一个简单的解决方案。 var state = { fileOrder: [0],
如果我们想按相同的键(第一个 reducer 的输出)分组,是否可以将 reducer 的输出直接发送到另一个 reducer 有时在链接时我发现我正在使用一个映射器来读取输入并将其复制到输出。因此想
我有一个如下所示的 reducer : const chart = combineReducers({ data, fetchProgress, fetchError,
当Map Reduce代码中有多个reduce时,它们之间没有任何形式的通信。但是,当执行诸如聚合之类的操作时,所有化简器共同产生单个最终输出。当它们之间没有通信时,聚合如何发生?是通过写入上下文吗?
我在 hive 中有一个表,我想从中获取所有数据。问题是: select * from tbl; 给我的结果与以下情况截然不同: select count(*) from tbl; 这是为什么?第二个
假设我有一个带有两个 reducer 的应用程序 - 使用 combineReducers() 组合的 tables 和 footer。 当我点击某个按钮时,将分派(dispatch)两个操作 - 一
我正在学习更深入的 redux,并且在处理高阶 reducer 时遇到一些麻烦。 我试图使用一个简单的分页示例来了解它是如何工作的。 NB:下面的代码只是 Nodejs 上下文中 redux 的一个快
我调用 RSS 提要并使用解析器对其进行解析。我收到一个数组。我现在想在最后创建一个对象,看起来像这样: { "2019-06-13": { "rates": { "usd":
我有一份学生列表,我的应用程序始终显示当时的一个学生,即 activePupil。到目前为止我有两个 reducer 。其中一个包含并默认返回所有子项的列表(以数组的形式): [ { id:
我有一个叫做 animals 的特征缩减器(切片缩减器)。我想将这些 reducer 拆分为哺乳动物、鸟类、鱼类等。这部分很简单,因为我可以简单地使用 ActionReducerMap。 现在假设哺乳
空数组上的简单reduce会抛出: 线程“main”java.lang.UnsupportedOperationException 中的异常:无法减少空的可迭代对象。 链接时同样的异常: val a
我有一些 25k 文档(原始 json 中为 4 GB)的数据,我想对其执行一些 javascript 操作,以使我的最终数据使用者 (R) 更容易访问这些数据,并且我想通过为每个更改添加一个新集合来
我只是想验证我对这些参数及其关系的理解,如果我错了请通知我。 mapreduce.reduce.shuffle.input.buffer.percent 告诉分配给 reducer 的整个洗牌阶段的内
我想将 redux 状态的值从 reducer 传递到另一个 reducer。在我的例子中,我想将 groups 的值从 groupReducer.js 中的状态传递到 scheduleReducer
所以,我有一个应用程序,它有多个 reducer ,因此有多个关联的 Action 创建者。 有一段时间,我的一个 reducer 更新了状态(由于编辑),因此,我必须确保其他 reducer 看到此
我有一个 reducer ,可以在调度操作时重新调整适当的状态。现在我定期调用 API,因此结果会一次又一次地触发操作。所以我想要的是,如果 reducer 状态已经有数据,那么另一个 reducer
当我尝试执行来自 here 的 DISTINCT reduce 时,出现错误。我已经在啤酒 sample 桶上重现了这个错误,所以这应该很容易重现。我没有在 mapreduce_errors.txt
在以下语法的简单优先级解析(分解)中,我们存在 shift-reduce 和 reduce-reduce 冲突。 X 是开始符号,X'-->$X$ 是添加规则。另外+和下符号是终结符。 X'-->$X
我需要编写一个连续调用两个reducer的Mapreduce程序。即,第一个 reducer 的输出将是第二个 reducer 的输入。我如何实现这一目标? 到目前为止我发现的内容表明我需要在我的驱动
我是一名优秀的程序员,十分优秀!