- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我知道这个话题过去已经讨论过。但不幸的是我没能解决这个问题。我不断收到相同的 IOException 错误。我是 Java 和 Hadoop 的新手,这是我第一次尝试 WordCount 练习。对于任何语法错误或格式问题,我深表歉意。请让我知道我哪里出错了。
Error: java.lang.Exception: java.io.IOException: Type mismatch in key from map: expected org.apache.hadoop.io.Text, received org.apache.hadoop.io.LongWritable
这是我的代码:
MyDriver
package p1;
import java.io.IOException;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.io.IntWritable;
import org.apache.hadoop.io.LongWritable;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce.Job;
import org.apache.hadoop.mapreduce.lib.input.FileInputFormat;
import org.apache.hadoop.mapreduce.lib.output.FileOutputFormat;
public class MyDriver {
public static void main(String[] args) throws IOException,
ClassNotFoundException, InterruptedException {
// Create a configuration class pointing to default configuration
Configuration conf = new Configuration();
// Create an object of Job by specifying conf object
Job job = Job.getInstance(conf, "MyWordCountJob");
// Link your Driver Class with the Job
job.setJarByClass(MyDriver.class);
// Link your Mapper Class with the Job
job.setJarByClass(MyMapper.class);
// Link your Reducer Class with the Job
job.setJarByClass(MyReducer.class);
// set final output Key
job.setOutputKeyClass(Text.class);
// set final output Value
job.setOutputValueClass(IntWritable.class);
job.setMapOutputKeyClass(Text.class);
job.setMapOutputValueClass(IntWritable.class);
// Defining input Paths
Path input_dir = new Path("hdfs://localhost:9000/input_data/");
FileInputFormat.addInputPath(job, input_dir);
// Defining Output Paths
Path output_dir = new Path("hdfs://localhost:9000/output_data/");
FileOutputFormat.setOutputPath(job, output_dir);
// This piece of code will actually initiate the Job run
// boolean flag = job.waitForCompletion(true);
System.out.println("is this running");
// system.exit means it will kill the jvm and terminate the program.
System.exit(job.waitForCompletion(true) ? 0 : 1);
System.out.println("job.waitForCompletion(true)"
+ job.waitForCompletion(true));
}
}
package p1;
import java.io.IOException;
import org.apache.hadoop.io.IntWritable;
import org.apache.hadoop.io.LongWritable;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce.Mapper;
public class MyMapper extends Mapper<LongWritable, Text, Text, IntWritable> {
@Override
protected void map(LongWritable offset, Text line, Context context)
throws IOException, InterruptedException {
String currentline = line.toString();
System.out.println("MyMapper.map():Offset" + offset
+ " :: CurrentLine=" + currentline);
// apple apple ball--this is read when the mapper reads the data for the
// first time/ mapper reads line by line.
System.out.println(currentline);
String words[] = currentline.split(" ");
for (String word : words) {
System.out.println(" words " + word);
context.write(new Text(word), new IntWritable(1));
}
}
}
MyReducer
package p1;
import java.io.IOException;
import java.util.Iterator;
import org.apache.hadoop.io.IntWritable;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce.Reducer;
public class MyReducer extends Reducer<Text, IntWritable, Text, IntWritable> {
//apple [1,1,1]
@Override
protected void reduce(Text word, Iterable<IntWritable> value, Context ctx)
throws IOException, InterruptedException {
System.out.println("Key=" + word);
Iterator<IntWritable> it = value.iterator();
int count = 0;
while (it.hasNext()) {
IntWritable i = (IntWritable) it.next();
count = count + i.get();
}
ctx.write(word, new IntWritable(count));
}
}
最佳答案
使用
job.setMapperClass(MyMapper.class);
job.setReducerClass(MyReducer.class);
代替
job.setJarByClass(MyMapper.class);
job.setJarByClass(MyReducer.class);
关于eclipse - IOException : Type mismatch in key from map: Text, 收到 LongWritable,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43196444/
查看“mysqldump -d”并看到一个键是 KEY,而不是“PRIMARY KEY”或“FOREIGN KEY” 什么是关键? 示例: CREATE TABLE IF NOT EXISTS `TA
在我开始使用 Python 的过程中尝试找出最佳编码实践。我用 Pandas 写了一个 csv 到数据框阅读器。它使用格式: dataframe = read_csv(csv_input, useco
在 Flutter 中,用一个例子可以清楚地解释什么? 我的困惑是关于 key,如下面的代码所示。 MyHomepage({Key key, this.title}) : super(key: key
我在我的 Android 应用程序中使用 GCM。要使用 GCM 服务,我们需要创建 Google API key 。因此,我为 android、服务器和浏览器 key 创建了 API key 。似乎
我想在 azure key 保管库中创建一个 secret ,该 key 将具有多个 key (例如 JSON)。 例如- { "storageAccountKey":"XXXXX", "Co
尝试通过带有 encodeforURL() 的 url 发送 key 时,我不断收到错误消息和 decodefromUrl() .代码示例如下。 这是我的入口页面: key = generateSec
是否有检查雪花变体字段中是否存在键的函数? 最佳答案 您可以使用 IS_NULL_VALUE 来查看 key 是否存在。如果键不存在,则结果将为 NULL。如果键存在,如果值为 JSON null,则
我正在尝试运行此命令: sudo apt-key adv --keyserver keys.gnupg.net --recv-keys 1C4CBDCDCD2EFD2A 但我收到一个错误: Execu
我有一个 csv 文件,我正在尝试对 row[3] 进行计数,然后将其与 row[0] 连接 row[0] row[3] 'A01' 'a' 'B02'
如何编写具有这种形式的函数: A(key, B(key, C(key, ValFactory(key)))) 其中 A、B 和 C 具有此签名: TResult GetOrAdd(string key
审查 this method我很好奇为什么它使用 Object.keys(this).map(key => (this as any)[key])? 只调用 Object.keys(this).ind
我有一个奇怪的情况。我有一个字典,self.containing_dict。使用调试器,我看到了字典的内容,并且可以看到 self 是其中的一个键。但是看看这个: >>> self in self.c
我需要在我的 Google Apps 脚本中使用 RSA-SHA256 和公钥签署消息。 我正在尝试使用 Utilities.computeRsaSha256Signature(value, key)
我是 React 的初学者开发人员,几天前我看到了一些我不理解的有趣语法。 View组件上有{...{key}},我会写成 key={key} ,它完全一样吗?你有链接或解释吗? render()
代理 key 、合成 key 和人工 key 之间有什么区别吗? 我不清楚确切的区别。 最佳答案 代理键、合成键和人工键是同义词。技术关键是另一个。它们都表示“没有商业意义的主键”。它们不同于具有超出
问题陈述:在 Web/控制台 C# 应用程序中以编程方式检索并使用存储在 Azure Key Vault 中的敏感值(例如数据库连接字符串)。 据我所知,您可以在 AAD 中注册应用,并使用其客户端
问题陈述:在 Web/控制台 C# 应用程序中以编程方式检索并使用存储在 Azure Key Vault 中的敏感值(例如数据库连接字符串)。 据我所知,您可以在 AAD 中注册应用,并使用其客户端
我正在寻找 Perl 警告的解决方案 “引用键是实验性的” 我从这样的代码中得到这个: foreach my $f (keys($normal{$nuc}{$e})) {#x, y, and z 我在
我正在为 HSM 实现 JCE 提供程序 JCE中有没有机制指定 key 生成类型例如: session key 或永久 key KeyGenerator keygen = KeyGener
我在 Facebook 上创建了一个应用程序。我已经正确添加了 keyhash 并且应用程序运行良好但是当我今天来并尝试再次运行它时它给了我这个错误。 这已经是第二次了。 Previsouly 当我收
我是一名优秀的程序员,十分优秀!