05 2021 档案

摘要:1、安装jdk 2、安装scala 3、下载idea版本对应的scala插件压缩包,地址https://plugins.jetbrains.com/plugin/1347-scala/versions 然后在idea中加入 4、选择项目Add Framework Support 阅读全文
posted @ 2021-05-14 10:40 再见傅里叶 阅读(248) 评论(0) 推荐(0)
摘要:1、查看hive表对应的HDFS文件存储路径 hive>show create table tableName; -- 此命令查看建表的最详细信息 2、hive命令行中查看HDFS目录信息 hive>dfs -ls /; 阅读全文
posted @ 2021-05-08 15:31 再见傅里叶 阅读(66) 评论(0) 推荐(0)
摘要:1、分区与分桶的区别 2、hive建表demo create table test11(`id` string comment '唯一',`time` timestamp comment '时间')comment '测试表'partitioned by (dt string comment '分区' 阅读全文
posted @ 2021-05-08 15:28 再见傅里叶 阅读(264) 评论(0) 推荐(0)