tables_xxl_job.sql 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. #
  2. # XXL-JOB v2.1.2
  3. # Copyright (c) 2015-present, xuxueli.
  4. CREATE database if NOT EXISTS `xxl_job` default character set utf8mb4 collate utf8mb4_unicode_ci;
  5. use
  6. `xxl_job`;
  7. CREATE TABLE `xxl_job_info`
  8. (
  9. `id` int(11) NOT NULL AUTO_INCREMENT,
  10. `job_group` int(11) NOT NULL COMMENT '执行器主键ID',
  11. `job_cron` varchar(128) NOT NULL COMMENT '任务执行CRON',
  12. `job_desc` varchar(255) NOT NULL,
  13. `add_time` datetime DEFAULT NULL,
  14. `update_time` datetime DEFAULT NULL,
  15. `author` varchar(64) DEFAULT NULL COMMENT '作者',
  16. `alarm_email` varchar(255) DEFAULT NULL COMMENT '报警邮件',
  17. `executor_route_strategy` varchar(50) DEFAULT NULL COMMENT '执行器路由策略',
  18. `executor_handler` varchar(255) DEFAULT NULL COMMENT '执行器任务handler',
  19. `executor_param` varchar(512) DEFAULT NULL COMMENT '执行器任务参数',
  20. `executor_block_strategy` varchar(50) DEFAULT NULL COMMENT '阻塞处理策略',
  21. `executor_timeout` int(11) NOT NULL DEFAULT '0' COMMENT '任务执行超时时间,单位秒',
  22. `executor_fail_retry_count` int(11) NOT NULL DEFAULT '0' COMMENT '失败重试次数',
  23. `glue_type` varchar(50) NOT NULL COMMENT 'GLUE类型',
  24. `glue_source` mediumtext COMMENT 'GLUE源代码',
  25. `glue_remark` varchar(128) DEFAULT NULL COMMENT 'GLUE备注',
  26. `glue_updatetime` datetime DEFAULT NULL COMMENT 'GLUE更新时间',
  27. `child_jobid` varchar(255) DEFAULT NULL COMMENT '子任务ID,多个逗号分隔',
  28. `trigger_status` tinyint(4) NOT NULL DEFAULT '0' COMMENT '调度状态:0-停止,1-运行',
  29. `trigger_last_time` bigint(13) NOT NULL DEFAULT '0' COMMENT '上次调度时间',
  30. `trigger_next_time` bigint(13) NOT NULL DEFAULT '0' COMMENT '下次调度时间',
  31. PRIMARY KEY (`id`)
  32. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  33. CREATE TABLE `xxl_job_log`
  34. (
  35. `id` bigint(20) NOT NULL AUTO_INCREMENT,
  36. `job_group` int(11) NOT NULL COMMENT '执行器主键ID',
  37. `job_id` int(11) NOT NULL COMMENT '任务,主键ID',
  38. `executor_address` varchar(255) DEFAULT NULL COMMENT '执行器地址,本次执行的地址',
  39. `executor_handler` varchar(255) DEFAULT NULL COMMENT '执行器任务handler',
  40. `executor_param` varchar(512) DEFAULT NULL COMMENT '执行器任务参数',
  41. `executor_sharding_param` varchar(20) DEFAULT NULL COMMENT '执行器任务分片参数,格式如 1/2',
  42. `executor_fail_retry_count` int(11) NOT NULL DEFAULT '0' COMMENT '失败重试次数',
  43. `trigger_time` datetime DEFAULT NULL COMMENT '调度-时间',
  44. `trigger_code` int(11) NOT NULL COMMENT '调度-结果',
  45. `trigger_msg` text COMMENT '调度-日志',
  46. `handle_time` datetime DEFAULT NULL COMMENT '执行-时间',
  47. `handle_code` int(11) NOT NULL COMMENT '执行-状态',
  48. `handle_msg` text COMMENT '执行-日志',
  49. `alarm_status` tinyint(4) NOT NULL DEFAULT '0' COMMENT '告警状态:0-默认、1-无需告警、2-告警成功、3-告警失败',
  50. PRIMARY KEY (`id`),
  51. KEY `I_trigger_time` (`trigger_time`),
  52. KEY `I_handle_code` (`handle_code`)
  53. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  54. CREATE TABLE `xxl_job_log_report`
  55. (
  56. `id` int(11) NOT NULL AUTO_INCREMENT,
  57. `trigger_day` datetime DEFAULT NULL COMMENT '调度-时间',
  58. `running_count` int(11) NOT NULL DEFAULT '0' COMMENT '运行中-日志数量',
  59. `suc_count` int(11) NOT NULL DEFAULT '0' COMMENT '执行成功-日志数量',
  60. `fail_count` int(11) NOT NULL DEFAULT '0' COMMENT '执行失败-日志数量',
  61. PRIMARY KEY (`id`),
  62. UNIQUE KEY `i_trigger_day` (`trigger_day`) USING BTREE
  63. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  64. CREATE TABLE `xxl_job_logglue`
  65. (
  66. `id` int(11) NOT NULL AUTO_INCREMENT,
  67. `job_id` int(11) NOT NULL COMMENT '任务,主键ID',
  68. `glue_type` varchar(50) DEFAULT NULL COMMENT 'GLUE类型',
  69. `glue_source` mediumtext COMMENT 'GLUE源代码',
  70. `glue_remark` varchar(128) NOT NULL COMMENT 'GLUE备注',
  71. `add_time` datetime DEFAULT NULL,
  72. `update_time` datetime DEFAULT NULL,
  73. PRIMARY KEY (`id`)
  74. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  75. CREATE TABLE `xxl_job_registry`
  76. (
  77. `id` int(11) NOT NULL AUTO_INCREMENT,
  78. `registry_group` varchar(50) NOT NULL,
  79. `registry_key` varchar(255) NOT NULL,
  80. `registry_value` varchar(255) NOT NULL,
  81. `update_time` datetime DEFAULT NULL,
  82. PRIMARY KEY (`id`),
  83. KEY `i_g_k_v` (`registry_group`,`registry_key`,`registry_value`)
  84. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  85. CREATE TABLE `xxl_job_group`
  86. (
  87. `id` int(11) NOT NULL AUTO_INCREMENT,
  88. `app_name` varchar(64) NOT NULL COMMENT '执行器AppName',
  89. `title` varchar(12) NOT NULL COMMENT '执行器名称',
  90. `order` int(11) NOT NULL DEFAULT '0' COMMENT '排序',
  91. `address_type` tinyint(4) NOT NULL DEFAULT '0' COMMENT '执行器地址类型:0=自动注册、1=手动录入',
  92. `address_list` varchar(512) DEFAULT NULL COMMENT '执行器地址列表,多地址逗号分隔',
  93. PRIMARY KEY (`id`)
  94. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  95. CREATE TABLE `xxl_job_user`
  96. (
  97. `id` int(11) NOT NULL AUTO_INCREMENT,
  98. `username` varchar(50) NOT NULL COMMENT '账号',
  99. `password` varchar(50) NOT NULL COMMENT '密码',
  100. `role` tinyint(4) NOT NULL COMMENT '角色:0-普通用户、1-管理员',
  101. `permission` varchar(255) DEFAULT NULL COMMENT '权限:执行器ID列表,多个逗号分割',
  102. PRIMARY KEY (`id`),
  103. UNIQUE KEY `i_username` (`username`) USING BTREE
  104. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  105. CREATE TABLE `xxl_job_lock`
  106. (
  107. `lock_name` varchar(50) NOT NULL COMMENT '锁名称',
  108. PRIMARY KEY (`lock_name`)
  109. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  110. INSERT INTO `xxl_job_group`(`id`, `app_name`, `title`, `order`, `address_type`, `address_list`)
  111. VALUES (1, 'blade-xxljob', '示例执行器', 1, 0, NULL);
  112. INSERT INTO `xxl_job_info`(`id`, `job_group`, `job_cron`, `job_desc`, `add_time`, `update_time`, `author`,
  113. `alarm_email`, `executor_route_strategy`, `executor_handler`, `executor_param`,
  114. `executor_block_strategy`, `executor_timeout`, `executor_fail_retry_count`, `glue_type`,
  115. `glue_source`, `glue_remark`, `glue_updatetime`, `child_jobid`)
  116. VALUES (1, 1, '0 0 0 keyword error:', '测试任务1', '2018-11-03 22:21:31', '2018-11-03 22:21:31', 'XXL', '', 'FIRST',
  117. 'demoJobHandler', '', 'SERIAL_EXECUTION', 0, 0, 'BEAN', '', 'GLUE代码初始化', '2018-11-03 22:21:31', '');
  118. INSERT INTO `xxl_job_user`(`id`, `username`, `password`, `role`, `permission`)
  119. VALUES (1, 'admin', 'e10adc3949ba59abbe56e057f20f883e', 1, NULL);
  120. INSERT INTO `xxl_job_lock` (`lock_name`)
  121. VALUES ('schedule_lock');
  122. commit;