数据仓库Hive的安装和使用

     Hive是一个基于Hadoop的数据仓库工具,可以用于对存储在Hadoop 文件中的数据集进行数据整理、特殊查询和分析处理。

创新互联建站自2013年起,是专业互联网技术服务公司,拥有项目成都网站制作、成都做网站、外贸营销网站建设网站策划,项目实施与项目整合能力。我们以让每一个梦想脱颖而出为使命,1280元江城做网站,已为上家服务,为江城各地企业和个人服务,联系电话:028-86922220

1.下载安装文件

http://mirror.bit.edu.cn/apache/hive/

#下载Hive安装文件

hadoop@dblab:/usr/local$ sudo wget http://mirror.bit.edu.cn/apache/hive/hive-1.2.2/apache-hive-1.2.2-bin.tar.gz 

#解压

hadoop@dblab:/usr/local$ sudo tar -zxvf apache-hive-1.2.2-bin.tar.gz -C ./

#将文件夹名改为hive

hadoop@dblab:/usr/local$ sudo mv apache-hive-1.2.2-bin  hive

#修改文件权限 

hadoop@dblab:/usr/local$ sudo chown -R hadoop:hadoop hive

2.配置环境变量

hadoop@dblab:/usr/local$ vim ~/.bashrc

export HIVE_HOME=/usr/local/hive

export PATH=$PATH:$HIVE_HOME/bin

hadoop@dblab:/usr/local$ source ~/.bashrc

3.启动Hive

hadoop@dblab:/usr/local/hive/conf$ cd /usr/local/hadoop/

hadoop@dblab:/usr/local/hadoop$ ./sbin/start-dfs.sh

hadoop@dblab:/usr/local/hadoop$ cd /usr/local/hive/

hadoop@dblab:/usr/local/hive$ ./bin/hive

hive> 

4.Hive基本操作

1)创建数据库Hive

hive> create database hive;

FAILED: Execution Error, return code 1 from org.apache.hadoop.hive.ql.exec.DDLTask. Database hive already exists

 hive> create database if not exists hive;

OK

hive> use hive;

OK

2)创建表

hive> create table if not exists usr(id bigint,name string,age int);

OK

hive> create table if not exists hive.usr(id bigint,name string,age int)

    > location '/usr/local/hive/warehouse/hive/usr';

OK

Time taken: 0.467 seconds

hive> create external table if not exists hive.usr(id bigint,name string,age int)

    > row format delimited fields terminated by ','

    > location '/usr/local/data';

OK

Time taken: 0.079 seconds

#在hive数据库中创建分区表usr1,通过复制usr得到

hive> create table if not exists user1 like usr;

OK

hive> show tables;

OK

user1

usr

3)创建视图

hive> create view little_usr as select id,age from usr;

4)修改数据库

hive> alter database hive set dbproperties('edit=by'='lily');

5)查看数据库

hive> show databases;

default

hive

6)查看表和视图

hive> use hive;

hive> show tables;

little_usr

user1

usr

7)描述数据库

hive> describe database hive;

hive            hdfs://localhost:9000/user/hive/warehouse/hive.db       hadoop  USER

hive> describe database extended hive;

hive            hdfs://localhost:9000/user/hive/warehouse/hive.db       hadoop  USER    {edit=by=lily}

8)描术表和视图

hive> describe hive.usr;

id              bigint                                      

name            string                                      

age            int                                         

hive> describe hive.little_usr;

id            bigint                                      

age           int    

9)修改表

#修改表名

hive> alter table usr rename to users;

hive> alter table usr add columns(sex boolean);

10)删除视图

hive> drop view if exists little_usr;

11)删除表

hive> drop table if exists usr;

12)删除数据库

hive> drop database hive;

13)退出Hive

hive> quit;

hive> exit;

网站题目:数据仓库Hive的安装和使用
分享地址:https://www.cdcxhl.com/article6/jgceog.html

成都网站建设公司_创新互联,为您提供网站内链网站排名标签优化面包屑导航响应式网站品牌网站制作

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联

网站托管运营