1. 将mysql的订单数据导入hive的分区表(桶.倾斜)[partition,bucket,skew] a> 在Hive中新建分区表 CREATE TABLE IF NOT EXISTS HelloHive.orders (customernumber int COMMENT 'customernumber in orders', #列注释 customername string, orderdate date, country string, state string) COMMENT '…