xxl_job.sql 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. /*
  2. Navicat Premium Data Transfer
  3. Source Server : localhost
  4. Source Server Type : MySQL
  5. Source Server Version : 50711
  6. Source Host : localhost:3306
  7. Source Schema : xxl_job
  8. Target Server Type : MySQL
  9. Target Server Version : 50711
  10. File Encoding : 65001
  11. Date: 24/12/2020 11:17:34
  12. */
  13. CREATE database if NOT EXISTS `xxl_job` default character set utf8mb4 collate utf8mb4_unicode_ci;
  14. use `xxl_job`;
  15. /*
  16. Navicat Premium Data Transfer
  17. Source Server : localhost
  18. Source Server Type : MySQL
  19. Source Server Version : 50711
  20. Source Host : localhost:3306
  21. Source Schema : xxl_job
  22. Target Server Type : MySQL
  23. Target Server Version : 50711
  24. File Encoding : 65001
  25. Date: 24/12/2020 15:56:01
  26. */
  27. SET NAMES utf8mb4;
  28. SET FOREIGN_KEY_CHECKS = 0;
  29. -- ----------------------------
  30. -- Table structure for xxl_job_group
  31. -- ----------------------------
  32. DROP TABLE IF EXISTS `xxl_job_group`;
  33. CREATE TABLE `xxl_job_group` (
  34. `id` int(11) NOT NULL AUTO_INCREMENT,
  35. `app_name` varchar(64) NOT NULL COMMENT '执行器AppName',
  36. `title` varchar(12) NOT NULL COMMENT '执行器名称',
  37. `address_type` tinyint(4) NOT NULL DEFAULT '0' COMMENT '执行器地址类型:0=自动注册、1=手动录入',
  38. `address_list` text COMMENT '执行器地址列表,多地址逗号分隔',
  39. `update_time` datetime DEFAULT NULL,
  40. PRIMARY KEY (`id`)
  41. ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4;
  42. -- ----------------------------
  43. -- Records of xxl_job_group
  44. -- ----------------------------
  45. BEGIN;
  46. INSERT INTO `xxl_job_group` VALUES (1, 'xxl-job-executor-sample', '示例执行器', 0, NULL, '2020-12-24 15:08:09');
  47. INSERT INTO `xxl_job_group` VALUES (2, 'xxl-job-executor-lilishop', 'lilishop', 0, 'http://192.168.0.100:8891/', '2020-12-24 15:08:09');
  48. COMMIT;
  49. -- ----------------------------
  50. -- Table structure for xxl_job_info
  51. -- ----------------------------
  52. DROP TABLE IF EXISTS `xxl_job_info`;
  53. CREATE TABLE `xxl_job_info` (
  54. `id` int(11) NOT NULL AUTO_INCREMENT,
  55. `job_group` int(11) NOT NULL COMMENT '执行器主键ID',
  56. `job_desc` varchar(255) NOT NULL,
  57. `add_time` datetime DEFAULT NULL,
  58. `update_time` datetime DEFAULT NULL,
  59. `author` varchar(64) DEFAULT NULL COMMENT '作者',
  60. `alarm_email` varchar(255) DEFAULT NULL COMMENT '报警邮件',
  61. `schedule_type` varchar(50) NOT NULL DEFAULT 'NONE' COMMENT '调度类型',
  62. `schedule_conf` varchar(128) DEFAULT NULL COMMENT '调度配置,值含义取决于调度类型',
  63. `misfire_strategy` varchar(50) NOT NULL DEFAULT 'DO_NOTHING' COMMENT '调度过期策略',
  64. `executor_route_strategy` varchar(50) DEFAULT NULL COMMENT '执行器路由策略',
  65. `executor_handler` varchar(255) DEFAULT NULL COMMENT '执行器任务handler',
  66. `executor_param` varchar(512) DEFAULT NULL COMMENT '执行器任务参数',
  67. `executor_block_strategy` varchar(50) DEFAULT NULL COMMENT '阻塞处理策略',
  68. `executor_timeout` int(11) NOT NULL DEFAULT '0' COMMENT '任务执行超时时间,单位秒',
  69. `executor_fail_retry_count` int(11) NOT NULL DEFAULT '0' COMMENT '失败重试次数',
  70. `glue_type` varchar(50) NOT NULL COMMENT 'GLUE类型',
  71. `glue_source` mediumtext COMMENT 'GLUE源代码',
  72. `glue_remark` varchar(128) DEFAULT NULL COMMENT 'GLUE备注',
  73. `glue_updatetime` datetime DEFAULT NULL COMMENT 'GLUE更新时间',
  74. `child_jobid` varchar(255) DEFAULT NULL COMMENT '子任务ID,多个逗号分隔',
  75. `trigger_status` tinyint(4) NOT NULL DEFAULT '0' COMMENT '调度状态:0-停止,1-运行',
  76. `trigger_last_time` bigint(13) NOT NULL DEFAULT '0' COMMENT '上次调度时间',
  77. `trigger_next_time` bigint(13) NOT NULL DEFAULT '0' COMMENT '下次调度时间',
  78. PRIMARY KEY (`id`)
  79. ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4;
  80. -- ----------------------------
  81. -- Records of xxl_job_info
  82. -- ----------------------------
  83. BEGIN;
  84. INSERT INTO `xxl_job_info` VALUES (1, 1, '测试任务1', '2018-11-03 22:21:31', '2018-11-03 22:21:31', 'XXL', '', 'CRON', '0 0 0 * * ? *', 'DO_NOTHING', 'FIRST', 'demoJobHandler', '', 'SERIAL_EXECUTION', 0, 0, 'BEAN', '', 'GLUE代码初始化', '2018-11-03 22:21:31', '', 0, 0, 0);
  85. INSERT INTO `xxl_job_info` VALUES (2, 2, '每小时执行任务', '2020-12-24 11:01:24', '2020-12-24 15:03:03', 'admin', '', 'CRON', '0 0 0/1 * * ?', 'DO_NOTHING', 'ROUND', 'everyHourExecuteJobHandler', '', 'SERIAL_EXECUTION', 0, 0, 'BEAN', '', 'GLUE代码初始化', '2020-12-24 11:01:24', '', 1, 1608793388000, 1608796800000);
  86. INSERT INTO `xxl_job_info` VALUES (3, 2, '每分钟执行', '2020-12-24 11:02:58', '2020-12-24 15:02:49', 'admin', '', 'CRON', '0 0/1 * * * ?', 'DO_NOTHING', 'ROUND', 'everyMinuteExecute', '', 'SERIAL_EXECUTION', 0, 0, 'BEAN', '', 'GLUE代码初始化', '2020-12-24 11:02:58', '', 1, 1608793680000, 1608793740000);
  87. INSERT INTO `xxl_job_info` VALUES (4, 2, '每天执行', '2020-12-24 11:03:41', '2020-12-24 15:02:28', 'admin', '', 'CRON', '0 5 2 1/1 * ?', 'DO_NOTHING', 'ROUND', 'everyDayExecuteJobHandler', '', 'SERIAL_EXECUTION', 0, 0, 'BEAN', '', 'GLUE代码初始化', '2020-12-24 11:03:41', '', 1, 0, 1608833100000);
  88. COMMIT;
  89. -- ----------------------------
  90. -- Table structure for xxl_job_lock
  91. -- ----------------------------
  92. DROP TABLE IF EXISTS `xxl_job_lock`;
  93. CREATE TABLE `xxl_job_lock` (
  94. `lock_name` varchar(50) NOT NULL COMMENT '锁名称',
  95. PRIMARY KEY (`lock_name`)
  96. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  97. -- ----------------------------
  98. -- Records of xxl_job_lock
  99. -- ----------------------------
  100. BEGIN;
  101. INSERT INTO `xxl_job_lock` VALUES ('schedule_lock');
  102. COMMIT;
  103. -- ----------------------------
  104. -- Table structure for xxl_job_log
  105. -- ----------------------------
  106. DROP TABLE IF EXISTS `xxl_job_log`;
  107. CREATE TABLE `xxl_job_log` (
  108. `id` bigint(20) NOT NULL AUTO_INCREMENT,
  109. `job_group` int(11) NOT NULL COMMENT '执行器主键ID',
  110. `job_id` int(11) NOT NULL COMMENT '任务,主键ID',
  111. `executor_address` varchar(255) DEFAULT NULL COMMENT '执行器地址,本次执行的地址',
  112. `executor_handler` varchar(255) DEFAULT NULL COMMENT '执行器任务handler',
  113. `executor_param` varchar(512) DEFAULT NULL COMMENT '执行器任务参数',
  114. `executor_sharding_param` varchar(20) DEFAULT NULL COMMENT '执行器任务分片参数,格式如 1/2',
  115. `executor_fail_retry_count` int(11) NOT NULL DEFAULT '0' COMMENT '失败重试次数',
  116. `trigger_time` datetime DEFAULT NULL COMMENT '调度-时间',
  117. `trigger_code` int(11) NOT NULL COMMENT '调度-结果',
  118. `trigger_msg` text COMMENT '调度-日志',
  119. `handle_time` datetime DEFAULT NULL COMMENT '执行-时间',
  120. `handle_code` int(11) NOT NULL COMMENT '执行-状态',
  121. `handle_msg` text COMMENT '执行-日志',
  122. `alarm_status` tinyint(4) NOT NULL DEFAULT '0' COMMENT '告警状态:0-默认、1-无需告警、2-告警成功、3-告警失败',
  123. PRIMARY KEY (`id`),
  124. KEY `I_trigger_time` (`trigger_time`),
  125. KEY `I_handle_code` (`handle_code`)
  126. ) ENGINE=InnoDB AUTO_INCREMENT=1681 DEFAULT CHARSET=utf8mb4;
  127. -- ----------------------------
  128. -- Records of xxl_job_log
  129. -- ----------------------------
  130. BEGIN;
  131. COMMIT;
  132. -- ----------------------------
  133. -- Table structure for xxl_job_log_report
  134. -- ----------------------------
  135. DROP TABLE IF EXISTS `xxl_job_log_report`;
  136. CREATE TABLE `xxl_job_log_report` (
  137. `id` int(11) NOT NULL AUTO_INCREMENT,
  138. `trigger_day` datetime DEFAULT NULL COMMENT '调度-时间',
  139. `running_count` int(11) NOT NULL DEFAULT '0' COMMENT '运行中-日志数量',
  140. `suc_count` int(11) NOT NULL DEFAULT '0' COMMENT '执行成功-日志数量',
  141. `fail_count` int(11) NOT NULL DEFAULT '0' COMMENT '执行失败-日志数量',
  142. `update_time` datetime DEFAULT NULL,
  143. PRIMARY KEY (`id`),
  144. UNIQUE KEY `i_trigger_day` (`trigger_day`) USING BTREE
  145. ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4;
  146. -- ----------------------------
  147. -- Records of xxl_job_log_report
  148. -- ----------------------------
  149. BEGIN;
  150. INSERT INTO `xxl_job_log_report` VALUES (1, '2020-12-24 00:00:00', 0, 293, 1387, NULL);
  151. INSERT INTO `xxl_job_log_report` VALUES (2, '2020-12-23 00:00:00', 0, 0, 0, NULL);
  152. INSERT INTO `xxl_job_log_report` VALUES (3, '2020-12-22 00:00:00', 0, 0, 0, NULL);
  153. COMMIT;
  154. -- ----------------------------
  155. -- Table structure for xxl_job_logglue
  156. -- ----------------------------
  157. DROP TABLE IF EXISTS `xxl_job_logglue`;
  158. CREATE TABLE `xxl_job_logglue` (
  159. `id` int(11) NOT NULL AUTO_INCREMENT,
  160. `job_id` int(11) NOT NULL COMMENT '任务,主键ID',
  161. `glue_type` varchar(50) DEFAULT NULL COMMENT 'GLUE类型',
  162. `glue_source` mediumtext COMMENT 'GLUE源代码',
  163. `glue_remark` varchar(128) NOT NULL COMMENT 'GLUE备注',
  164. `add_time` datetime DEFAULT NULL,
  165. `update_time` datetime DEFAULT NULL,
  166. PRIMARY KEY (`id`)
  167. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  168. -- ----------------------------
  169. -- Records of xxl_job_logglue
  170. -- ----------------------------
  171. BEGIN;
  172. COMMIT;
  173. -- ----------------------------
  174. -- Table structure for xxl_job_registry
  175. -- ----------------------------
  176. DROP TABLE IF EXISTS `xxl_job_registry`;
  177. CREATE TABLE `xxl_job_registry` (
  178. `id` int(11) NOT NULL AUTO_INCREMENT,
  179. `registry_group` varchar(50) NOT NULL,
  180. `registry_key` varchar(255) NOT NULL,
  181. `registry_value` varchar(255) NOT NULL,
  182. `update_time` datetime DEFAULT NULL,
  183. PRIMARY KEY (`id`),
  184. KEY `i_g_k_v` (`registry_group`,`registry_key`,`registry_value`)
  185. ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4;
  186. -- ----------------------------
  187. -- Records of xxl_job_registry
  188. -- ----------------------------
  189. BEGIN;
  190. INSERT INTO `xxl_job_registry` VALUES (4, 'EXECUTOR', 'xxl-job-executor-lilishop', 'http://192.168.0.100:8891/', '2020-12-24 15:08:21');
  191. COMMIT;
  192. -- ----------------------------
  193. -- Table structure for xxl_job_user
  194. -- ----------------------------
  195. DROP TABLE IF EXISTS `xxl_job_user`;
  196. CREATE TABLE `xxl_job_user` (
  197. `id` int(11) NOT NULL AUTO_INCREMENT,
  198. `username` varchar(50) NOT NULL COMMENT '账号',
  199. `password` varchar(50) NOT NULL COMMENT '密码',
  200. `role` tinyint(4) NOT NULL COMMENT '角色:0-普通用户、1-管理员',
  201. `permission` varchar(255) DEFAULT NULL COMMENT '权限:执行器ID列表,多个逗号分割',
  202. PRIMARY KEY (`id`),
  203. UNIQUE KEY `i_username` (`username`) USING BTREE
  204. ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4;
  205. -- ----------------------------
  206. -- Records of xxl_job_user
  207. -- ----------------------------
  208. BEGIN;
  209. INSERT INTO `xxl_job_user` VALUES (1, 'admin', '96e79218965eb72c92a549dd5a330112', 1, NULL);
  210. COMMIT;
  211. SET FOREIGN_KEY_CHECKS = 1;