bigdata/chapter2/init.sql

45 lines
1.2 KiB
MySQL
Raw Normal View History

2019-01-17 20:15:22 +08:00
-- 初始化脚本
create table crawl_infos (
`id` int(11) NOT NULL AUTO_INCREMENT,
total_count int comment '采集总量',
today_total_count int comment '当天采集量',
product_count int comment '产品采集条数',
today_product_count int comment '当天产品采集条数',
comment_count int comment '评论采集条数',
today_comment_count int comment '当天评论采集条数',
created_at datetime DEFAULT CURRENT_TIMESTAMP comment '统计时间',
PRIMARY KEY (`id`)
) COMMENT='采集信息表';
create table platform_infos (
`id` int(11) NOT NULL AUTO_INCREMENT,
free_cpu int comment '空闲cpu',
us_cpu int comment '用户cpu使用量',
sys_cpu int comment '系统cpu使用量',
total_memory int comment '总内存',
used_memory int comment '占用内存',
freed_memory int comment '空闲内存',
process_count int comment '进程数'
uptime varchar(255) comment '启动时间'
) comment='平台信息';
2019-01-18 10:16:23 +08:00
create table news (
`id` int(11) NOT NULL AUTO_INCREMENT,
2019-01-17 20:15:22 +08:00
2019-01-18 10:16:23 +08:00
comment_time varchar(255) comment '评论时间',
content varchar(1024) comment '评论内容',
comment_id varchar(255) comment '评论ID',
PRIMARY KEY (`id`)
)comment='最新抓取的20条信息';