-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rhive.export() - Environment Varialble issue #70
Comments
Hi. I guess that RHive didn't find the Hadoop Configuration. If HADOOP_HOME is invalid, call Sys.setenv(HADOOP_HOME="/xxx/hadoop-xxx") Thanks. On Thu, Oct 23, 2014 at 1:58 AM, rajasekhariitbbs notifications@github.com
|
After calling Sys.setenv(), you must call rhive.init() again. |
library(RHive) uppercase = function(x){ |
Hi! Add "*HADOOP_CONF_DIR" *Env. variable as following. Replace the path "/home/training/hadoop-2.4.0/conf" withyour hadoop configuration path that contain *.xml.Sys.setenv("HADOOP_CONF_DIR","/home/training/hadoop-2.4.0/conf") Please try it again. On Thu, Oct 23, 2014 at 3:22 PM, rajasekhariitbbs notifications@github.com
|
rhive.env() Still the same error, I'm able to query UDF if I manually save the UDF in HDFS /rhive/udf/training, |
Fixed bug about loading hadoop configuration. Please, install again and try it! |
The rhive.export() is unable to store the RUDF in hdfs path /rhive/udf/username, instead it is being saved in /rhive/udf/username in file system; if I copy the RUDF in hdfs the query is functioning or else it is throwing an error. It would be great if you provide a solution
The text was updated successfully, but these errors were encountered: