提交 | 用户 | 时间
|
e7c126
|
1 |
/* |
H |
2 |
Navicat Premium Data Transfer |
|
3 |
|
|
4 |
Source Server : localhost_3306 |
|
5 |
Source Server Type : MySQL |
|
6 |
Source Server Version : 80019 |
|
7 |
Source Host : localhost:3306 |
|
8 |
Source Schema : xxl_job |
|
9 |
|
|
10 |
Target Server Type : MySQL |
|
11 |
Target Server Version : 80019 |
|
12 |
File Encoding : 65001 |
|
13 |
|
|
14 |
Date: 10/07/2024 09:43:47 |
|
15 |
*/ |
|
16 |
|
|
17 |
SET NAMES utf8mb4; |
|
18 |
SET FOREIGN_KEY_CHECKS = 0; |
|
19 |
|
|
20 |
-- ---------------------------- |
|
21 |
-- Table structure for xxl_job_group |
|
22 |
-- ---------------------------- |
|
23 |
DROP TABLE IF EXISTS `xxl_job_group`; |
|
24 |
CREATE TABLE `xxl_job_group` ( |
|
25 |
`id` int NOT NULL AUTO_INCREMENT, |
|
26 |
`app_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '执行器AppName', |
|
27 |
`title` varchar(12) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '执行器名称', |
|
28 |
`address_type` tinyint NOT NULL DEFAULT 0 COMMENT '执行器地址类型:0=自动注册、1=手动录入', |
|
29 |
`address_list` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL COMMENT '执行器地址列表,多地址逗号分隔', |
|
30 |
`update_time` datetime NULL DEFAULT NULL, |
|
31 |
PRIMARY KEY (`id`) USING BTREE |
|
32 |
) ENGINE = InnoDB AUTO_INCREMENT = 4 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; |
|
33 |
|
|
34 |
-- ---------------------------- |
|
35 |
-- Records of xxl_job_group |
|
36 |
-- ---------------------------- |
|
37 |
INSERT INTO `xxl_job_group` VALUES (1, 'xxl-job-executor-sample', '示例执行器', 0, NULL, '2024-07-10 09:24:08'); |
|
38 |
INSERT INTO `xxl_job_group` VALUES (2, 'system-server', '系统服务', 0, 'http://192.168.110.6:9999/', '2024-07-10 09:24:08'); |
|
39 |
INSERT INTO `xxl_job_group` VALUES (3, 'infra-server', '基础服务', 0, 'http://192.168.110.6:10001/', '2024-07-10 09:24:08'); |
|
40 |
|
|
41 |
-- ---------------------------- |
|
42 |
-- Table structure for xxl_job_info |
|
43 |
-- ---------------------------- |
|
44 |
DROP TABLE IF EXISTS `xxl_job_info`; |
|
45 |
CREATE TABLE `xxl_job_info` ( |
|
46 |
`id` int NOT NULL AUTO_INCREMENT, |
|
47 |
`job_group` int NOT NULL COMMENT '执行器主键ID', |
|
48 |
`job_desc` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, |
|
49 |
`add_time` datetime NULL DEFAULT NULL, |
|
50 |
`update_time` datetime NULL DEFAULT NULL, |
|
51 |
`author` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '作者', |
|
52 |
`alarm_email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '报警邮件', |
|
53 |
`schedule_type` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL DEFAULT 'NONE' COMMENT '调度类型', |
|
54 |
`schedule_conf` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '调度配置,值含义取决于调度类型', |
|
55 |
`misfire_strategy` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL DEFAULT 'DO_NOTHING' COMMENT '调度过期策略', |
|
56 |
`executor_route_strategy` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '执行器路由策略', |
|
57 |
`executor_handler` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '执行器任务handler', |
|
58 |
`executor_param` varchar(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '执行器任务参数', |
|
59 |
`executor_block_strategy` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '阻塞处理策略', |
|
60 |
`executor_timeout` int NOT NULL DEFAULT 0 COMMENT '任务执行超时时间,单位秒', |
|
61 |
`executor_fail_retry_count` int NOT NULL DEFAULT 0 COMMENT '失败重试次数', |
|
62 |
`glue_type` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT 'GLUE类型', |
|
63 |
`glue_source` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL COMMENT 'GLUE源代码', |
|
64 |
`glue_remark` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT 'GLUE备注', |
|
65 |
`glue_updatetime` datetime NULL DEFAULT NULL COMMENT 'GLUE更新时间', |
|
66 |
`child_jobid` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '子任务ID,多个逗号分隔', |
|
67 |
`trigger_status` tinyint NOT NULL DEFAULT 0 COMMENT '调度状态:0-停止,1-运行', |
|
68 |
`trigger_last_time` bigint NOT NULL DEFAULT 0 COMMENT '上次调度时间', |
|
69 |
`trigger_next_time` bigint NOT NULL DEFAULT 0 COMMENT '下次调度时间', |
|
70 |
PRIMARY KEY (`id`) USING BTREE |
|
71 |
) ENGINE = InnoDB AUTO_INCREMENT = 4 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; |
|
72 |
|
|
73 |
-- ---------------------------- |
|
74 |
-- Records of xxl_job_info |
|
75 |
-- ---------------------------- |
|
76 |
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); |
|
77 |
INSERT INTO `xxl_job_info` VALUES (2, 2, '测试系统job', '2024-07-03 14:03:41', '2024-07-03 15:15:44', '侯中坚', 'houzhongyi@126.com', 'CRON', '0 * * * * ?', 'DO_NOTHING', 'FIRST', 'demoJob', '', 'SERIAL_EXECUTION', 0, 0, 'BEAN', '', 'GLUE代码初始化', '2024-07-03 14:03:41', '', 0, 0, 0); |
|
78 |
INSERT INTO `xxl_job_info` VALUES (3, 3, '测试基础job', '2024-07-03 15:15:07', '2024-07-03 15:15:38', '侯中坚', 'houzhongyi@126.com', 'CRON', '0 * * * * ?', 'DO_NOTHING', 'FIRST', 'demoJob', '', 'SERIAL_EXECUTION', 0, 0, 'BEAN', '', 'GLUE代码初始化', '2024-07-03 15:15:07', '', 0, 0, 0); |
|
79 |
|
|
80 |
-- ---------------------------- |
|
81 |
-- Table structure for xxl_job_lock |
|
82 |
-- ---------------------------- |
|
83 |
DROP TABLE IF EXISTS `xxl_job_lock`; |
|
84 |
CREATE TABLE `xxl_job_lock` ( |
|
85 |
`lock_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '锁名称', |
|
86 |
PRIMARY KEY (`lock_name`) USING BTREE |
|
87 |
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; |
|
88 |
|
|
89 |
-- ---------------------------- |
|
90 |
-- Records of xxl_job_lock |
|
91 |
-- ---------------------------- |
|
92 |
INSERT INTO `xxl_job_lock` VALUES ('schedule_lock'); |
|
93 |
|
|
94 |
-- ---------------------------- |
|
95 |
-- Table structure for xxl_job_log |
|
96 |
-- ---------------------------- |
|
97 |
DROP TABLE IF EXISTS `xxl_job_log`; |
|
98 |
CREATE TABLE `xxl_job_log` ( |
|
99 |
`id` bigint NOT NULL AUTO_INCREMENT, |
|
100 |
`job_group` int NOT NULL COMMENT '执行器主键ID', |
|
101 |
`job_id` int NOT NULL COMMENT '任务,主键ID', |
|
102 |
`executor_address` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '执行器地址,本次执行的地址', |
|
103 |
`executor_handler` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '执行器任务handler', |
|
104 |
`executor_param` varchar(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '执行器任务参数', |
|
105 |
`executor_sharding_param` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '执行器任务分片参数,格式如 1/2', |
|
106 |
`executor_fail_retry_count` int NOT NULL DEFAULT 0 COMMENT '失败重试次数', |
|
107 |
`trigger_time` datetime NULL DEFAULT NULL COMMENT '调度-时间', |
|
108 |
`trigger_code` int NOT NULL COMMENT '调度-结果', |
|
109 |
`trigger_msg` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL COMMENT '调度-日志', |
|
110 |
`handle_time` datetime NULL DEFAULT NULL COMMENT '执行-时间', |
|
111 |
`handle_code` int NOT NULL COMMENT '执行-状态', |
|
112 |
`handle_msg` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL COMMENT '执行-日志', |
|
113 |
`alarm_status` tinyint NOT NULL DEFAULT 0 COMMENT '告警状态:0-默认、1-无需告警、2-告警成功、3-告警失败', |
|
114 |
PRIMARY KEY (`id`) USING BTREE, |
|
115 |
INDEX `I_trigger_time`(`trigger_time` ASC) USING BTREE, |
|
116 |
INDEX `I_handle_code`(`handle_code` ASC) USING BTREE |
|
117 |
) ENGINE = InnoDB AUTO_INCREMENT = 82 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; |
|
118 |
|
|
119 |
-- ---------------------------- |
|
120 |
-- Records of xxl_job_log |
|
121 |
-- ---------------------------- |
|
122 |
INSERT INTO `xxl_job_log` VALUES (1, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:03:47', 200, '任务触发类型:手动触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:03:48', 200, '', 0); |
|
123 |
INSERT INTO `xxl_job_log` VALUES (2, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:04:01', 200, '任务触发类型:手动触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:04:01', 200, '', 0); |
|
124 |
INSERT INTO `xxl_job_log` VALUES (3, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:06:50', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:06:51', 200, '', 0); |
|
125 |
INSERT INTO `xxl_job_log` VALUES (4, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:06:51', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:06:51', 200, '', 0); |
|
126 |
INSERT INTO `xxl_job_log` VALUES (5, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:06:52', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:06:52', 200, '', 0); |
|
127 |
INSERT INTO `xxl_job_log` VALUES (6, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:06:53', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:06:53', 200, '', 0); |
|
128 |
INSERT INTO `xxl_job_log` VALUES (7, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:06:54', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:06:54', 200, '', 0); |
|
129 |
INSERT INTO `xxl_job_log` VALUES (8, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:06:55', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:06:55', 200, '', 0); |
|
130 |
INSERT INTO `xxl_job_log` VALUES (9, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:06:56', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:06:56', 200, '', 0); |
|
131 |
INSERT INTO `xxl_job_log` VALUES (10, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:06:57', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:06:57', 200, '', 0); |
|
132 |
INSERT INTO `xxl_job_log` VALUES (11, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:06:58', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:06:58', 200, '', 0); |
|
133 |
INSERT INTO `xxl_job_log` VALUES (12, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:06:59', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:06:59', 200, '', 0); |
|
134 |
INSERT INTO `xxl_job_log` VALUES (13, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:07:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:07:00', 200, '', 0); |
|
135 |
INSERT INTO `xxl_job_log` VALUES (14, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:10:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:10:00', 200, '', 0); |
|
136 |
INSERT INTO `xxl_job_log` VALUES (15, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:11:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:11:00', 200, '', 0); |
|
137 |
INSERT INTO `xxl_job_log` VALUES (16, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:12:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:12:00', 200, '', 0); |
|
138 |
INSERT INTO `xxl_job_log` VALUES (17, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:13:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:13:00', 200, '', 0); |
|
139 |
INSERT INTO `xxl_job_log` VALUES (18, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:14:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:14:00', 200, '', 0); |
|
140 |
INSERT INTO `xxl_job_log` VALUES (19, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:15:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:15:00', 200, '', 0); |
|
141 |
INSERT INTO `xxl_job_log` VALUES (20, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:16:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:16:00', 200, '', 0); |
|
142 |
INSERT INTO `xxl_job_log` VALUES (21, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:17:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:17:00', 200, '', 0); |
|
143 |
INSERT INTO `xxl_job_log` VALUES (22, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:18:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:18:00', 200, '', 0); |
|
144 |
INSERT INTO `xxl_job_log` VALUES (23, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:19:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:19:00', 200, '', 0); |
|
145 |
INSERT INTO `xxl_job_log` VALUES (24, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:20:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:20:00', 200, '', 0); |
|
146 |
INSERT INTO `xxl_job_log` VALUES (25, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:21:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:21:00', 200, '', 0); |
|
147 |
INSERT INTO `xxl_job_log` VALUES (26, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:22:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:22:00', 200, '', 0); |
|
148 |
INSERT INTO `xxl_job_log` VALUES (27, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:23:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:23:00', 200, '', 0); |
|
149 |
INSERT INTO `xxl_job_log` VALUES (28, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:24:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:24:00', 200, '', 0); |
|
150 |
INSERT INTO `xxl_job_log` VALUES (29, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:25:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:25:00', 200, '', 0); |
|
151 |
INSERT INTO `xxl_job_log` VALUES (30, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:26:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:26:00', 200, '', 0); |
|
152 |
INSERT INTO `xxl_job_log` VALUES (31, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:27:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:27:00', 200, '', 0); |
|
153 |
INSERT INTO `xxl_job_log` VALUES (32, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:28:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:28:00', 200, '', 0); |
|
154 |
INSERT INTO `xxl_job_log` VALUES (33, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:29:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:29:00', 200, '', 0); |
|
155 |
INSERT INTO `xxl_job_log` VALUES (34, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:30:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:30:00', 200, '', 0); |
|
156 |
INSERT INTO `xxl_job_log` VALUES (35, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:31:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:31:00', 200, '', 0); |
|
157 |
INSERT INTO `xxl_job_log` VALUES (36, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:32:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:32:00', 200, '', 0); |
|
158 |
INSERT INTO `xxl_job_log` VALUES (37, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:33:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:33:00', 200, '', 0); |
|
159 |
INSERT INTO `xxl_job_log` VALUES (38, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:34:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:34:00', 200, '', 0); |
|
160 |
INSERT INTO `xxl_job_log` VALUES (39, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:35:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:35:00', 200, '', 0); |
|
161 |
INSERT INTO `xxl_job_log` VALUES (40, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:36:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:36:00', 200, '', 0); |
|
162 |
INSERT INTO `xxl_job_log` VALUES (41, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:37:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:37:00', 200, '', 0); |
|
163 |
INSERT INTO `xxl_job_log` VALUES (42, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:38:00', 500, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:500<br>msg:xxl-job remoting error(Connection refused: connect), for url : http://172.16.178.119:9999/run', NULL, 0, NULL, 3); |
|
164 |
INSERT INTO `xxl_job_log` VALUES (43, 2, 2, NULL, 'demoJob', '', NULL, 0, '2024-07-03 14:39:00', 500, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>调度失败:执行器地址为空<br><br>', NULL, 0, NULL, 3); |
|
165 |
INSERT INTO `xxl_job_log` VALUES (44, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:40:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:40:01', 200, '', 0); |
|
166 |
INSERT INTO `xxl_job_log` VALUES (45, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:41:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:41:00', 200, '', 0); |
|
167 |
INSERT INTO `xxl_job_log` VALUES (46, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:42:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:42:00', 200, '', 0); |
|
168 |
INSERT INTO `xxl_job_log` VALUES (47, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:43:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:43:00', 200, '', 0); |
|
169 |
INSERT INTO `xxl_job_log` VALUES (48, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:44:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:44:00', 200, '', 0); |
|
170 |
INSERT INTO `xxl_job_log` VALUES (49, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:45:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:45:00', 200, '', 0); |
|
171 |
INSERT INTO `xxl_job_log` VALUES (50, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:46:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:46:00', 200, '', 0); |
|
172 |
INSERT INTO `xxl_job_log` VALUES (51, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:47:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:47:00', 200, '', 0); |
|
173 |
INSERT INTO `xxl_job_log` VALUES (52, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:48:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:48:00', 200, '', 0); |
|
174 |
INSERT INTO `xxl_job_log` VALUES (53, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:49:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:49:00', 200, '', 0); |
|
175 |
INSERT INTO `xxl_job_log` VALUES (54, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:50:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:50:00', 200, '', 0); |
|
176 |
INSERT INTO `xxl_job_log` VALUES (55, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:51:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:51:00', 200, '', 0); |
|
177 |
INSERT INTO `xxl_job_log` VALUES (56, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:52:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:52:00', 200, '', 0); |
|
178 |
INSERT INTO `xxl_job_log` VALUES (57, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:53:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:53:00', 200, '', 0); |
|
179 |
INSERT INTO `xxl_job_log` VALUES (58, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:54:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:54:00', 200, '', 0); |
|
180 |
INSERT INTO `xxl_job_log` VALUES (59, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:55:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:55:00', 200, '', 0); |
|
181 |
INSERT INTO `xxl_job_log` VALUES (60, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:56:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:56:00', 200, '', 0); |
|
182 |
INSERT INTO `xxl_job_log` VALUES (61, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:57:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:57:00', 200, '', 0); |
|
183 |
INSERT INTO `xxl_job_log` VALUES (62, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:58:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:58:00', 200, '', 0); |
|
184 |
INSERT INTO `xxl_job_log` VALUES (63, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 14:59:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 14:59:00', 200, '', 0); |
|
185 |
INSERT INTO `xxl_job_log` VALUES (64, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 15:00:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 15:00:00', 200, '', 0); |
|
186 |
INSERT INTO `xxl_job_log` VALUES (65, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 15:01:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 15:01:00', 200, '', 0); |
|
187 |
INSERT INTO `xxl_job_log` VALUES (66, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 15:02:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 15:02:00', 200, '', 0); |
|
188 |
INSERT INTO `xxl_job_log` VALUES (67, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 15:03:00', 500, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:500<br>msg:xxl-job remoting error(Connection refused: connect), for url : http://172.16.178.119:9999/run', NULL, 0, NULL, 3); |
|
189 |
INSERT INTO `xxl_job_log` VALUES (68, 2, 2, NULL, 'demoJob', '', NULL, 0, '2024-07-03 15:04:00', 500, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>调度失败:执行器地址为空<br><br>', NULL, 0, NULL, 3); |
|
190 |
INSERT INTO `xxl_job_log` VALUES (69, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 15:05:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 15:05:01', 200, '', 0); |
|
191 |
INSERT INTO `xxl_job_log` VALUES (70, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 15:06:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 15:06:00', 200, '', 0); |
|
192 |
INSERT INTO `xxl_job_log` VALUES (71, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 15:07:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 15:07:14', 200, '', 0); |
|
193 |
INSERT INTO `xxl_job_log` VALUES (72, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 15:08:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 15:08:00', 200, '', 0); |
|
194 |
INSERT INTO `xxl_job_log` VALUES (73, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 15:09:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 15:09:00', 200, '', 0); |
|
195 |
INSERT INTO `xxl_job_log` VALUES (74, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 15:10:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 15:10:00', 200, '', 0); |
|
196 |
INSERT INTO `xxl_job_log` VALUES (75, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 15:11:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 15:11:00', 200, '', 0); |
|
197 |
INSERT INTO `xxl_job_log` VALUES (76, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 15:12:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 15:12:00', 200, '', 0); |
|
198 |
INSERT INTO `xxl_job_log` VALUES (77, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 15:13:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 15:13:00', 200, '', 0); |
|
199 |
INSERT INTO `xxl_job_log` VALUES (78, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 15:14:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 15:14:00', 200, '', 0); |
|
200 |
INSERT INTO `xxl_job_log` VALUES (79, 2, 2, 'http://172.16.178.119:9999/', 'demoJob', '', NULL, 0, '2024-07-03 15:15:00', 200, '任务触发类型:Cron触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:9999/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:9999/<br>code:200<br>msg:null', '2024-07-03 15:15:00', 200, '', 0); |
|
201 |
INSERT INTO `xxl_job_log` VALUES (80, 3, 3, 'http://172.16.178.119:10001/', 'demoJob', '', NULL, 0, '2024-07-03 15:15:53', 500, '任务触发类型:手动触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 3); |
|
202 |
INSERT INTO `xxl_job_log` VALUES (81, 3, 3, 'http://172.16.178.119:10001/', 'demoJob', '', NULL, 0, '2024-07-03 15:19:15', 200, '任务触发类型:手动触发<br>调度机器:172.16.178.119<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://172.16.178.119:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br>触发调度:<br>address:http://172.16.178.119:10001/<br>code:200<br>msg:null', '2024-07-03 15:19:15', 200, '', 0); |
|
203 |
|
|
204 |
-- ---------------------------- |
|
205 |
-- Table structure for xxl_job_log_report |
|
206 |
-- ---------------------------- |
|
207 |
DROP TABLE IF EXISTS `xxl_job_log_report`; |
|
208 |
CREATE TABLE `xxl_job_log_report` ( |
|
209 |
`id` int NOT NULL AUTO_INCREMENT, |
|
210 |
`trigger_day` datetime NULL DEFAULT NULL COMMENT '调度-时间', |
|
211 |
`running_count` int NOT NULL DEFAULT 0 COMMENT '运行中-日志数量', |
|
212 |
`suc_count` int NOT NULL DEFAULT 0 COMMENT '执行成功-日志数量', |
|
213 |
`fail_count` int NOT NULL DEFAULT 0 COMMENT '执行失败-日志数量', |
|
214 |
`update_time` datetime NULL DEFAULT NULL, |
|
215 |
PRIMARY KEY (`id`) USING BTREE, |
|
216 |
UNIQUE INDEX `i_trigger_day`(`trigger_day` ASC) USING BTREE |
|
217 |
) ENGINE = InnoDB AUTO_INCREMENT = 14 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; |
|
218 |
|
|
219 |
-- ---------------------------- |
|
220 |
-- Records of xxl_job_log_report |
|
221 |
-- ---------------------------- |
|
222 |
INSERT INTO `xxl_job_log_report` VALUES (1, '2024-07-03 00:00:00', 0, 76, 5, NULL); |
|
223 |
INSERT INTO `xxl_job_log_report` VALUES (2, '2024-07-02 00:00:00', 0, 0, 0, NULL); |
|
224 |
INSERT INTO `xxl_job_log_report` VALUES (3, '2024-07-01 00:00:00', 0, 0, 0, NULL); |
|
225 |
INSERT INTO `xxl_job_log_report` VALUES (4, '2024-07-04 00:00:00', 0, 0, 0, NULL); |
|
226 |
INSERT INTO `xxl_job_log_report` VALUES (5, '2024-07-05 00:00:00', 0, 0, 0, NULL); |
|
227 |
INSERT INTO `xxl_job_log_report` VALUES (6, '2024-07-08 00:00:00', 0, 0, 0, NULL); |
|
228 |
INSERT INTO `xxl_job_log_report` VALUES (7, '2024-07-07 00:00:00', 0, 0, 0, NULL); |
|
229 |
INSERT INTO `xxl_job_log_report` VALUES (8, '2024-07-06 00:00:00', 0, 0, 0, NULL); |
|
230 |
INSERT INTO `xxl_job_log_report` VALUES (9, '2024-06-08 00:00:00', 0, 0, 0, NULL); |
|
231 |
INSERT INTO `xxl_job_log_report` VALUES (10, '2024-06-07 00:00:00', 0, 0, 0, NULL); |
|
232 |
INSERT INTO `xxl_job_log_report` VALUES (11, '2024-06-06 00:00:00', 0, 0, 0, NULL); |
|
233 |
INSERT INTO `xxl_job_log_report` VALUES (12, '2024-07-09 00:00:00', 0, 0, 0, NULL); |
|
234 |
INSERT INTO `xxl_job_log_report` VALUES (13, '2024-07-10 00:00:00', 0, 0, 0, NULL); |
|
235 |
|
|
236 |
-- ---------------------------- |
|
237 |
-- Table structure for xxl_job_logglue |
|
238 |
-- ---------------------------- |
|
239 |
DROP TABLE IF EXISTS `xxl_job_logglue`; |
|
240 |
CREATE TABLE `xxl_job_logglue` ( |
|
241 |
`id` int NOT NULL AUTO_INCREMENT, |
|
242 |
`job_id` int NOT NULL COMMENT '任务,主键ID', |
|
243 |
`glue_type` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT 'GLUE类型', |
|
244 |
`glue_source` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL COMMENT 'GLUE源代码', |
|
245 |
`glue_remark` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT 'GLUE备注', |
|
246 |
`add_time` datetime NULL DEFAULT NULL, |
|
247 |
`update_time` datetime NULL DEFAULT NULL, |
|
248 |
PRIMARY KEY (`id`) USING BTREE |
|
249 |
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; |
|
250 |
|
|
251 |
-- ---------------------------- |
|
252 |
-- Records of xxl_job_logglue |
|
253 |
-- ---------------------------- |
|
254 |
|
|
255 |
-- ---------------------------- |
|
256 |
-- Table structure for xxl_job_registry |
|
257 |
-- ---------------------------- |
|
258 |
DROP TABLE IF EXISTS `xxl_job_registry`; |
|
259 |
CREATE TABLE `xxl_job_registry` ( |
|
260 |
`id` int NOT NULL AUTO_INCREMENT, |
|
261 |
`registry_group` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, |
|
262 |
`registry_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, |
|
263 |
`registry_value` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, |
|
264 |
`update_time` datetime NULL DEFAULT NULL, |
|
265 |
PRIMARY KEY (`id`) USING BTREE, |
|
266 |
INDEX `i_g_k_v`(`registry_group` ASC, `registry_key` ASC, `registry_value` ASC) USING BTREE |
|
267 |
) ENGINE = InnoDB AUTO_INCREMENT = 55 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; |
|
268 |
|
|
269 |
-- ---------------------------- |
|
270 |
-- Records of xxl_job_registry |
|
271 |
-- ---------------------------- |
|
272 |
INSERT INTO `xxl_job_registry` VALUES (53, 'EXECUTOR', 'system-server', 'http://192.168.110.6:9999/', '2024-07-10 09:24:14'); |
|
273 |
INSERT INTO `xxl_job_registry` VALUES (54, 'EXECUTOR', 'infra-server', 'http://192.168.110.6:10001/', '2024-07-10 09:24:00'); |
|
274 |
|
|
275 |
-- ---------------------------- |
|
276 |
-- Table structure for xxl_job_user |
|
277 |
-- ---------------------------- |
|
278 |
DROP TABLE IF EXISTS `xxl_job_user`; |
|
279 |
CREATE TABLE `xxl_job_user` ( |
|
280 |
`id` int NOT NULL AUTO_INCREMENT, |
|
281 |
`username` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '账号', |
|
282 |
`password` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '密码', |
|
283 |
`role` tinyint NOT NULL COMMENT '角色:0-普通用户、1-管理员', |
|
284 |
`permission` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '权限:执行器ID列表,多个逗号分割', |
|
285 |
PRIMARY KEY (`id`) USING BTREE, |
|
286 |
UNIQUE INDEX `i_username`(`username` ASC) USING BTREE |
|
287 |
) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; |
|
288 |
|
|
289 |
-- ---------------------------- |
|
290 |
-- Records of xxl_job_user |
|
291 |
-- ---------------------------- |
|
292 |
INSERT INTO `xxl_job_user` VALUES (1, 'admin', 'e10adc3949ba59abbe56e057f20f883e', 1, NULL); |
|
293 |
|
|
294 |
SET FOREIGN_KEY_CHECKS = 1; |