hive
mayner
这个作者很懒,什么都没留下…
展开
-
hive 安装入门
hive2 和hive1的区别: Hive-on-MR is deprecated in Hive 2 and may not be available in the future versions. Consider using a different execution engine (i.e. spark, tez) or using Hive 1.X releases. 翻译为:Hiv...原创 2018-11-14 20:18:56 · 368 阅读 · 0 评论 -
hive 的管理
1、CLI方式: 直接在安装目录下/bin 下面输入hive 或者输入#hive --service cli 清屏:ctrl + L 或者 !clear 查看仓库中的表:show tables; 查看仓库的内置函数:show functions; 查看表的结构:desc 表名; 查看HDFS上的文件:dfs -ls 目录; 递归查看: dfs -lsr 目录 执行操...原创 2018-11-04 23:49:02 · 235 阅读 · 0 评论 -
hive 入门02
观看视频笔记: 建表语句:create table table_1(id int,name string) row format delimited fields terminated by ','; 内部表,数据: 1,小米 2,魅族 3,苹果 大于:select id, name from table_1 where id > 1; 限制条数:select id, name ...原创 2018-11-14 20:18:27 · 114 阅读 · 0 评论