HIVE表-标准建表语句解析,内/外表
REF: https://edu.hellobi.com/course/93/play/lesson/2035
hive> create external table test(id int); OK Time taken: 12.057 seconds hive> desc formatted test > ; OK # col_name data_type comment id int # Detailed Table Information Database: default Owner: root CreateTime: Sun May 17 16:09:46 GMT+08:00 2020 LastAccessTime: UNKNOWN Retention: 0 Location: hdfs://bigdata:9000/user/hive/warehouse/test Table Type: EXTERNAL_TABLE
删除例子:
分别创建外部表和内部表,然后删除。
hive> create external table test_ext(id int); OK Time taken: 0.319 seconds hive> create table test_int(id int); OK Time taken: 0.206 seconds
hive> drop table test_ext; OK Time taken: 0.258 seconds hive> drop table test_int; OK Time taken: 0.345 seconds
可以看到test_int被删除了,而外部表test_ext依然存在。
HIVE文件及数据格式
REF:https://edu.hellobi.com/course/93/play/lesson/2036
SerDe 序列化和反序列化
序列化:
1)持久化,
2)网络传输
CSV/TSV 行中行 需要特殊处理,cast等。