Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   Ruby (http://www.velocityreviews.com/forums/f66-ruby.html)
-   -   Difficulty accessing command line function return value (Hadoop FSshell) (http://www.velocityreviews.com/forums/t855898-difficulty-accessing-command-line-function-return-value-hadoop-fsshell.html)

S D 02-16-2009 06:12 PM

Difficulty accessing command line function return value (Hadoop FSshell)
 
[Note: parts of this message were removed to make it a legal post.]

I'm attempting to use Hadoop FS shell (
http://hadoop.apache.org/core/docs/c...dfs_shell.html) within a ruby
script. My challenge is that I'm unable to get the function return value of
the commands I'm invoking. As an example Hadoop FS shell command, I try to
run get (http://hadoop.apache.org/core/docs/c...shell.html#get) as
follows

hadoop fs -get /user/hadoop/testFile.txt .

This should copy the file testFile.txt to my local directory. From the
command line this generally works but I need to be able to verify that it is
working in my ruby script. The command should return 0 on success and -1 on
error. Based on

http://pasadenarb.com/2007/03/ruby-shell-commands.html

I have assumed that I should use backticks to make the hadoop call and get
the return value. Here is a dialogue within irb in which the command was not
successful:

irb(main):001:0> `hadoop dfs -get testFile.txt .`
get: null
=> ""

and a dialogue within irb in which the command was successful

irb(main):010:0> `hadoop dfs -get testFile.txt .`
=> ""

In both cases, neither a 0 nor a 1 appeared as a return value; indeed
nothing was returned. I'm considering posting this as a bug on the Hadoop
site but I want to make sure that I'm not doing something wrong from a Ruby
point of view.

Your help is appreciated.

Thanks,
John



All times are GMT. The time now is 07:06 AM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.