Re: [ANNOUNCE] New Hadoop Committer - Chris Trezzo

2017-04-24 Thread service
Congratulations Sent via the Samsung Galaxy NoteĀ® 4, an AT 4G LTE smartphone Original message From: Lei Xu Date: 4/24/17 8:56 PM (GMT-05:00) To: Sangjin Lee Cc: general@hadoop.apache.org Subject: Re: [ANNOUNCE] New Hadoop

Re: [VOTE] Powered by Logo

2011-06-20 Thread web service
Can we still submit logos ? On Mon, Jun 20, 2011 at 12:57 PM, Luke Lu l...@vicaya.com wrote: Just got a few minutes to look at these. I must say that I'm very disappointed. Some of the choices are nice clip art but none of them are appropriate for powered-by logos at typical logo size: =64

Re: running hadoop jobs from within a program

2010-11-14 Thread web service
Thanks, had figured it out. It is fun to figure out how things work :) On Sun, Nov 14, 2010 at 4:22 AM, Harsh J qwertyman...@gmail.com wrote: Hello, On Fri, Nov 12, 2010 at 10:25 PM, web service wbs...@gmail.com wrote: Thanks, but submitting three different jobs say using

Accessing hdfs from a program not run with bin/hadoop

2010-11-13 Thread web service
I am running a program with the following code. [code] conf.addResource(new Path(file:///home/mac/software/hadoop/hadoop-0.20.2/conf/core-site.xml)); fs = FileSystem.get(conf); fs.delete(new Path(hdfs://localhost:9000/user/mac/output/output-1),

Re: Accessing hdfs from a program not run with bin/hadoop

2010-11-13 Thread web service
Ok, I need to access file system appropriately. This works. hdfs = FileSystem.get(new URI(HDFS_PATH),conf); On Sat, Nov 13, 2010 at 7:54 PM, web service wbs...@gmail.com wrote: I am running a program with the following code. [code] conf.addResource(new Path(file

Re: running hadoop jobs from within a program

2010-11-12 Thread web service
, 2010 at 12:55 AM, daniel sikar dsi...@gmail.com wrote: I suggest you write a loop in your bash script, grepping for finished, then take it from there. Also, you can submit the same job as many times as you like. On 12 November 2010 02:17, web service wbs...@gmail.com wrote: Hi, Currently I

running hadoop jobs from within a program

2010-11-11 Thread web service
Hi, Currently I run my sample hadoop job from a bash script using the following command ... [code] tmp=$HADOOP_BIN jar $JAR_LOC $MAIN_CLASS /user/joe/input/input-$i/ /user/vadmin/output/output-$i/ $tmp [/code] However, I would want to write a timer that would do some cleanup after the jobs

Re: browsing mailing list

2010-11-11 Thread web service
thanks. On Thu, Nov 11, 2010 at 7:26 PM, Shrijeet Paliwal shrij...@rocketfuel.comwrote: ...because you asked, what do you guys do... I do http://www.search-hadoop.com/ -Shrijeet On Thu, Nov 11, 2010 at 6:18 PM, web service wbs...@gmail.com wrote: This might be silly question, but how

Re: running hadoop jobs from within a program

2010-11-11 Thread web service
would submitting, say for example 3 jobs from a jobclient be different than invoking the below command 3 times ? On Thu, Nov 11, 2010 at 7:17 PM, web service wbs...@gmail.com wrote: Hi, Currently I run my sample hadoop job from a bash script using the following command ... [code] tmp