Aman Raj created HADOOP-18750:
-
Summary: Spark History Server 3.3.1 fails to starts with Hadoop
3.3.x
Key: HADOOP-18750
URL: https://issues.apache.org/jira/browse/HADOOP-18750
Project: Hadoop Common
Aman Goyal created HADOOP-12108:
---
Summary: Erroneous behavior of use of wildcard character ( * ) in
ls command of hdfs
Key: HADOOP-12108
URL: https://issues.apache.org/jira/browse/HADOOP-12108
Project
Rawan
It would help if you post the full code here but from what I am seeing here,
looks like you are passing Configuation Object but the method takes the Job
object instead.
Try replacing
FileInputFormat.setInputPaths(conf, new Path("input")
by following lines
Job job = new Job(conf);
FileIn