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
Dear all,
I would very much appreciate your advise on this problem [I am using Hadoop
20.0]:
I need to know how to pass the input folder path to the java class throught the
function( FileInputFormat.setInputPaths(conf, new Path("input"))
I have tried many alternatives to change the
+0530
> Subject: Re: FileInputFormat.setInputPaths Problem
> To: common-dev@hadoop.apache.org
>
> Hi,
>
> 2010/12/4 Rawan AlSaad :
> > I need to know how to pass the input folder path to the java class throught
> > the function( FileInputFormat.s
Hi,
2010/12/4 Rawan AlSaad :
> I need to know how to pass the input folder path to the java class throught
> the function( FileInputFormat.setInputPaths(conf, new Path("input"))
Try FileInputFormat.addInputPath(...) for a single path entry at a
time perhaps? I'm not sure what's going wrong here
Dear all,
I would very much appreciate your advise on this problem [I am using Hadoop
20.0]:
I need to know how to pass the input folder path to the java class throught the
function( FileInputFormat.setInputPaths(conf, new Path("input"))
I have tried many alternatives to change the secon