create table if not exists hive_table_test (
s1 string,
s2 string,
s3 string,
s4 string,
s5 string,
s6...TERMINATED BY ","
stored as textfile location '/fayson/hive_table_test';
hadoop fs -put hbase_data.csv...2.创建一张Parquet文件表,然后从文本表将数据插入过去。...create table if not exists hive_table_test_parquet (
s1 string,
s2 string,
s3 string,
s4 string,
s5 string...3.创建一张Parquet文件表,并设定压缩为Snappy,然后将数据插入过去。