一、ADS层数据导出(DataX)
### --- 步骤:
~~~ 在MySQL创建对应的表
~~~ 创建配置文件(json)
~~~ 执行命令,使用json配置文件;测试
~~~ 编写执行脚本(shell)
~~~ shell脚本的测试
二、在mysql建表
### --- 语法:MySQL 建表
drop table if exists dwads.ads_ad_show_place;
create table dwads.ads_ad_show_place(
ad_action tinyint,
hour varchar(2),
place varchar(20),
product_id int,
cnt int,
dt varchar(10)
);
### --- 实例操作:mysql建表
mysql> drop table if exists dwads.ads_ad_show_place;
mysql> create table dwads.ads_ad_show_place(
-> ad_action tinyint,
-> hour varchar(2),
-> place varchar(20),
-> product_id int,
-> cnt int,
-> dt varchar(10)
-> );
三、创建json配置文件