码迷,mamicode.com
首页 > Web开发 > 详细

Hue for Apache Hadoop

时间:2017-07-19 14:27:18      阅读:514      评论:0      收藏:0      [点我收藏+]

标签:img   webhdfs   direct   ima   lease   inf   roc   data   14.04   

  • What is Hue
  • Hue architecture
  • Install and configure Hue on hadoop
  • Tips for some common issues

 

1. What is Hue

Hue is one of Hadoop’s most important projects, as it significantly increases a user’s ease of access to the power of the Hadoop platform. While Hive and YARN provide a processing backbone for data analysts familiar with SQL to use Hadoop, Hue provides the interface of choice for data analysts to quickly get connected with big data and Hadoop’s powerful tools

 技术分享

2. Hue architecture

Hue applications run in a Web browser and require no client installation. The following figure illustrates how Hue works. Hue Server is a "container" web application that sits in between hadoop installation and the browser. It hosts all the Hue web applications and communicates with various servers that interface with  hadoop components.

技术分享

3. Install and configure Hue on Hadoop

Hue consists of a web service that runs on a special node in the hadoop cluster. At here, I will use existing master node as the Hue Server.

3.1 Technical Details

  • Distribution: Apache hadoop HDFS
  • Cluster Manager: Resource manager
  • Environment: Ali cloud server
  • Operating System: Ubuntu 14.04 LTS

3.2 Features confirmed to work in partial or complete fashion

  • File Browser  (HDFS access through WebHdfs or HttpFS)
  • Hive/Beeswax (Beeswax uses the Hive client libraries)
  • HBase Cluster Browser  (Requires Thrift 1 service)
  • job Browser (Job information access through hue-plugins)

3.3 Hue Dependencies

 Hue employs some Python modules which use native code and requires certain development libraries be installed on the system. To install from the tarball, following components must be installed:

  • sudo apt-get install -y ant
  • sudo apt-get install -y gcc g++
  • sudo apt-get install -y libkrb5-dev libmysqlclient-dev
  • sudo apt-get install -y libssl-dev libsasl2-dev libsasl2-modules-gssapi-mit
  • sudo apt-get install -y libsqlite3-dev
  • sudo apt-get install -y libtidy-0.99-0 libxml2-dev libxslt-dev
  • sudo apt-get install -y maven
  • sudo apt-get install -y libldap2-dev
  • sudo apt-get install -y python-dev python-simplejson python-setuptools

3.4  Install and configure hue

 (1) Download Hue 3.9 release tarball from below link.

      http://gethue.com/hue-3-9-with-all-its-improvements-is-out/

 (2) Unpackage the tarball to the Ubuntu opt directory.

  技术分享

 (3) Make sure all the dependencies have been installed and then start the build process.

  技术分享

 By default, Hue installs to ‘/usr/local/hue’ in the master node’s local filesystem.

  技术分享

  (4) The Hue configuration file can be found at ‘/usr/local/hue/desktop/conf/hue.ini’ . Bellow are the changes.

  Desktop

  技术分享

  Hadoop

  技术分享

    Hbase

  技术分享

   Hive

   技术分享

3.5 Start hue and browser the data.

  (1) Start the Hue server using the ‘supervisor’ command.
技术分享
   (2) Also need to start hive2 server for using Hive
 技术分享
    (3) Start Hbase server and thrift server for using Hbase.

   技术分享

3.6 Browser the data with Hue.

 (1) Using hsql to select demo data from hive database

  技术分享

   (2) Create demo table by using Hbase browser

   技术分享

   (3) Check  jobs information

   技术分享

4.Tips for some common issues

(1)  Sometimes the build process for the dependencies raises errors. So I suggest to manually install Ant and Maven.For these two tools, you can directly download corresponding release tarballs and then manually configure environment variable ANT_HOME and MAVEN_HOME and PATH.

 

(2)  As installed, the Hue installation folders and file ownership will be set to the ‘root’ user. we‘d better to fix that so Hue can run correctly without root user permissions.

 

(3)  For error message "creating build/temp.linux-x86_64-2.7/src gcc -pthread -fno-strict-aliasing -fwrapv -Wall -Wstrict-prototypes -fPIC -std=c99 -O3 -fomit-frame-pointer -Isrc/ -I/usr/include/ -I/home/huser/miniconda/include/python2.7 -c src/_fastmath.c -o build/temp.linux-x86_64-2.7/src/_fastmath.o src/_fastmath.c:36:18: fatal error: gmp.h: No such file or directory # include <gmp.h> ^ compilation terminated. error: command ‘gcc‘ failed with exit status 1..."

is because that gcc had not found "gmp.h". You need to assure that you have installed "libgmp3-dev" package and have gmp.h in path. Try to execute below command to install libgmp3-dev.

 #sudo apt-get install libgmp3-dev

 

Hue for Apache Hadoop

标签:img   webhdfs   direct   ima   lease   inf   roc   data   14.04   

原文地址:http://www.cnblogs.com/kinginme/p/7204976.html

(1)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!