Skip to content

euriion/RHive

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RHive 1.0-0.1

RHive is an R extension facilitating distributed computing via HIVE query. RHive allows easy usage of HQL(Hive SQL) in R, and allows easy usage of R objects and R functions in Hive.

Before installing RHive, you have to have installed Hadoop and Hive on a machine which you want to install RHive

Install Hadoop

  1. Single Node
  2. Cluster Node
  3. set HADOOP_HOME at machine on which R runs

Install Hive

  1. install Hive on RHive machine and remote machine on which NameNode runs or Hive-Server runs.
  2. Installation Guide
  3. set HIVE_HOME at local machine on which R runs.
  4. launch Hive Server with following command on remote machine. it should be as a background process.
    • $HIVE_HOME/bin/hive --service hiveserver

Install R and Packages

  1. install R
    • you need to install R on all tasktracker nodes.
  2. install rJava
    • RHive require rJava package as a prerequsite. you need to install rJava.
  3. Rserve mode - install Rserve
    • you need to install Rserve on all tasktracker nodes
    • set RHIVE_DATA as R objects and R functions repository on all tasktracker nodes. if RHIVE_DATA is not set then it will be '/tmp' as a default.
      • e.g> export RHIVE_DATA=/rhive/data
    • make configuration in path (/etc/Rserv.conf) on all tasktracker nodes. edit this file to add 'remote enable' to allow remote connection.
    • launch all Rserve on all tasktracker nodes.
      • e.q> R CMD Rserve
  4. No Rserve mode - setting tasktracker nodes (Optional)
    1. set RHIVE_DATA as R objects and R functions repository on all tasktracker nodes.
      • e.q> export RHIVE_DATA=/rhive/data
      • e.q> export RHIVE_DATA=/tmp
    2. add R_HOME path at $HADOOP_HOME/conf/hadoop-env.sh
      • e.q> export R_HOME=/usr/lib/R
  5. install RUnit

Install RHive

  1. Requirements
    • ant (in order to build jar files)
  2. Installing RHive
    1. Compressed package: R CMD INSTALL RHive_1.0-0.0.tar.gz
    2. Source code: R CMD INSTALL ./RHive
  3. If HADOOP_HOME doesn't exist, do following instruction :
    1. copy RUDF/RUDAF library(rhive_udf.jar) to '/rhive/lib/' of HDFS path, using this command : 'hadoop fs -put rhive_udf.jar /rhive/lib/rhive_udf.jar'. this jar file exists under $HIVE_HOME/lib.

Loading RHive and connecting to Hive

  1. launch R
library(RHive)
rhive.connect(hive-server-ip)

Tutorials

for help you can also refer the tutorials

Prerequsites

  • Java 1.6
  • R 2.13.0
  • Rserve 0.6-0
  • rJava 0.9-0
  • Hadoop 0.20.x (x >= 1)
  • Hive 0.8.x (x >= 0)

About

RHive - rhive@nexr.com

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 73.8%
  • R 26.2%