Re: FileInputFormat.setInputPaths Problem

2010-12-09 Thread Aman
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

FileInputFormat.setInputPaths Problem

2010-12-08 Thread Rawan AlSaad
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

RE: FileInputFormat.setInputPaths Problem

2010-12-04 Thread Rawan AlSaad
+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

Re: FileInputFormat.setInputPaths Problem

2010-12-04 Thread Harsh J
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

FileInputFormat.setInputPaths Problem

2010-12-04 Thread Rawan AlSaad
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