☆☆☆★☆☆☆

唯有努力才能活成自己想要活成的样子

导航

2020年4月18日 #

orc格式文件

摘要: 1、Hive支持创建表时指定orc格式即可: create table tmp.orc_test(id bigint, name string, age int) stored as orc TBLPROPERTIES('orc.compress'='SNAPPY') 压缩格式有"SNAPPY"和 阅读全文

posted @ 2020-04-18 16:28 Yr-Zhang 阅读(1546) 评论(0) 推荐(0) 编辑

shell的awk命令使用

摘要: 例如案例: 使用awk完成某几个数据筛选: hdfs dfs -cat hdfs://192.16.1.1/txj/data/20200305/* >> tmp.txt awk -F '|' '{if($1 != '0') print $1}' tmp.txt >> test.txtsort tes 阅读全文

posted @ 2020-04-18 16:13 Yr-Zhang 阅读(165) 评论(0) 推荐(0) 编辑

springboot注解大全

摘要: 参考看https://mp.weixin.qq.com/s/6lO6VUuQ7-9601ww8-65qg,感谢提供者,程序员都有无私的爱! 一、注解 (annotations) 列表@SpringBootApplication:包含了 @ComponentScan、@Configuration 和 阅读全文

posted @ 2020-04-18 14:36 Yr-Zhang 阅读(178) 评论(0) 推荐(0) 编辑