Hive
程序员班干部
这个作者很懒,什么都没留下…
展开
-
Hive,Pig,HBase 区别与联系
转自http://blog.csdn.net/devtao/article/details/14213481 看了几天的Hadoop生态系统,对Hive,Pig,HBase搞的有些糊涂,查阅时发现糊涂的不止我一个,如某个鸟问的帖子发表的疑问,when to use Hbase and when to use Hive?....请教了google,现总结如下: Pig转载 2015-04-13 13:49:42 · 302 阅读 · 0 评论 -
使用hive读取hbase数据
(1) 创建hbase识别的表 CREATE TABLE hbase_table_1(key int, value string) STORED BY 'org.apache.hadoop.hive.hbase.HBaseStorageHandler' WITH SERDEPROPERTIES ("hbase.columns.mapping" = ":key,cf1:val") TBLPROPE转载 2015-04-15 14:42:17 · 574 阅读 · 0 评论 -
(二)hive 创建/删除/截断 表
简单的创建表 create table table_name ( id int, dtDontQuery string, name string ) 创建有分区的表 create table table_name ( id int, dtDontQuery string, name string ) partitioned b原创 2015-04-15 14:08:36 · 592 阅读 · 0 评论 -
(一)hive基本命令
一. 显示地展示当前使用的数据库 hive> set hive.cli.print.current.db=true; ̶ 切换当前的数据库 hive(default)> USE hduser4801; ̶ 使Hive显示列头 set hive.cli.print.header=true; ̶ 创建数据库命令原创 2015-04-15 14:04:32 · 670 阅读 · 0 评论