Re: Folder not created using Hadoop Mapreduce code

2013-11-15 Thread unmesha sreeveni
ote: > >> Maybe just a silly guess, did you close your Writer? >> >> Yong >> >> -- >> Date: Thu, 14 Nov 2013 12:47:13 +0530 >> Subject: Re: Folder not created using Hadoop Mapreduce code >> From: unmeshab...@gmail.com >

Re: Folder not created using Hadoop Mapreduce code

2013-11-14 Thread unmesha sreeveni
yes . I closed :( On Thu, Nov 14, 2013 at 8:51 PM, java8964 java8964 wrote: > Maybe just a silly guess, did you close your Writer? > > Yong > > -- > Date: Thu, 14 Nov 2013 12:47:13 +0530 > Subject: Re: Folder not created using Hadoop Mapreduce

RE: Folder not created using Hadoop Mapreduce code

2013-11-14 Thread java8964 java8964
Maybe just a silly guess, did you close your Writer? Yong Date: Thu, 14 Nov 2013 12:47:13 +0530 Subject: Re: Folder not created using Hadoop Mapreduce code From: unmeshab...@gmail.com To: user@hadoop.apache.org @rab ra: ys using filesystem s mkdir() we can create folders and we can also create

Re: Folder not created using Hadoop Mapreduce code

2013-11-13 Thread unmesha sreeveni
@rab ra: ys using filesystem s mkdir() we can create folders and we can also create it using Path in = new Path("foldername"); On Thu, Nov 14, 2013 at 12:45 PM, unmesha sreeveni wrote: > i used to create folders previously like this and it created also. > I dnt know why it is not happening now .

Re: Folder not created using Hadoop Mapreduce code

2013-11-13 Thread unmesha sreeveni
i used to create folders previously like this and it created also. I dnt know why it is not happening now . And it is working with eclipse.ie i am getting "inputfile" file within "in" folder On Thu, Nov 14, 2013 at 12:42 PM, unmesha sreeveni wrote: > I tried hadoop fs -lsr / > I did nt find th

Re: Folder not created using Hadoop Mapreduce code

2013-11-13 Thread unmesha sreeveni
I tried hadoop fs -lsr / I did nt find there also On Thu, Nov 14, 2013 at 12:28 PM, Rahul Bhattacharjee < rahul.rec@gmail.com> wrote: > it might be creating within the user directory of the user in hdfs. > > trying creating something starting with a forward slash. > > Thanks, > Rahul > > > O

Re: Folder not created using Hadoop Mapreduce code

2013-11-13 Thread Rahul Bhattacharjee
it might be creating within the user directory of the user in hdfs. trying creating something starting with a forward slash. Thanks, Rahul On Wed, Nov 13, 2013 at 10:40 PM, Amr Shahin wrote: > Do you get an exception or it just fails silently ? > > > On Thu, Nov 14, 2013 at 10:27 AM, unmesha

Re: Folder not created using Hadoop Mapreduce code

2013-11-13 Thread rab ra
Unless you FileSystem's mkdir() method , i m not sure you create a folder in hdfs On 14 Nov 2013 11:58, "unmesha sreeveni" wrote: > I am trying to create a file with in "in" folder. but when i tried to run > this in cluster i noticed that this "in" folder is not within hdfs. > > why is it so? > >

Re: Folder not created using Hadoop Mapreduce code

2013-11-13 Thread Amr Shahin
run hadoop fs -lsr / Could've been created in a location different from where you expected On Thu, Nov 14, 2013 at 10:51 AM, unmesha sreeveni wrote: > no exception Amr. just fail to create . > > > On Thu, Nov 14, 2013 at 12:10 PM, Amr Shahin wrote: > >> Do you get an exception or it just fails

Re: Folder not created using Hadoop Mapreduce code

2013-11-13 Thread unmesha sreeveni
no exception Amr. just fail to create . On Thu, Nov 14, 2013 at 12:10 PM, Amr Shahin wrote: > Do you get an exception or it just fails silently ? > > > On Thu, Nov 14, 2013 at 10:27 AM, unmesha sreeveni > wrote: > >> I am trying to create a file with in "in" folder. but when i tried to run >>

Re: Folder not created using Hadoop Mapreduce code

2013-11-13 Thread Amr Shahin
Do you get an exception or it just fails silently ? On Thu, Nov 14, 2013 at 10:27 AM, unmesha sreeveni wrote: > I am trying to create a file with in "in" folder. but when i tried to run > this in cluster i noticed that this "in" folder is not within hdfs. > > why is it so? > > Any thing wrong? >

Folder not created using Hadoop Mapreduce code

2013-11-13 Thread unmesha sreeveni
I am trying to create a file with in "in" folder. but when i tried to run this in cluster i noticed that this "in" folder is not within hdfs. why is it so? Any thing wrong? My Driver code is Path in = new Path("in"); Path input = new Path("in/inputfile"); BufferedWriter createinput = n