其他分享
首页 > 其他分享> > hive tricks

hive tricks

作者:互联网

(原创)

hive的一些tricks

           ... on (A) and (B)  和 ... on (B) and (A)  竟然导致不一样的结果,

           详情见 https://issues.apache.org/jira/browse/HIVE-9146 。

         add file /path_of_python_file/py_file.py;

         select transform(col1,col2,col3...) using 'python py_file.py' as (out1,out2,out3...) from table;
         transform 的参数col1,col2,col3... 作为python脚本的输入,而out1,out2,out3...作为输出字段。

         利用这个可以把hive自身所带的函数不能或不方便处理的任务,转用python写。

标签:...,out3,python,tricks,py,hive,file
来源: https://www.cnblogs.com/randomstring/p/15707303.html