Hive
AlexWong2526
代码是最为耐心、最能忍耐和最令人愉快的伙伴,在任何艰难困苦的时刻,它都不会抛弃你。
展开
-
Hive基本命令
创建表:hive> CREATE TABLE pokes (foo INT, bar STRING); Creates a table called pokes with two columns, the first being an integer and the other a string创建一个新表,结构与其他一样hive> create table n转载 2015-03-19 11:22:30 · 273 阅读 · 0 评论 -
hive写入phoenix值为空
NVL(expr1, expr2):1、空值转换函数;2、类似于mysql-nullif(expr1, expr2),sqlserver-ifnull(expr1, expr2)。备注:1、如果expr1为NULL,返回值为 expr2,否则返回expr1。2、适用于数字型、字符型和日期型,但是 expr1和expr2的数据类型必须为同类型。--------------...原创 2019-03-26 22:11:07 · 591 阅读 · 0 评论 -
hive数据灌入phoenix
apache phoenix!!首先需要在hive命令行创建相应的表,映射到phoenix,具体操作如下:add jar hdfs://***/hive_udf/phoenix-core-4.7.1-HBase-1.1-SNAPSHOT.jar;add jar hdfs://***/hive_udf/phoenix-hive-4.7.1-HBase-1.1-SNAPSHOT.jar;...原创 2019-03-26 22:22:56 · 1887 阅读 · 0 评论