如果 Hive 开通了 Ranger ,无法使用 !dfs 命令,参考官网链接。
Hive3 对时间类型做了大幅修改,cast 函数的行为和 Hive2 有差别。例如,1706859973123 是北京时间 2024-02-02 15:46:13。在 Hive3 ,行为是:
hive> select cast(1706859973123 as timestamp); OK 2024-02-02 07:46:13.123
在 Hive3 ,推荐使用 from_utc_timestamp
和 to_utc_timestamp
参考官网:Different TIMESTAMP types和Hive UDFs