mirror of
https://github.com/jeecgboot/JeecgBoot.git
synced 2026-08-17 10:18:47 +00:00
9947 lines
6.2 MiB
9947 lines
6.2 MiB
CREATE database if NOT EXISTS `xxl_job` default character set utf8mb4 collate utf8mb4_unicode_ci;
|
||
use `xxl_job`;
|
||
|
||
/*
|
||
Navicat Premium Data Transfer
|
||
|
||
Source Server : mysql5.7
|
||
Source Server Type : MySQL
|
||
Source Server Version : 50738 (5.7.38)
|
||
Source Host : 127.0.0.1:3306
|
||
Source Schema : xxl_job3
|
||
|
||
Target Server Type : MySQL
|
||
Target Server Version : 50738 (5.7.38)
|
||
File Encoding : 65001
|
||
|
||
Date: 07/07/2026 10:32:44
|
||
*/
|
||
|
||
SET NAMES utf8mb4;
|
||
SET FOREIGN_KEY_CHECKS = 0;
|
||
|
||
-- ----------------------------
|
||
-- Table structure for xxl_job_group
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `xxl_job_group`;
|
||
CREATE TABLE `xxl_job_group` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`app_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '执行器AppName',
|
||
`title` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '执行器名称',
|
||
`address_type` tinyint(4) NOT NULL DEFAULT 0 COMMENT '执行器地址类型:0=自动注册、1=手动录入',
|
||
`address_list` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '执行器地址列表,多地址逗号分隔',
|
||
`update_time` datetime NULL DEFAULT NULL,
|
||
PRIMARY KEY (`id`) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 5 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of xxl_job_group
|
||
-- ----------------------------
|
||
INSERT INTO `xxl_job_group` VALUES (1, 'xxl-job-executor-sample', '通用执行器Sample', 0, NULL, '2026-07-07 00:16:00');
|
||
INSERT INTO `xxl_job_group` VALUES (2, 'xxl-job-executor-sample-ai', 'AI执行器Sample', 0, NULL, '2026-07-07 00:16:00');
|
||
INSERT INTO `xxl_job_group` VALUES (3, 'jeecg-demo', '测试Demo模块', 0, 'http://192.168.1.2:10000/', '2026-07-07 00:16:00');
|
||
INSERT INTO `xxl_job_group` VALUES (4, 'jeecg-system', '系统System模块', 0, 'http://192.168.1.2:10001/', '2026-07-07 00:16:00');
|
||
|
||
-- ----------------------------
|
||
-- Table structure for xxl_job_info
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `xxl_job_info`;
|
||
CREATE TABLE `xxl_job_info` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`job_group` int(11) NOT NULL COMMENT '执行器主键ID',
|
||
`job_desc` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||
`add_time` datetime NULL DEFAULT NULL,
|
||
`update_time` datetime NULL DEFAULT NULL,
|
||
`author` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '作者',
|
||
`alarm_email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '报警邮件',
|
||
`schedule_type` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT 'NONE' COMMENT '调度类型',
|
||
`schedule_conf` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '调度配置,值含义取决于调度类型',
|
||
`misfire_strategy` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT 'DO_NOTHING' COMMENT '调度过期策略',
|
||
`executor_route_strategy` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '执行器路由策略',
|
||
`executor_handler` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '任务handler',
|
||
`executor_param` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '任务参数',
|
||
`executor_block_strategy` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '阻塞处理策略',
|
||
`executor_timeout` int(11) NOT NULL DEFAULT 0 COMMENT '任务执行超时时间,单位秒',
|
||
`executor_fail_retry_count` int(11) NOT NULL DEFAULT 0 COMMENT '失败重试次数',
|
||
`glue_type` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT 'GLUE类型',
|
||
`glue_source` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT 'GLUE源代码',
|
||
`glue_remark` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT 'GLUE备注',
|
||
`glue_updatetime` datetime NULL DEFAULT NULL COMMENT 'GLUE更新时间',
|
||
`child_jobid` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '子任务ID,多个逗号分隔',
|
||
`trigger_status` tinyint(4) NOT NULL DEFAULT 0 COMMENT '调度状态:0-停止,1-运行',
|
||
`trigger_last_time` bigint(13) NOT NULL DEFAULT 0 COMMENT '上次调度时间',
|
||
`trigger_next_time` bigint(13) NOT NULL DEFAULT 0 COMMENT '下次调度时间',
|
||
PRIMARY KEY (`id`) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 6 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of xxl_job_info
|
||
-- ----------------------------
|
||
INSERT INTO `xxl_job_info` VALUES (1, 1, '示例任务01', '2026-07-06 19:30:57', '2026-07-06 19:56:12', 'XXL', '', 'CRON', '0 0 0 * * ? *', 'DO_NOTHING', 'FIRST', 'demoJobHandler', '', 'SERIAL_EXECUTION', 0, 0, 'BEAN', '', 'GLUE代码初始化', '2026-07-06 19:30:57', '', 1, 1783353600000, 1783440000000);
|
||
INSERT INTO `xxl_job_info` VALUES (2, 2, 'Ollama示例任务', '2026-07-06 19:30:57', '2026-07-06 19:30:57', 'XXL', '', 'NONE', '', 'DO_NOTHING', 'FIRST', 'ollamaJobHandler', '{\r\n \"input\": \"Java实现二叉树层序遍历\",\r\n \"prompt\": \"你是一个研发工程师,擅长解决技术类问题。\",\r\n \"model\": \"qwen3.5:0.8b\"\r\n}', 'SERIAL_EXECUTION', 0, 0, 'BEAN', '', 'GLUE代码初始化', '2026-07-06 19:30:57', '', 0, 0, 0);
|
||
INSERT INTO `xxl_job_info` VALUES (3, 2, 'Dify示例任务', '2026-07-06 19:30:57', '2026-07-06 19:30:57', 'XXL', '', 'NONE', '', 'DO_NOTHING', 'FIRST', 'difyWorkflowJobHandler', '{\r\n \"inputs\":{\r\n \"input\":\"查询班级各学科前三名\"\r\n },\r\n \"user\": \"xxl-job\",\r\n \"baseUrl\": \"http://localhost/v1\",\r\n \"apiKey\": \"app-OUVgNUOQRIMokfmuJvBJoUTN\"\r\n}', 'SERIAL_EXECUTION', 0, 0, 'BEAN', '', 'GLUE代码初始化', '2026-07-06 19:30:57', '', 0, 0, 0);
|
||
INSERT INTO `xxl_job_info` VALUES (4, 2, 'OpenClaw示例任务', '2026-07-06 19:30:57', '2026-07-06 19:30:57', 'XXL', '', 'NONE', '', 'DO_NOTHING', 'FIRST', 'openClawJobHandler', '{\r\n \"input\": \"查看下上海今天得天气,给出出游建议\",\r\n \"prompt\": \"你是一个出游助手,擅长做旅游规划\"\r\n}', 'SERIAL_EXECUTION', 0, 0, 'BEAN', '', 'GLUE代码初始化', '2026-07-06 19:30:57', '', 0, 0, 0);
|
||
INSERT INTO `xxl_job_info` VALUES (5, 4, '测试jeecg xxljob', '2024-08-21 22:41:10', '2026-07-06 21:57:04', 'JEECG', '', 'CRON', '* * * * * ?', 'DO_NOTHING', 'FIRST', 'demoJob', '', 'SERIAL_EXECUTION', 0, 0, 'BEAN', '', 'GLUE代码初始化', '2024-08-21 22:41:10', '', 1, 1783354577000, 1783354578000);
|
||
|
||
-- ----------------------------
|
||
-- Table structure for xxl_job_lock
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `xxl_job_lock`;
|
||
CREATE TABLE `xxl_job_lock` (
|
||
`lock_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '锁名称',
|
||
PRIMARY KEY (`lock_name`) USING BTREE
|
||
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of xxl_job_lock
|
||
-- ----------------------------
|
||
INSERT INTO `xxl_job_lock` VALUES ('schedule_lock');
|
||
|
||
-- ----------------------------
|
||
-- Table structure for xxl_job_log
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `xxl_job_log`;
|
||
CREATE TABLE `xxl_job_log` (
|
||
`id` bigint(20) NOT NULL AUTO_INCREMENT,
|
||
`job_group` int(11) NOT NULL COMMENT '执行器主键ID',
|
||
`job_id` int(11) NOT NULL COMMENT '任务,主键ID',
|
||
`executor_address` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '执行器地址,本次执行的地址',
|
||
`executor_handler` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '任务handler',
|
||
`executor_param` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '任务参数',
|
||
`executor_sharding_param` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '任务分片参数,格式如 1/2',
|
||
`executor_fail_retry_count` int(11) NOT NULL DEFAULT 0 COMMENT '失败重试次数',
|
||
`trigger_time` datetime NULL DEFAULT NULL COMMENT '调度-时间',
|
||
`trigger_code` int(11) NOT NULL COMMENT '调度-结果',
|
||
`trigger_msg` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '调度-日志',
|
||
`handle_time` datetime NULL DEFAULT NULL COMMENT '执行-时间',
|
||
`handle_code` int(11) NOT NULL COMMENT '执行-状态',
|
||
`handle_msg` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '执行-日志',
|
||
`alarm_status` tinyint(4) NOT NULL DEFAULT 0 COMMENT '告警状态:0-默认、1-无需告警、2-告警成功、3-告警失败',
|
||
PRIMARY KEY (`id`) USING BTREE,
|
||
INDEX `I_trigger_time`(`trigger_time`) USING BTREE,
|
||
INDEX `I_handle_code`(`handle_code`) USING BTREE,
|
||
INDEX `I_jobgroup`(`job_group`) USING BTREE,
|
||
INDEX `I_jobid`(`job_id`) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 9734 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of xxl_job_log
|
||
-- ----------------------------
|
||
INSERT INTO `xxl_job_log` VALUES (1, 1, 1, NULL, 'demoJobHandler', '', NULL, 0, '2026-07-06 19:54:59', 500, '任务触发类型:手动触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJobHandler<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2, 1, 1, NULL, 'demoJobHandler', '', NULL, 0, '2026-07-06 19:55:14', 500, '任务触发类型:手动触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJobHandler<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (6, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (7, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (8, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (9, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (10, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (11, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (12, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (13, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (14, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (15, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (16, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (17, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (18, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (19, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (20, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (21, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (22, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (23, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (24, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (25, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (26, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (27, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (28, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (29, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (30, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (31, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (32, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (33, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (34, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (35, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (36, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (37, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (38, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (39, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:47', 500, '任务触发类型:手动触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (40, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (41, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (42, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (43, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (44, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (45, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (46, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (47, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (48, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (49, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (50, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (51, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:01:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (52, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (53, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (54, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (55, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (56, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (57, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (58, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (59, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (60, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (61, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (62, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (63, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (64, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (65, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (66, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (67, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (68, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (69, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (70, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (71, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (72, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (73, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (74, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (75, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (76, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (77, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (78, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (79, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (80, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (81, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (82, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (83, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (84, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (85, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (86, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (87, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (88, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (89, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (90, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (91, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (92, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (93, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (94, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (95, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (96, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (97, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (98, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (99, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (100, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (101, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (102, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (103, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (104, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (105, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (106, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (107, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (108, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (109, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (110, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (111, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:02:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (112, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (113, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (114, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (115, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (116, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (117, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (118, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (119, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (120, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (121, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (122, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (123, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (124, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (125, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (126, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (127, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (128, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (129, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (130, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (131, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (132, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (133, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (134, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (135, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (136, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (137, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (138, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (139, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (140, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (141, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (142, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (143, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (144, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (145, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (146, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (147, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (148, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (149, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (150, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (151, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (152, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (153, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (154, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (155, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (156, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (157, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (158, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (159, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (160, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (161, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (162, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (163, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (164, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (165, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (166, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (167, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (168, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (169, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (170, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (171, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:03:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (172, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (173, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (174, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (175, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (176, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (177, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (178, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (179, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (180, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (181, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (182, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (183, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (184, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (185, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (186, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (187, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (188, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (189, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (190, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (191, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (192, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (193, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (194, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (195, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (196, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (197, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (198, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (199, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (200, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (201, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (202, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (203, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (204, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (205, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (206, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (207, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (208, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (209, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (210, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (211, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (212, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (213, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (214, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (215, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (216, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (217, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (218, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (219, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (220, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (221, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (222, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (223, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (224, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (225, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (226, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (227, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (228, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (229, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (230, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (231, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:04:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (232, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (233, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (234, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (235, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (236, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (237, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (238, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (239, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (240, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (241, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (242, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (243, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (244, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (245, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (246, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (247, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (248, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (249, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (250, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (251, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (252, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (253, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (254, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (255, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (256, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (257, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (258, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (259, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (260, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (261, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (262, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (263, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (264, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (265, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (266, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (267, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (268, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (269, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (270, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (271, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (272, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (273, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (274, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (275, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (276, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (277, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (278, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (279, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (280, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (281, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (282, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (283, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (284, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (285, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (286, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (287, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (288, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (289, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (290, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (291, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:05:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (292, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (293, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (294, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (295, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (296, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (297, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (298, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (299, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (300, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (301, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (302, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (303, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (304, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (305, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (306, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (307, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (308, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (309, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (310, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (311, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (312, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (313, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (314, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (315, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (316, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (317, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (318, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (319, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (320, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (321, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (322, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (323, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (324, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (325, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (326, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (327, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (328, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (329, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (330, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (331, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (332, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (333, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (334, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (335, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (336, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (337, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (338, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (339, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (340, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (341, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (342, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (343, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (344, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (345, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (346, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (347, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (348, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (349, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (350, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (351, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:06:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (352, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (353, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (354, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (355, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (356, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (357, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (358, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (359, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (360, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (361, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (362, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (363, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (364, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (365, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (366, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (367, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (368, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (369, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (370, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (371, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (372, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (373, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (374, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (375, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (376, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (377, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (378, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (379, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (380, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (381, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (382, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (383, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (384, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (385, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (386, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (387, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (388, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (389, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (390, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (391, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (392, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (393, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (394, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (395, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (396, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (397, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (398, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (399, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (400, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (401, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (402, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (403, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (404, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (405, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (406, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (407, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (408, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (409, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (410, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (411, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:07:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (412, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (413, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (414, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (415, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (416, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (417, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (418, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (419, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (420, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (421, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (422, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (423, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (424, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (425, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (426, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (427, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (428, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (429, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (430, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (431, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (432, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (433, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (434, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (435, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (436, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (437, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (438, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (439, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (440, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (441, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (442, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (443, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (444, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (445, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (446, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (447, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (448, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (449, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (450, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (451, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (452, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (453, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (454, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (455, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (456, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (457, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (458, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (459, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (460, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (461, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (462, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (463, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (464, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (465, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (466, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:08:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (467, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (468, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (469, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (470, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (471, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (472, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (473, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (474, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (475, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (476, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (477, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (478, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (479, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (480, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (481, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (482, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (483, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (484, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (485, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (486, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (487, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (488, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (489, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (490, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (491, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (492, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (493, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (494, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (495, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (496, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (497, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (498, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (499, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (500, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (501, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (502, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (503, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (504, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (505, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (506, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (507, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (508, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (509, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (510, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (511, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (512, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (513, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (514, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (515, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (516, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (517, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:09:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (518, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (519, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (520, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (521, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (522, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (523, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (524, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (525, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (526, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (527, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (528, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (529, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (530, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (531, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (532, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (533, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (534, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (535, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (536, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (537, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (538, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (539, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (540, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (541, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (542, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (543, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (544, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (545, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (546, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (547, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (548, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (549, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (550, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (551, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (552, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (553, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (554, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (555, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (556, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (557, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (558, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (559, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (560, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (561, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (562, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (563, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (564, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (565, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (566, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (567, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (568, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (569, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (570, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (571, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (572, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (573, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (574, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (575, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (576, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (577, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:10:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (578, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (579, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (580, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (581, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (582, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (583, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (584, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (585, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (586, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (587, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (588, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (589, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (590, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (591, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (592, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (593, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (594, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (595, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (596, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (597, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (598, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (599, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (600, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (601, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (602, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (603, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (604, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (605, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (606, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (607, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (608, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (609, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (610, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (611, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (612, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (613, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (614, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (615, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (616, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (617, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (618, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (619, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (620, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (621, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (622, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (623, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (624, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (625, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (626, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (627, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (628, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (629, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (630, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (631, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (632, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (633, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (634, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (635, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (636, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (637, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:11:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (638, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:12:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (639, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:12:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (640, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:12:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (641, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:12:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (642, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:12:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (643, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:12:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (644, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:12:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (645, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:12:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (646, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:12:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (647, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:12:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (648, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:12:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (649, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:12:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (650, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:12:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (651, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:12:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (652, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (653, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (654, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (655, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (656, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (657, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (658, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (659, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (660, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (661, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (662, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (663, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (664, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (665, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (666, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (667, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (668, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (669, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (670, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (671, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (672, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (673, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (674, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (675, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (676, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (677, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (678, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (679, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (680, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (681, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (682, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (683, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (684, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (685, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (686, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (687, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (688, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (689, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (690, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (691, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (692, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (693, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (694, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (695, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (696, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (697, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (698, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (699, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (700, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (701, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (702, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (703, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (704, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:15:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (705, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (706, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (707, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (708, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (709, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (710, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (711, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (712, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (713, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (714, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (715, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (716, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (717, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (718, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (719, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (720, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (721, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (722, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (723, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (724, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (725, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (726, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (727, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (728, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (729, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (730, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (731, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (732, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (733, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (734, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (735, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (736, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (737, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (738, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (739, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (740, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (741, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (742, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (743, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (744, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (745, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (746, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (747, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (748, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (749, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (750, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (751, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (752, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (753, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (754, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (755, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (756, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (757, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (758, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (759, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (760, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (761, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (762, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (763, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (764, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:16:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (765, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (766, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (767, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (768, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (769, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (770, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (771, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (772, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (773, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (774, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (775, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (776, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (777, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (778, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (779, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (780, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (781, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (782, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (783, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (784, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (785, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (786, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (787, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (788, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (789, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (790, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (791, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (792, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (793, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (794, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (795, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (796, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (797, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (798, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (799, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (800, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (801, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (802, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (803, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (804, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (805, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (806, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (807, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (808, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (809, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (810, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (811, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (812, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:17:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (813, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (814, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (815, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (816, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (817, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (818, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (819, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (820, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (821, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (822, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (823, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (824, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (825, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (826, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (827, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (828, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (829, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (830, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (831, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (832, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (833, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (834, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (835, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (836, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (837, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (838, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (839, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (840, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (841, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (842, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (843, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (844, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (845, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (846, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (847, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (848, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (849, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (850, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (851, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (852, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (853, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (854, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (855, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (856, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (857, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (858, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (859, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (860, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (861, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (862, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (863, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (864, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (865, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (866, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (867, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (868, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (869, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (870, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (871, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (872, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:18:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (873, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (874, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (875, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (876, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (877, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (878, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (879, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (880, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (881, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (882, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (883, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (884, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (885, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (886, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (887, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (888, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (889, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (890, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (891, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (892, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (893, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (894, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (895, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (896, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (897, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (898, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (899, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (900, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (901, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (902, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (903, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (904, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (905, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (906, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (907, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (908, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (909, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (910, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (911, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (912, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (913, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (914, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (915, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (916, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (917, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (918, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (919, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (920, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (921, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (922, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (923, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (924, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (925, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (926, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (927, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (928, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (929, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (930, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (931, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (932, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:19:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (933, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (934, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (935, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (936, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (937, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (938, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (939, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (940, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (941, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (942, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (943, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (944, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (945, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (946, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (947, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (948, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (949, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (950, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (951, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (952, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (953, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (954, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (955, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (956, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (957, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (958, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (959, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (960, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (961, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (962, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (963, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (964, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (965, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (966, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (967, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (968, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (969, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (970, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (971, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (972, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (973, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (974, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (975, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (976, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (977, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (978, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (979, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (980, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (981, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (982, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (983, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (984, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (985, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (986, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (987, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (988, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (989, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (990, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (991, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (992, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:20:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (993, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (994, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (995, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (996, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (997, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (998, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (999, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1000, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1001, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1002, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1003, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1004, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1005, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1006, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1007, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1008, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1009, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1010, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1011, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1012, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1013, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1014, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1015, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1016, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1017, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1018, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1019, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1020, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1021, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1022, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1023, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1024, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1025, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1026, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1027, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1028, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1029, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1030, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1031, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1032, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1033, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1034, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1035, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1036, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1037, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1038, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1039, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1040, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1041, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1042, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1043, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1044, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1045, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1046, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1047, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1048, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1049, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1050, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1051, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1052, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:21:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1053, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1054, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1055, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1056, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1057, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1058, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1059, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1060, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1061, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1062, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1063, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1064, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1065, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1066, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1067, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1068, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1069, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1070, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1071, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1072, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1073, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1074, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1075, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1076, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1077, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1078, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1079, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1080, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1081, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1082, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1083, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1084, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1085, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1086, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1087, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1088, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1089, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1090, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1091, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1092, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1093, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1094, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1095, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1096, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1097, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1098, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1099, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1100, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1101, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1102, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1103, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1104, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1105, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1106, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1107, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1108, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1109, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1110, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1111, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1112, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:22:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1113, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1114, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1115, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1116, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1117, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1118, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1119, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1120, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1121, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1122, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1123, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1124, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1125, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1126, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1127, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1128, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1129, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1130, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1131, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1132, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1133, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1134, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1135, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1136, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1137, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1138, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1139, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1140, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1141, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1142, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1143, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1144, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1145, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1146, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1147, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1148, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1149, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1150, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1151, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1152, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1153, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1154, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1155, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1156, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1157, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1158, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1159, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1160, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1161, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1162, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1163, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1164, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1165, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1166, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1167, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1168, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1169, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1170, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1171, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1172, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:23:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1173, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1174, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1175, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1176, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1177, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1178, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1179, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1180, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1181, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1182, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1183, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1184, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1185, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1186, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1187, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1188, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1189, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1190, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1191, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1192, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1193, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1194, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1195, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1196, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1197, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1198, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1199, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1200, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1201, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1202, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1203, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1204, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1205, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1206, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1207, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1208, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1209, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1210, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1211, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1212, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1213, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1214, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1215, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1216, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1217, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1218, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1219, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1220, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1221, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1222, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:49', 500, '任务触发类型:手动触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1223, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1224, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1225, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1226, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1227, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1228, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1229, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1230, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1231, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1232, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1233, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:24:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1234, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1235, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1236, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1237, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1238, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1239, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1240, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1241, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1242, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1243, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1244, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1245, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1246, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1247, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1248, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1249, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1250, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1251, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1252, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1253, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1254, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1255, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1256, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1257, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1258, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1259, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1260, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1261, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1262, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1263, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1264, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1265, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1266, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1267, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1268, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1269, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1270, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1271, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1272, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1273, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1274, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1275, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1276, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1277, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1278, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1279, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1280, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1281, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1282, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1283, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1284, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1285, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1286, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1287, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1288, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1289, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1290, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1291, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1292, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1293, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:25:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1294, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1295, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1296, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1297, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1298, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1299, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1300, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1301, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1302, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1303, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1304, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1305, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1306, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1307, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1308, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1309, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1310, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1311, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1312, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1313, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1314, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1315, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1316, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1317, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1318, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1319, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1320, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1321, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1322, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1323, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1324, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1325, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1326, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1327, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1328, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1329, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1330, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1331, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1332, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1333, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1334, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1335, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1336, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1337, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1338, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1339, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1340, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1341, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1342, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1343, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1344, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1345, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1346, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1347, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1348, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1349, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1350, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1351, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1352, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1353, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:26:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1354, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:27:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1355, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:27:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1356, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:27:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1357, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:27:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1358, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:27:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1359, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:27:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1360, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:27:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1361, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:27:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1362, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:27:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1363, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:27:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1364, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1365, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1366, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1367, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1368, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1369, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1370, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1371, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1372, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1373, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1374, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1375, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1376, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1377, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1378, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1379, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1380, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1381, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1382, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1383, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1384, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1385, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1386, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1387, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1388, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1389, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1390, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1391, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1392, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1393, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1394, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1395, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1396, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1397, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1398, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1399, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1400, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1401, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1402, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1403, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1404, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1405, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1406, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1407, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1408, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1409, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1410, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1411, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1412, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1413, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1414, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1415, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1416, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1417, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1418, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1419, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1420, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1421, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1422, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:28:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1423, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1424, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1425, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1426, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1427, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1428, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1429, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1430, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1431, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1432, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1433, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1434, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1435, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1436, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1437, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1438, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1439, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1440, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1441, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1442, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1443, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1444, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1445, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1446, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1447, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1448, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1449, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1450, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1451, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1452, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1453, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1454, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1455, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1456, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1457, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1458, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1459, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1460, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1461, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1462, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1463, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1464, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1465, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1466, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1467, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1468, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1469, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1470, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1471, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1472, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1473, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1474, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1475, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1476, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1477, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1478, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1479, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1480, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1481, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1482, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:29:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1483, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1484, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1485, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1486, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1487, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1488, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1489, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1490, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1491, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1492, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1493, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1494, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1495, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1496, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1497, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1498, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1499, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1500, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1501, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1502, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1503, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1504, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1505, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1506, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1507, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1508, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1509, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1510, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1511, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1512, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1513, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1514, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1515, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1516, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1517, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1518, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1519, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1520, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1521, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1522, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1523, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1524, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1525, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1526, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1527, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1528, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1529, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1530, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1531, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1532, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1533, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1534, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1535, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1536, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1537, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1538, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1539, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1540, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1541, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1542, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:30:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1543, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1544, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1545, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1546, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1547, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1548, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1549, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1550, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1551, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1552, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1553, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1554, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1555, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1556, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1557, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1558, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1559, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1560, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1561, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1562, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1563, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1564, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1565, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1566, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1567, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1568, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1569, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1570, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1571, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1572, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1573, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1574, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1575, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1576, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1577, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1578, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1579, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1580, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1581, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1582, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1583, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1584, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1585, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1586, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1587, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1588, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1589, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1590, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1591, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1592, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1593, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1594, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1595, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1596, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1597, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1598, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1599, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1600, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1601, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1602, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:31:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1603, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1604, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1605, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1606, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1607, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1608, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1609, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1610, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1611, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1612, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1613, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1614, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1615, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1616, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1617, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1618, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1619, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1620, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1621, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1622, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1623, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1624, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1625, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1626, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1627, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1628, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1629, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1630, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1631, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1632, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1633, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1634, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1635, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1636, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1637, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1638, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1639, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1640, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1641, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1642, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1643, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1644, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1645, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1646, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1647, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1648, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1649, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1650, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1651, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1652, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1653, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1654, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1655, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1656, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1657, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1658, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1659, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1660, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1661, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1662, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:32:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1663, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1664, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1665, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1666, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1667, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1668, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1669, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1670, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1671, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1672, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1673, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1674, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1675, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1676, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1677, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1678, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1679, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1680, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1681, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1682, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1683, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1684, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1685, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1686, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1687, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1688, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1689, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1690, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1691, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1692, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1693, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1694, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1695, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1696, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1697, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1698, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1699, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1700, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1701, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1702, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1703, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1704, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1705, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1706, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1707, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1708, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1709, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1710, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1711, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1712, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1713, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1714, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1715, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1716, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1717, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1718, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1719, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1720, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1721, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1722, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:33:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1723, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:34:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1724, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:34:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1725, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:34:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1726, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:34:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1727, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:34:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1728, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:34:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1729, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:34:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1730, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:34:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1731, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:34:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1732, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:34:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1733, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:34:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1734, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:34:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1735, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:34:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1736, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:34:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1737, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:34:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1738, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:34:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1739, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:34:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1740, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:34:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1741, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:34:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1742, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:34:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1743, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:34:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1744, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:34:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1745, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:34:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1746, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:34:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1747, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:34:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1748, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:34:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1749, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:34:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1750, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:34:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1751, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:34:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1752, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:34:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1753, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:34:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1754, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:34:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1755, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:34:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1756, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:34:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1757, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:34:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1758, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:34:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1759, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:34:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1760, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:34:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1761, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:34:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1762, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1763, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1764, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1765, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1766, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1767, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1768, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1769, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1770, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1771, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1772, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1773, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1774, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1775, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1776, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1777, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1778, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1779, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1780, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1781, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1782, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1783, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1784, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1785, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1786, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1787, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1788, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1789, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1790, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1791, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1792, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1793, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1794, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1795, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1796, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1797, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1798, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1799, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1800, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1801, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1802, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1803, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1804, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1805, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1806, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1807, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1808, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1809, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1810, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1811, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1812, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1813, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1814, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1815, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1816, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1817, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1818, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1819, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1820, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1821, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:35:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1822, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1823, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1824, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1825, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1826, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1827, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1828, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1829, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1830, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1831, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1832, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1833, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1834, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1835, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1836, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1837, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1838, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1839, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1840, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1841, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1842, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1843, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1844, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1845, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1846, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1847, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1848, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1849, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1850, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1851, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1852, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1853, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1854, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1855, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1856, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1857, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1858, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1859, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1860, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1861, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1862, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1863, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1864, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1865, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1866, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1867, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1868, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1869, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1870, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1871, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1872, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1873, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1874, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1875, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1876, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1877, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1878, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1879, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1880, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1881, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:36:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1882, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:37:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1883, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:37:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1884, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:37:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1885, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:37:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1886, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:37:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1887, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:37:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1888, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:37:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1889, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:37:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1890, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:37:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1891, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:37:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1892, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:37:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1893, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:37:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1894, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:37:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1895, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:37:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1896, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:37:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1897, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:37:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1898, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:37:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1899, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:37:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1900, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:37:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1901, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:37:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1902, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:37:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1903, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:37:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1904, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:37:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1905, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:37:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1906, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:37:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1907, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:37:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1908, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:37:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1909, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:37:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1910, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1911, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1912, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1913, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1914, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1915, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1916, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1917, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1918, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1919, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1920, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1921, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1922, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1923, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1924, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1925, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1926, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1927, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1928, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1929, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1930, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1931, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1932, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1933, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1934, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1935, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1936, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1937, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1938, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1939, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1940, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1941, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1942, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1943, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1944, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1945, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1946, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1947, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1948, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1949, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1950, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1951, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1952, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1953, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1954, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1955, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1956, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1957, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1958, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1959, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1960, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1961, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1962, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1963, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1964, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1965, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1966, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1967, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1968, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1969, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:38:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1970, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1971, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1972, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1973, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1974, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1975, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1976, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1977, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1978, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1979, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1980, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1981, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1982, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1983, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1984, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1985, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1986, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1987, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1988, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1989, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1990, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1991, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1992, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1993, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1994, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1995, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1996, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1997, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1998, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (1999, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2000, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2001, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2002, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2003, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2004, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2005, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2006, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2007, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2008, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2009, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2010, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2011, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2012, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2013, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2014, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2015, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2016, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2017, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2018, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2019, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2020, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2021, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2022, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2023, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2024, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2025, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2026, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2027, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2028, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2029, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:39:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2030, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2031, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2032, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2033, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2034, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2035, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2036, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2037, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2038, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2039, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2040, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2041, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2042, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2043, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2044, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2045, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2046, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2047, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2048, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2049, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2050, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2051, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2052, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2053, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2054, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2055, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2056, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2057, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2058, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2059, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2060, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2061, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2062, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2063, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2064, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2065, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2066, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2067, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2068, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2069, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2070, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2071, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2072, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2073, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2074, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2075, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2076, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2077, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2078, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2079, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2080, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2081, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2082, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2083, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2084, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2085, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2086, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2087, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2088, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2089, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:40:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2090, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:41:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2091, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:41:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2092, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:41:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2093, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:41:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2094, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:41:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2095, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:41:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2096, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:41:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2097, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:41:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2098, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:41:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2099, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:41:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2100, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:41:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2101, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:41:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2102, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:41:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2103, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:41:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2104, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:41:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2105, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:41:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2106, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:41:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2107, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:41:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2108, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:41:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2109, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:41:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2110, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:41:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2111, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:41:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2112, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:48:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2113, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:48:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2114, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:48:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2115, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:48:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2116, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:48:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2117, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:48:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2118, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:48:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2119, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2120, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2121, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2122, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2123, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2124, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2125, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2126, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2127, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2128, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2129, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2130, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2131, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2132, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2133, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2134, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2135, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2136, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2137, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2138, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2139, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2140, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2141, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2142, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2143, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2144, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2145, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2146, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2147, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2148, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2149, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2150, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2151, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2152, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2153, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2154, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2155, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2156, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2157, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2158, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2159, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2160, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2161, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2162, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2163, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2164, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2165, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2166, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2167, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2168, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2169, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2170, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2171, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2172, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2173, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2174, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2175, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2176, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2177, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2178, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:49:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2179, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2180, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2181, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2182, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2183, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2184, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2185, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2186, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2187, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2188, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2189, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2190, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2191, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2192, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2193, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2194, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2195, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2196, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2197, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2198, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2199, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2200, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2201, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2202, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2203, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2204, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2205, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2206, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2207, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2208, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2209, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2210, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2211, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2212, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2213, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2214, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2215, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2216, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2217, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2218, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2219, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2220, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2221, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2222, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2223, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2224, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2225, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2226, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2227, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2228, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2229, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2230, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2231, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2232, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2233, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2234, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2235, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2236, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2237, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2238, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:50:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2239, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:51:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2240, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:51:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2241, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:51:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2242, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:51:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2243, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2244, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2245, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2246, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2247, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2248, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2249, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2250, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2251, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2252, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2253, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2254, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2255, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2256, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2257, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2258, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2259, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2260, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2261, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2262, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2263, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2264, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2265, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2266, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2267, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2268, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2269, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2270, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2271, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2272, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2273, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2274, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2275, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2276, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2277, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2278, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2279, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2280, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2281, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2282, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2283, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2284, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2285, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2286, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2287, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2288, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2289, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2290, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2291, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2292, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2293, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2294, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2295, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2296, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2297, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2298, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2299, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2300, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2301, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:52:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2302, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2303, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2304, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2305, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2306, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2307, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2308, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2309, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2310, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2311, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2312, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2313, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2314, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2315, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2316, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2317, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2318, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2319, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2320, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2321, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2322, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2323, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2324, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2325, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2326, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2327, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2328, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2329, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2330, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2331, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2332, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2333, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2334, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2335, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2336, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2337, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2338, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2339, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2340, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2341, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2342, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2343, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2344, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2345, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2346, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2347, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2348, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2349, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2350, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2351, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2352, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2353, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2354, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2355, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2356, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2357, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2358, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2359, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2360, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2361, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:53:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2362, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2363, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2364, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2365, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2366, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2367, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2368, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2369, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2370, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2371, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2372, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2373, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2374, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2375, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2376, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2377, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2378, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2379, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2380, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2381, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2382, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2383, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2384, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2385, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2386, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2387, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2388, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2389, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2390, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2391, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2392, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2393, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2394, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2395, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2396, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2397, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2398, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2399, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2400, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2401, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2402, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2403, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2404, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2405, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2406, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2407, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2408, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2409, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2410, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2411, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2412, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2413, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2414, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2415, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2416, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2417, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2418, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2419, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:54:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2420, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:55:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2421, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:55:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2422, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:55:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2423, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:55:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2424, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:55:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2425, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:55:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2426, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:55:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2427, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:55:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2428, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:55:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2429, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:55:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2430, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:55:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2431, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:55:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2432, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:55:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2433, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:55:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2434, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:55:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2435, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:55:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2436, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:55:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2437, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:55:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2438, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:55:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2439, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:55:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2440, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:55:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2441, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:55:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2442, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:55:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2443, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:55:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2444, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:55:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2445, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:55:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2446, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:55:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2447, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:55:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2448, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:55:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2449, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:55:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2450, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:55:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2451, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:55:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2452, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:55:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2453, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:55:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2454, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:55:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2455, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:55:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2456, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:55:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2457, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 20:56:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2458, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 20:56:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2459, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 20:56:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2460, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 20:56:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2461, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 20:56:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2462, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 20:56:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2463, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 20:56:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2464, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 20:56:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2465, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 20:56:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2466, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 20:56:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2467, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:34:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2468, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:34:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2469, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:34:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2470, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:34:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2471, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:34:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2472, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:34:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2473, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:34:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2474, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:34:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2475, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:34:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2476, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:34:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2477, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:34:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2478, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:34:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2479, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:34:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2480, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:34:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2481, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:34:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2482, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:34:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2483, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:34:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2484, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:34:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2485, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:34:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2486, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:34:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2487, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:34:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2488, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:34:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2489, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:34:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2490, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:34:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2491, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:34:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2492, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:34:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2493, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:34:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2494, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:34:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2495, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:34:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2496, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:34:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2497, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2498, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2499, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2500, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2501, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2502, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2503, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2504, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2505, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2506, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2507, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2508, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2509, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2510, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2511, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2512, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2513, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2514, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2515, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2516, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2517, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2518, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2519, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2520, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2521, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2522, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2523, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2524, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2525, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2526, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2527, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2528, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2529, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2530, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2531, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2532, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2533, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2534, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2535, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2536, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2537, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2538, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2539, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2540, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2541, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2542, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2543, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:35:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2544, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:36:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2545, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2546, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2547, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2548, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2549, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2550, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2551, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2552, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2553, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2554, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2555, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2556, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2557, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2558, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2559, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2560, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2561, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2562, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2563, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2564, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2565, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2566, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2567, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2568, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2569, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2570, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2571, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2572, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2573, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2574, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2575, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2576, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2577, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2578, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2579, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2580, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2581, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2582, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2583, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2584, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2585, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2586, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2587, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2588, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2589, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2590, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2591, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2592, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2593, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2594, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2595, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2596, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2597, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2598, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2599, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2600, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2601, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2602, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2603, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:36:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2604, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2605, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2606, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2607, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2608, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2609, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2610, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2611, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2612, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2613, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2614, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2615, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2616, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2617, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2618, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2619, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2620, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2621, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2622, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2623, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2624, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2625, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2626, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2627, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2628, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2629, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2630, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2631, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2632, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2633, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2634, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2635, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2636, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2637, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2638, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2639, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2640, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2641, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2642, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2643, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2644, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2645, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2646, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2647, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2648, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2649, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2650, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2651, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2652, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2653, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2654, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2655, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2656, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2657, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2658, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2659, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2660, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2661, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2662, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2663, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:37:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2664, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:38:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2665, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:38:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2666, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:38:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2667, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:38:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2668, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:38:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2669, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:38:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2670, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:38:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2671, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:38:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2672, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:38:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2673, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:38:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2674, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:38:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2675, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:38:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2676, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:38:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2677, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:38:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2678, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:38:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2679, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:38:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2680, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:38:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2681, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:38:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2682, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:38:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2683, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:38:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2684, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:38:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2685, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:38:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2686, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:38:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2687, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:38:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2688, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:38:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2689, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:38:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2690, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:38:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2691, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:38:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2692, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:38:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2693, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:38:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2694, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:38:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2695, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:40:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2696, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:40:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2697, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:40:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2698, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:40:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2699, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:40:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2700, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:40:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2701, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:40:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2702, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:40:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2703, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:40:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2704, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:40:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2705, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:40:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2706, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:40:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2707, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:40:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2708, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:40:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2709, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:40:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2710, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:40:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2711, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:40:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2712, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:40:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2713, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:40:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2714, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:40:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2715, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:40:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2716, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:40:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2717, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:40:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2718, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:40:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2719, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:40:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2720, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:40:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2721, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:40:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2722, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:40:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2723, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:40:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2724, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:40:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2725, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:40:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2726, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:40:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2727, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:40:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2728, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:40:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2729, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:40:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2730, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:40:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2731, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:40:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2732, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:40:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2733, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2734, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2735, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2736, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2737, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2738, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2739, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2740, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2741, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2742, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2743, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2744, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2745, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2746, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2747, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2748, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2749, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2750, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2751, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2752, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2753, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2754, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2755, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2756, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2757, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2758, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2759, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2760, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2761, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2762, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2763, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2764, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2765, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2766, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2767, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2768, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2769, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2770, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2771, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2772, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2773, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2774, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2775, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2776, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2777, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2778, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2779, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2780, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2781, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2782, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2783, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2784, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2785, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2786, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2787, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2788, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2789, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2790, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2791, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2792, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:41:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2793, 3, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 21:42:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2794, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2795, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2796, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2797, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2798, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2799, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2800, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2801, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2802, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2803, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2804, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2805, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2806, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2807, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2808, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2809, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2810, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2811, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2812, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2813, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2814, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2815, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2816, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2817, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2818, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2819, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2820, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2821, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2822, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2823, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2824, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2825, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2826, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2827, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2828, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2829, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2830, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2831, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2832, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2833, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2834, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2835, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2836, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2837, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2838, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2839, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2840, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2841, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2842, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2843, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2844, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2845, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2846, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2847, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2848, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2849, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2850, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2851, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2852, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:42:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2853, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2854, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2855, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2856, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2857, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2858, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2859, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2860, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2861, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2862, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2863, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2864, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2865, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2866, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2867, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2868, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2869, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2870, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2871, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2872, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2873, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2874, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2875, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2876, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2877, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2878, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2879, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2880, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2881, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2882, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2883, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2884, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2885, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2886, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2887, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2888, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2889, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2890, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2891, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2892, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2893, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2894, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2895, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2896, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2897, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2898, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2899, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2900, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2901, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2902, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2903, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2904, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2905, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2906, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2907, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2908, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2909, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2910, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2911, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2912, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:43:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2913, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2914, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2915, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2916, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2917, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2918, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2919, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2920, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2921, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2922, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2923, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2924, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2925, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2926, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2927, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2928, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2929, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2930, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2931, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2932, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2933, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2934, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2935, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2936, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2937, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2938, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2939, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2940, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2941, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2942, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2943, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2944, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2945, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2946, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2947, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2948, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2949, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2950, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2951, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2952, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2953, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2954, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2955, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2956, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2957, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2958, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2959, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2960, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2961, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2962, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2963, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2964, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2965, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2966, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2967, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2968, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2969, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2970, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2971, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2972, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:44:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2973, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2974, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2975, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2976, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2977, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2978, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2979, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2980, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2981, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2982, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2983, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2984, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2985, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2986, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2987, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2988, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2989, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2990, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2991, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2992, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2993, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2994, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2995, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2996, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2997, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2998, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (2999, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3000, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3001, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3002, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3003, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3004, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3005, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3006, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3007, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3008, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3009, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3010, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3011, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3012, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3013, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3014, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3015, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3016, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3017, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3018, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3019, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3020, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3021, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3022, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3023, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3024, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3025, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3026, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3027, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3028, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3029, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3030, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3031, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3032, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:45:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3033, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3034, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3035, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3036, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3037, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3038, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3039, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3040, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3041, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3042, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3043, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3044, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3045, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3046, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3047, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3048, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3049, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3050, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3051, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3052, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3053, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3054, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3055, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3056, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3057, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3058, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3059, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3060, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3061, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3062, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3063, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3064, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3065, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3066, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3067, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3068, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3069, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3070, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3071, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3072, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3073, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3074, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3075, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3076, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3077, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3078, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3079, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3080, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3081, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3082, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3083, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3084, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3085, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3086, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3087, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3088, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3089, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3090, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3091, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3092, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:46:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3093, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3094, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3095, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3096, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3097, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3098, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3099, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3100, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3101, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3102, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3103, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3104, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3105, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3106, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3107, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3108, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3109, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3110, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3111, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3112, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3113, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3114, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3115, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3116, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3117, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3118, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3119, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3120, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3121, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3122, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3123, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3124, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3125, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3126, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3127, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3128, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3129, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3130, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3131, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3132, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3133, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3134, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3135, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3136, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3137, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3138, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3139, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3140, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3141, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3142, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3143, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3144, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3145, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3146, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3147, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3148, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3149, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3150, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3151, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10001/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3152, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:47:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10001/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy114.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:423)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.setNewClient(HttpURLConnection.java:831)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.setNewClient(HttpURLConnection.java:819)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.writeRequests(HttpURLConnection.java:759)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1686)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589)\r\n at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:458)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3153, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:48:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10001/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy114.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3154, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:48:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10001/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy114.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3155, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:48:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10001/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy114.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3156, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:48:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10001/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy114.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3157, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:48:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10001/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy114.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3158, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:48:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10001/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy114.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3159, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:48:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10001/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy114.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3160, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:48:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10001/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy114.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3161, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:48:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10001/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy114.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3162, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:48:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10001/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy114.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3163, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:48:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10001/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy114.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3164, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:48:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10001/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy114.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3165, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:48:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10001/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy114.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3166, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:48:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10001/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy114.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3167, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:48:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10001/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy114.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3168, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:48:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10001/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy114.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3169, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:48:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10001/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy114.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3170, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:48:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10001/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy114.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3171, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:48:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10001/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy114.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3172, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:48:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10001/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy114.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3173, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:48:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10001/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy114.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3174, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:48:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10001/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy114.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3175, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:48:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10001/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy114.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3176, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:48:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10001/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy114.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3177, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:48:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10001/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy114.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3178, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:48:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10001/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy114.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3179, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:48:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10001/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy114.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3180, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:48:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10001/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy114.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3181, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:48:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10001/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy114.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3182, 3, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:48:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10001/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy114.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3183, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:48:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/, http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3184, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:48:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/, http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3185, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:48:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/, http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3186, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:48:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/, http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3187, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:48:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/, http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3188, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:48:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/, http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3189, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:48:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/, http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3190, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:48:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/, http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3191, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:48:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/, http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3192, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:48:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/, http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3193, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:48:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/, http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3194, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:48:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/, http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3195, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:48:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/, http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3196, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:48:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/, http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3197, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:49:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10000/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy111.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3198, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:49:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10000/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy111.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3199, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:49:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10000/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy111.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3200, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:49:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10000/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy111.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3201, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:49:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10000/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy111.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3202, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:49:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10000/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy111.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3203, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:49:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10000/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy111.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3204, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:49:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10000/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy111.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3205, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:49:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10000/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy111.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3206, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:49:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10000/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy111.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3207, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:49:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3208, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:49:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3209, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:49:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3210, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:49:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3211, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3212, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3213, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3214, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3215, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3216, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3217, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3218, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3219, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3220, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3221, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3222, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3223, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3224, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3225, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3226, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3227, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3228, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3229, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3230, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3231, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3232, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3233, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3234, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3235, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3236, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3237, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3238, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3239, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3240, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3241, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3242, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3243, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3244, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3245, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3246, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3247, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3248, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3249, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3250, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3251, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3252, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3253, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3254, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3255, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3256, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3257, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3258, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3259, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3260, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3261, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3262, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3263, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3264, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3265, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3266, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3267, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3268, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3269, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3270, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:50:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3271, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3272, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3273, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3274, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3275, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3276, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3277, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3278, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3279, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3280, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3281, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3282, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3283, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3284, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3285, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3286, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3287, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3288, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3289, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3290, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3291, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3292, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3293, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3294, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3295, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3296, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3297, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3298, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3299, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3300, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3301, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3302, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3303, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3304, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3305, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3306, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3307, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3308, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3309, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3310, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3311, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3312, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3313, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3314, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3315, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3316, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3317, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3318, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3319, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3320, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3321, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3322, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3323, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3324, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3325, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3326, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3327, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3328, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3329, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3330, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:51:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3331, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3332, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3333, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3334, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3335, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3336, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3337, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3338, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3339, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3340, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3341, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3342, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3343, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3344, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3345, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3346, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3347, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3348, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3349, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3350, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3351, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3352, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3353, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3354, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3355, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3356, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3357, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3358, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3359, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3360, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3361, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3362, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3363, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3364, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3365, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3366, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3367, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3368, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3369, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3370, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3371, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3372, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3373, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3374, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3375, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3376, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3377, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3378, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3379, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3380, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3381, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3382, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3383, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3384, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3385, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3386, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3387, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3388, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3389, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3390, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:52:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3391, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3392, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3393, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3394, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3395, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3396, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3397, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3398, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3399, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3400, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3401, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3402, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3403, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3404, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3405, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3406, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3407, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3408, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3409, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3410, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3411, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3412, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3413, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3414, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3415, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3416, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3417, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3418, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3419, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3420, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3421, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3422, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3423, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3424, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3425, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3426, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3427, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3428, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3429, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3430, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3431, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3432, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3433, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3434, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3435, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3436, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3437, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3438, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10000/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy111.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:423)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.setNewClient(HttpURLConnection.java:831)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.setNewClient(HttpURLConnection.java:819)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.writeRequests(HttpURLConnection.java:759)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1686)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589)\r\n at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:458)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3439, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10000/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy111.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3440, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10000/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy111.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3441, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10000/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy111.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3442, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10000/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy111.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3443, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10000/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy111.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3444, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10000/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy111.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3445, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10000/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy111.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3446, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10000/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy111.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3447, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10000/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy111.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3448, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10000/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy111.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3449, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10000/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy111.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3450, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:53:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10000/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy111.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3451, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10000/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy111.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3452, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10000/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy111.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3453, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10000/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy111.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3454, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10000/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy111.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3455, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10000/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy111.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3456, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10000/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy111.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3457, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10000/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy111.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3458, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10000/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy111.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3459, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10000/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy111.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3460, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10000/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy111.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3461, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10000/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy111.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3462, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10000/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy111.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3463, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10000/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy111.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3464, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10000/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy111.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3465, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10000/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy111.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3466, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, java.lang.RuntimeException: Http Request Error (Connection refused: no further information). for url : http://192.168.1.2:10000/run\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:489)\r\n at com.xxl.tool.http.client.HttpClient.invoke(HttpClient.java:258)\r\n at com.xxl.tool.http.client.HttpClient.lambda$proxy$0(HttpClient.java:160)\r\n at jdk.proxy2/jdk.proxy2.$Proxy111.run(Unknown Source)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.doTrigger(JobTrigger.java:264)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.processTrigger(JobTrigger.java:193)\r\n at com.xxl.job.admin.business.scheduler.trigger.JobTrigger.trigger(JobTrigger.java:109)\r\n at com.xxl.job.admin.business.scheduler.thread.JobTriggerPoolHelper$5.run(JobTriggerPoolHelper.java:123)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\r\n at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\r\n at java.base/java.lang.Thread.run(Thread.java:842)\r\nCaused by: java.net.ConnectException: Connection refused: no further information\r\n at java.base/sun.nio.ch.Net.pollConnect(Native Method)\r\n at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)\r\n at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:554)\r\n at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)\r\n at java.base/java.net.Socket.connect(Socket.java:633)\r\n at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534)\r\n at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639)\r\n at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:282)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387)\r\n at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)\r\n at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)\r\n at com.xxl.tool.http.http.HttpRequest.execute(HttpRequest.java:431)\r\n ... 10 more\r\n', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3467, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3468, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3469, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3470, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3471, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3472, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3473, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3474, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3475, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3476, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3477, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3478, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3479, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3480, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3481, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3482, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3483, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3484, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3485, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3486, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3487, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3488, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3489, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3490, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3491, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3492, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3493, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3494, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3495, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3496, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3497, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3498, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3499, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3500, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3501, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3502, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3503, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3504, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3505, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3506, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3507, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3508, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3509, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3510, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:54:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3511, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3512, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3513, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3514, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3515, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3516, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3517, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3518, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3519, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3520, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3521, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3522, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3523, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3524, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3525, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3526, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3527, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3528, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3529, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3530, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3531, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3532, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3533, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3534, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3535, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3536, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3537, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3538, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3539, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3540, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3541, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3542, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3543, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3544, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3545, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:33', 500, '任务触发类型:手动触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3546, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3547, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3548, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3549, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3550, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3551, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3552, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3553, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3554, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3555, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3556, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3557, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3558, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3559, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3560, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3561, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3562, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3563, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3564, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3565, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3566, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3567, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3568, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3569, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3570, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3571, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:55:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3572, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3573, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3574, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3575, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3576, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3577, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3578, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3579, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3580, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3581, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3582, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3583, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3584, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3585, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3586, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3587, 3, 5, 'http://192.168.1.2:10000/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10000/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10000/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, 触发调度:<br>address:http://192.168.1.2:10000/<br>code:500<br>msg:job handler [demoJob] not found.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (3588, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:56:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3589, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:56:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3590, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:56:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3591, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:56:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3592, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:56:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3593, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:21', 200, '任务触发类型:手动触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:56:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3594, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:56:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3595, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:56:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3596, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:56:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3597, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:56:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3598, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:56:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3599, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:56:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3600, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:56:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3601, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:56:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3602, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:56:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3603, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:56:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3604, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:56:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3605, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:56:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3606, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:56:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3607, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:56:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3608, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:56:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3609, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:56:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3610, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:56:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3611, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:56:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3612, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:56:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3613, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:56:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3614, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:56:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3615, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:56:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3616, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:56:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3617, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:56:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3618, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:56:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3619, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:56:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3620, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:56:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3621, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:56:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3622, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:56:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3623, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:56:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3624, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:56:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3625, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:56:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3626, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:56:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3627, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:56:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3628, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:56:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3629, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:56:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3630, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:56:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3631, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:56:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3632, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:56:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:56:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3633, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3634, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3635, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3636, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3637, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3638, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3639, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3640, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:13', 200, '任务触发类型:手动触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3641, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3642, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3643, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3644, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3645, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3646, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3647, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3648, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3649, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3650, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3651, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3652, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3653, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3654, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3655, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3656, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3657, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3658, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3659, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3660, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3661, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3662, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3663, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3664, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3665, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3666, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3667, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3668, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:41', 200, '任务触发类型:手动触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3669, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3670, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3671, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3672, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3673, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3674, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3675, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3676, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3677, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3678, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3679, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3680, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3681, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3682, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3683, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3684, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3685, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3686, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3687, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:57:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:57:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3688, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3689, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3690, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3691, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3692, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3693, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3694, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3695, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3696, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3697, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3698, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3699, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3700, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3701, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3702, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3703, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3704, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3705, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3706, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3707, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3708, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3709, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3710, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3711, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3712, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3713, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3714, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3715, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3716, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3717, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3718, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3719, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3720, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3721, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3722, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3723, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3724, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3725, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3726, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3727, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3728, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3729, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3730, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3731, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3732, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3733, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3734, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3735, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3736, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3737, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3738, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3739, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3740, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3741, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3742, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3743, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3744, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3745, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3746, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3747, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:58:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:58:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3748, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3749, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3750, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3751, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3752, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3753, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3754, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3755, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3756, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3757, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3758, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3759, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3760, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3761, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3762, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3763, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3764, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3765, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3766, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3767, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3768, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3769, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3770, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3771, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3772, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3773, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3774, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3775, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3776, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3777, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3778, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3779, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3780, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3781, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3782, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3783, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3784, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3785, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3786, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3787, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3788, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3789, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3790, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3791, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3792, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3793, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3794, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3795, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3796, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3797, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3798, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3799, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3800, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3801, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3802, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3803, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3804, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3805, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3806, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3807, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 21:59:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 21:59:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3808, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3809, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3810, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3811, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3812, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3813, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3814, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3815, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3816, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3817, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3818, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3819, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3820, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3821, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3822, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3823, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3824, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3825, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3826, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3827, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3828, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3829, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3830, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3831, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3832, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3833, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3834, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3835, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3836, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3837, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3838, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3839, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3840, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3841, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3842, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3843, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3844, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3845, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3846, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3847, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3848, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3849, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3850, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3851, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3852, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3853, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3854, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3855, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3856, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3857, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3858, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3859, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3860, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3861, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3862, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3863, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3864, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3865, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3866, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3867, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:00:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:00:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3868, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3869, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3870, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3871, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3872, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3873, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3874, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3875, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3876, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3877, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3878, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3879, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3880, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3881, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3882, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3883, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3884, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3885, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3886, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3887, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3888, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3889, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3890, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3891, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3892, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3893, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3894, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3895, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3896, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3897, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3898, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3899, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3900, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3901, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3902, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3903, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3904, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3905, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3906, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3907, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3908, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3909, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3910, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3911, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3912, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3913, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3914, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3915, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3916, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3917, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3918, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3919, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3920, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3921, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3922, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3923, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3924, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3925, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3926, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3927, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:01:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:01:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3928, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3929, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3930, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3931, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3932, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3933, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3934, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3935, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3936, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3937, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3938, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3939, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3940, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3941, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3942, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3943, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3944, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3945, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3946, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3947, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3948, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3949, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3950, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3951, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3952, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3953, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3954, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3955, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3956, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3957, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3958, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3959, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3960, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3961, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3962, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3963, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3964, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3965, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3966, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3967, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3968, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3969, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3970, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3971, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3972, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3973, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3974, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3975, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3976, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3977, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3978, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3979, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3980, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3981, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3982, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3983, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3984, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3985, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3986, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3987, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:02:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:02:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3988, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3989, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3990, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3991, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3992, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3993, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3994, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3995, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3996, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3997, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3998, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (3999, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4000, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4001, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4002, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4003, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4004, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4005, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4006, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4007, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4008, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4009, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4010, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4011, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4012, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4013, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4014, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4015, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4016, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4017, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4018, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4019, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4020, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4021, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4022, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4023, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4024, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4025, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4026, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4027, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4028, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4029, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4030, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4031, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4032, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4033, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4034, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4035, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4036, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4037, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4038, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4039, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4040, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4041, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4042, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4043, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4044, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4045, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4046, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4047, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:03:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:03:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4048, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4049, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4050, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4051, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4052, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4053, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4054, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4055, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4056, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4057, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4058, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4059, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4060, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4061, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4062, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4063, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4064, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4065, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4066, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4067, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4068, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4069, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4070, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4071, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4072, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4073, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4074, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4075, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4076, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4077, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4078, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4079, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4080, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4081, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4082, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4083, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4084, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4085, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4086, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4087, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4088, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4089, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4090, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4091, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4092, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4093, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4094, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4095, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4096, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4097, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4098, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4099, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4100, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4101, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4102, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4103, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4104, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4105, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4106, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4107, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:04:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:04:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4108, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4109, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4110, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4111, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4112, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4113, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4114, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4115, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4116, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4117, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4118, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4119, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4120, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4121, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4122, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4123, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4124, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4125, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4126, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4127, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4128, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4129, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4130, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4131, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4132, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4133, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4134, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4135, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4136, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4137, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4138, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4139, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4140, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4141, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4142, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4143, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4144, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4145, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4146, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4147, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4148, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4149, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4150, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4151, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4152, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4153, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4154, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4155, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4156, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4157, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4158, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4159, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4160, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4161, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4162, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4163, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4164, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4165, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4166, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4167, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:05:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:05:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4168, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4169, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4170, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4171, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4172, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4173, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4174, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4175, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4176, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4177, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4178, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4179, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4180, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4181, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4182, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4183, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4184, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4185, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4186, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4187, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4188, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4189, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4190, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4191, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4192, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4193, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4194, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4195, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4196, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4197, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4198, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4199, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4200, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4201, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4202, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4203, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4204, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4205, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4206, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4207, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4208, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4209, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4210, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4211, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4212, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4213, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4214, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4215, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4216, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4217, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4218, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4219, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4220, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4221, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4222, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4223, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4224, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4225, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4226, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4227, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:06:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:06:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4228, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4229, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4230, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4231, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4232, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4233, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4234, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4235, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4236, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4237, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4238, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4239, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4240, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4241, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4242, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4243, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4244, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4245, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4246, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4247, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4248, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4249, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4250, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4251, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4252, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4253, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4254, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4255, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4256, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4257, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4258, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4259, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4260, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4261, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4262, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4263, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4264, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4265, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4266, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4267, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4268, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4269, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4270, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4271, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4272, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4273, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4274, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4275, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4276, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4277, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4278, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4279, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4280, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4281, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4282, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4283, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4284, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4285, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4286, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4287, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:07:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:07:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4288, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4289, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4290, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4291, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4292, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4293, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4294, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4295, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4296, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4297, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4298, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4299, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4300, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4301, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4302, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4303, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4304, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4305, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4306, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4307, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4308, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4309, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4310, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4311, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4312, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4313, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4314, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4315, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4316, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4317, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4318, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4319, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4320, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4321, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4322, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4323, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4324, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4325, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4326, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4327, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4328, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4329, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4330, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4331, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4332, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4333, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4334, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4335, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4336, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4337, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4338, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4339, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4340, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4341, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4342, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4343, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4344, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4345, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4346, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4347, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:08:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:08:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4348, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4349, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4350, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4351, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4352, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4353, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4354, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4355, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4356, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4357, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4358, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4359, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4360, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4361, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4362, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4363, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4364, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4365, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4366, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4367, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4368, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4369, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4370, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4371, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4372, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4373, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4374, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4375, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4376, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4377, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4378, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4379, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4380, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4381, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4382, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4383, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4384, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4385, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4386, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4387, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4388, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4389, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4390, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4391, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4392, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4393, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4394, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4395, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4396, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4397, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4398, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4399, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4400, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4401, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4402, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4403, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4404, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4405, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4406, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4407, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:09:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:09:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4408, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4409, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4410, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4411, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4412, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4413, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4414, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4415, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4416, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4417, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4418, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4419, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4420, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4421, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4422, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4423, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4424, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4425, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4426, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4427, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4428, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4429, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4430, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4431, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4432, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4433, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4434, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4435, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4436, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4437, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4438, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4439, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4440, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4441, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4442, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4443, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4444, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4445, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4446, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4447, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4448, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4449, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4450, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4451, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4452, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4453, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4454, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4455, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4456, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4457, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4458, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4459, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4460, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4461, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4462, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4463, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4464, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4465, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4466, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4467, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:10:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:10:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4468, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4469, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4470, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4471, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4472, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4473, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4474, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4475, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4476, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4477, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4478, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4479, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4480, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4481, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4482, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4483, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4484, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4485, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4486, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4487, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4488, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4489, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4490, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4491, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4492, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4493, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4494, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4495, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4496, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4497, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4498, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4499, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4500, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4501, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4502, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4503, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4504, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4505, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4506, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4507, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4508, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4509, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4510, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4511, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4512, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4513, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4514, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4515, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4516, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4517, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4518, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4519, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4520, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4521, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4522, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4523, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4524, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4525, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4526, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4527, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:11:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:11:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4528, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4529, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4530, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4531, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4532, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4533, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4534, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4535, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4536, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4537, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4538, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4539, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4540, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4541, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4542, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4543, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4544, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4545, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4546, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4547, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4548, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4549, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4550, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4551, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4552, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4553, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4554, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4555, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4556, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4557, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4558, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4559, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4560, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4561, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4562, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4563, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4564, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4565, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4566, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4567, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4568, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4569, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4570, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4571, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4572, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4573, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4574, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4575, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4576, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4577, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4578, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4579, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4580, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4581, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4582, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4583, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4584, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4585, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4586, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:12:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (4587, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 22:12:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 22:51:00', 500, '任务结果丢失,标记失败', 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4588, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:50:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4589, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:50:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4590, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:50:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4591, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:50:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4592, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:50:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4593, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:50:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4594, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:50:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4595, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:50:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4596, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:50:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4597, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:50:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4598, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:50:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4599, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:50:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4600, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:50:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4601, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:50:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4602, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:50:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4603, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:50:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4604, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:50:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4605, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:50:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4606, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:50:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4607, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:50:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4608, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:50:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4609, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:50:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4610, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:50:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4611, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:50:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4612, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:50:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4613, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:50:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4614, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:50:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4615, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4616, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4617, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4618, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4619, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4620, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4621, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4622, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4623, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4624, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4625, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4626, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4627, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4628, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4629, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4630, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4631, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4632, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4633, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4634, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4635, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4636, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4637, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4638, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4639, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4640, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4641, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4642, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4643, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4644, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4645, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4646, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4647, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4648, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4649, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4650, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4651, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4652, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4653, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4654, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4655, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4656, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4657, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4658, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4659, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4660, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4661, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4662, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4663, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4664, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4665, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4666, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4667, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4668, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4669, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4670, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4671, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4672, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4673, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4674, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:51:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4675, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4676, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4677, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4678, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4679, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4680, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4681, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4682, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4683, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4684, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4685, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4686, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4687, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4688, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4689, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4690, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4691, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4692, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4693, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4694, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4695, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4696, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4697, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4698, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4699, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4700, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4701, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4702, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4703, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4704, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4705, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4706, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4707, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4708, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4709, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4710, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4711, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4712, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4713, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4714, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4715, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4716, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4717, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4718, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4719, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4720, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4721, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4722, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4723, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4724, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4725, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4726, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4727, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4728, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4729, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4730, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4731, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4732, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4733, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4734, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:52:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4735, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4736, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4737, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4738, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4739, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4740, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4741, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4742, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4743, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4744, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4745, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4746, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4747, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4748, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4749, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4750, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4751, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4752, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4753, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4754, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4755, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4756, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4757, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4758, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4759, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4760, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4761, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4762, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4763, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4764, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4765, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4766, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4767, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4768, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4769, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4770, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4771, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4772, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4773, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4774, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4775, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4776, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4777, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4778, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4779, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4780, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4781, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4782, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4783, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4784, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4785, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4786, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4787, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4788, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4789, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4790, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4791, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4792, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4793, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4794, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:53:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4795, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4796, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4797, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4798, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4799, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4800, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4801, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4802, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4803, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4804, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4805, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4806, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4807, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4808, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4809, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4810, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4811, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4812, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4813, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4814, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4815, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4816, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4817, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4818, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4819, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4820, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4821, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4822, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4823, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4824, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4825, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4826, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4827, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4828, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4829, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4830, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4831, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4832, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4833, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4834, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4835, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4836, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4837, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4838, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4839, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4840, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4841, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4842, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4843, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4844, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4845, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4846, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4847, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4848, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4849, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4850, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4851, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4852, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4853, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4854, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:54:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4855, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4856, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4857, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4858, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4859, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4860, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4861, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4862, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4863, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4864, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4865, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4866, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4867, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4868, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4869, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4870, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4871, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4872, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4873, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4874, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4875, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4876, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4877, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4878, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4879, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4880, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4881, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4882, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4883, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4884, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4885, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4886, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4887, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4888, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4889, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4890, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4891, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4892, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4893, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4894, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4895, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4896, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4897, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4898, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4899, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4900, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4901, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4902, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4903, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4904, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4905, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4906, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4907, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4908, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4909, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4910, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4911, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4912, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4913, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4914, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:55:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4915, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4916, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4917, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4918, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4919, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4920, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4921, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4922, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4923, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4924, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4925, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4926, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4927, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4928, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4929, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4930, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4931, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4932, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4933, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4934, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4935, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4936, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4937, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4938, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4939, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4940, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4941, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4942, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4943, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4944, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4945, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4946, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4947, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4948, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4949, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4950, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4951, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4952, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4953, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4954, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4955, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4956, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4957, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4958, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4959, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4960, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4961, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4962, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4963, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4964, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4965, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4966, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4967, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4968, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4969, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4970, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4971, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4972, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4973, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4974, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:56:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4975, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4976, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4977, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4978, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4979, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4980, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4981, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4982, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4983, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4984, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4985, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4986, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4987, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4988, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4989, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4990, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4991, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4992, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4993, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4994, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4995, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4996, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4997, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4998, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (4999, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5000, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5001, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5002, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5003, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5004, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5005, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5006, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5007, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5008, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5009, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5010, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5011, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5012, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5013, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5014, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5015, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5016, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5017, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5018, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5019, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5020, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5021, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5022, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5023, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5024, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5025, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5026, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5027, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5028, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5029, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5030, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5031, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5032, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5033, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5034, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:57:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5035, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5036, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5037, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5038, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5039, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5040, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5041, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5042, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5043, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5044, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5045, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5046, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5047, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5048, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5049, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5050, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5051, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5052, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5053, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5054, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5055, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5056, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5057, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5058, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5059, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5060, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5061, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5062, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5063, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5064, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5065, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5066, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5067, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5068, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5069, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5070, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5071, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5072, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5073, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5074, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5075, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5076, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5077, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5078, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5079, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5080, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5081, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5082, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5083, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5084, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5085, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5086, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5087, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5088, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5089, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5090, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5091, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5092, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5093, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5094, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:58:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5095, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5096, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5097, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5098, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5099, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5100, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5101, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5102, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5103, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5104, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5105, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5106, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5107, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5108, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5109, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5110, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5111, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5112, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5113, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5114, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5115, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5116, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5117, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5118, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5119, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5120, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5121, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5122, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5123, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5124, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5125, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5126, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5127, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5128, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5129, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5130, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5131, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5132, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5133, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5134, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5135, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5136, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5137, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5138, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5139, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5140, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5141, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5142, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5143, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5144, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5145, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5146, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5147, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5148, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5149, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5150, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5151, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5152, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5153, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5154, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 22:59:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5155, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5156, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5157, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5158, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5159, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5160, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5161, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5162, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5163, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5164, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5165, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5166, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5167, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5168, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5169, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5170, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5171, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5172, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5173, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5174, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5175, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5176, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5177, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5178, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5179, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5180, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5181, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5182, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5183, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5184, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5185, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5186, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5187, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5188, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5189, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5190, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5191, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5192, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5193, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5194, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5195, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5196, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5197, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5198, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5199, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5200, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5201, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5202, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5203, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5204, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5205, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5206, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5207, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5208, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5209, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5210, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5211, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5212, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5213, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5214, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:00:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5215, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5216, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5217, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5218, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5219, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5220, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5221, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5222, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5223, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5224, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5225, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5226, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5227, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5228, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5229, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5230, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5231, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5232, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5233, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5234, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5235, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5236, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5237, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5238, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5239, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5240, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5241, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5242, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5243, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5244, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5245, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5246, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5247, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5248, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5249, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5250, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5251, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5252, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5253, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5254, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5255, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5256, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5257, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5258, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5259, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5260, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5261, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5262, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5263, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5264, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5265, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5266, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5267, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5268, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5269, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5270, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5271, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5272, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5273, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5274, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:01:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5275, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5276, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5277, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5278, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5279, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5280, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5281, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5282, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5283, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5284, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5285, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5286, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5287, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5288, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5289, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5290, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5291, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5292, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5293, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5294, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5295, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5296, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5297, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5298, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5299, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5300, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5301, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5302, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5303, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5304, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5305, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5306, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5307, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5308, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5309, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5310, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5311, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5312, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5313, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5314, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5315, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5316, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5317, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5318, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5319, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5320, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5321, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5322, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5323, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5324, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5325, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5326, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5327, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5328, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5329, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5330, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5331, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5332, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5333, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5334, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:02:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5335, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5336, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5337, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5338, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5339, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5340, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5341, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5342, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5343, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5344, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5345, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5346, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5347, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5348, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5349, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5350, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5351, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5352, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5353, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5354, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5355, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5356, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5357, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5358, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5359, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5360, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5361, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5362, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5363, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5364, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5365, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5366, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5367, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5368, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5369, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5370, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5371, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5372, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5373, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5374, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5375, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5376, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5377, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5378, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5379, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5380, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5381, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5382, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5383, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5384, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5385, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5386, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5387, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5388, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5389, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5390, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5391, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5392, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5393, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5394, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:03:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5395, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5396, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:01', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5397, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:02', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5398, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:03', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5399, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:04', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5400, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:05', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5401, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:06', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5402, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:07', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5403, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:08', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5404, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:09', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5405, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:10', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5406, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:11', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5407, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:12', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5408, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:13', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5409, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:14', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5410, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:15', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5411, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:16', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5412, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:17', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5413, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:18', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5414, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:19', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5415, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:20', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5416, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:21', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5417, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:22', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5418, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:23', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5419, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:24', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5420, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:25', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5421, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:26', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5422, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:27', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5423, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:28', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5424, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:29', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5425, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:30', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5426, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:31', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5427, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:32', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5428, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:33', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5429, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:34', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5430, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:35', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5431, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:36', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5432, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:37', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5433, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:38', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5434, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:39', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5435, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:40', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5436, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:41', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5437, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:42', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5438, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:43', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5439, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:44', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5440, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:45', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5441, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:46', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5442, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:47', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5443, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:48', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5444, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:49', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5445, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:50', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5446, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:51', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5447, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:52', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5448, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:53', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5449, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:54', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5450, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:55', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5451, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:56', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5452, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:57', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5453, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:58', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5454, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:04:59', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5455, 4, 5, NULL, 'demoJob', '', NULL, 0, '2026-07-06 23:05:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJob<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (5456, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5457, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5458, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5459, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5460, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5461, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5462, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5463, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5464, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5465, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5466, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5467, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5468, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5469, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5470, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5471, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5472, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5473, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5474, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5475, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5476, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5477, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5478, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5479, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5480, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5481, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5482, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5483, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5484, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5485, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5486, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5487, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5488, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5489, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5490, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5491, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5492, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5493, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5494, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5495, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5496, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5497, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5498, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5499, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5500, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5501, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5502, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5503, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5504, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5505, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5506, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5507, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5508, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5509, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5510, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5511, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5512, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5513, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5514, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:05:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:05:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5515, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5516, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5517, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5518, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5519, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5520, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5521, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5522, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5523, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5524, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5525, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5526, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5527, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5528, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5529, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5530, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5531, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5532, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5533, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5534, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5535, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5536, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5537, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5538, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5539, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5540, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5541, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5542, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5543, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5544, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5545, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5546, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5547, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5548, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5549, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5550, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5551, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5552, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5553, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5554, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5555, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5556, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5557, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5558, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5559, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5560, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5561, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5562, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5563, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5564, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5565, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5566, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5567, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5568, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5569, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5570, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5571, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5572, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5573, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5574, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:06:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:06:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5575, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5576, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5577, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5578, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5579, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5580, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5581, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5582, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5583, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5584, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5585, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5586, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5587, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5588, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5589, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5590, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5591, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5592, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5593, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5594, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5595, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5596, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5597, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5598, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5599, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5600, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5601, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5602, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5603, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5604, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5605, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5606, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5607, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5608, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5609, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5610, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5611, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5612, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5613, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5614, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5615, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5616, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5617, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5618, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5619, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5620, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5621, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5622, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5623, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5624, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5625, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5626, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5627, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5628, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5629, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5630, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5631, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5632, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5633, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5634, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:07:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:07:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5635, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5636, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5637, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5638, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5639, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5640, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5641, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5642, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5643, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5644, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5645, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5646, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5647, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5648, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5649, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5650, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5651, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5652, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5653, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5654, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5655, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5656, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5657, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5658, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5659, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5660, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5661, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5662, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5663, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5664, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5665, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5666, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5667, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5668, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5669, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5670, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5671, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5672, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5673, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5674, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5675, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5676, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5677, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5678, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5679, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5680, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5681, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5682, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5683, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5684, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5685, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5686, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5687, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5688, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5689, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5690, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5691, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5692, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5693, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5694, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:08:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:08:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5695, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5696, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5697, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5698, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5699, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5700, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5701, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5702, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5703, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5704, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5705, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5706, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5707, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5708, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5709, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5710, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5711, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5712, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5713, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5714, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5715, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5716, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5717, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5718, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5719, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5720, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5721, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5722, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5723, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5724, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5725, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5726, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5727, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5728, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5729, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5730, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5731, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5732, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5733, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5734, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5735, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5736, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5737, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5738, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5739, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5740, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5741, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5742, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5743, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5744, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5745, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5746, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5747, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5748, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5749, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5750, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5751, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5752, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5753, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5754, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:09:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:09:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5755, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5756, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5757, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5758, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5759, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5760, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5761, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5762, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5763, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5764, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5765, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5766, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5767, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5768, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5769, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5770, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5771, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5772, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5773, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5774, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5775, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5776, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5777, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5778, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5779, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5780, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5781, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5782, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5783, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5784, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5785, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5786, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5787, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5788, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5789, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5790, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5791, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5792, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5793, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5794, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5795, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5796, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5797, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5798, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5799, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5800, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5801, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5802, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5803, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5804, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5805, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5806, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5807, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5808, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5809, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5810, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5811, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5812, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5813, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5814, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:10:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:10:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5815, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5816, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5817, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5818, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5819, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5820, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5821, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5822, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5823, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5824, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5825, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5826, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5827, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5828, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5829, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5830, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5831, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5832, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5833, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5834, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5835, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5836, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5837, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5838, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5839, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5840, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5841, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5842, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5843, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5844, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5845, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5846, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5847, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5848, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5849, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5850, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5851, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5852, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5853, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5854, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5855, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5856, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5857, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5858, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5859, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5860, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5861, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5862, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5863, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5864, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5865, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5866, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5867, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5868, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5869, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5870, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5871, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5872, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5873, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5874, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:11:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:11:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5875, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5876, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5877, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5878, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5879, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5880, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5881, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5882, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5883, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5884, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5885, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5886, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5887, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5888, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5889, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5890, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5891, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5892, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5893, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5894, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5895, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5896, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5897, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5898, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5899, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5900, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5901, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5902, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5903, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5904, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5905, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5906, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5907, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5908, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5909, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5910, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5911, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5912, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5913, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5914, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5915, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5916, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5917, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5918, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5919, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5920, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5921, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5922, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5923, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5924, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5925, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5926, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5927, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5928, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5929, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5930, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5931, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5932, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5933, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5934, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:12:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:12:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5935, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5936, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5937, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5938, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5939, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5940, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5941, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5942, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5943, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5944, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5945, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5946, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5947, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5948, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5949, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5950, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5951, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5952, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5953, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5954, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5955, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5956, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5957, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5958, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5959, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5960, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5961, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5962, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5963, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5964, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5965, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5966, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5967, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5968, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5969, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5970, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5971, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5972, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5973, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5974, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5975, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5976, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5977, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5978, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5979, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5980, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5981, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5982, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5983, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5984, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5985, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5986, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5987, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5988, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5989, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5990, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5991, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5992, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5993, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5994, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:13:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:13:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5995, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5996, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5997, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5998, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (5999, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6000, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6001, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6002, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6003, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6004, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6005, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6006, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6007, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6008, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6009, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6010, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6011, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6012, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6013, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6014, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6015, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6016, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6017, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6018, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6019, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6020, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6021, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6022, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6023, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6024, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6025, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6026, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6027, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6028, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6029, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6030, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6031, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6032, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6033, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6034, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6035, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6036, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6037, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6038, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6039, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6040, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6041, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6042, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6043, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6044, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6045, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6046, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6047, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6048, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6049, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6050, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6051, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6052, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6053, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6054, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:14:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:14:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6055, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6056, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6057, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6058, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6059, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6060, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6061, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6062, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6063, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6064, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6065, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6066, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6067, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6068, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6069, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6070, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6071, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6072, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6073, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6074, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6075, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6076, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6077, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6078, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6079, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6080, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6081, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6082, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6083, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6084, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6085, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6086, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6087, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6088, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6089, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6090, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6091, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6092, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6093, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6094, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6095, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6096, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6097, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6098, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6099, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6100, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6101, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6102, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6103, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6104, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6105, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6106, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6107, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6108, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6109, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6110, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6111, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6112, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6113, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6114, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:15:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:15:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6115, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6116, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6117, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6118, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6119, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6120, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6121, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6122, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6123, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6124, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6125, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6126, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6127, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6128, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6129, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6130, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6131, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6132, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6133, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6134, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6135, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6136, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6137, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6138, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6139, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6140, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6141, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6142, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6143, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6144, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6145, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6146, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6147, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6148, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6149, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6150, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6151, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6152, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6153, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6154, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6155, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6156, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6157, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6158, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6159, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6160, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6161, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6162, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6163, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6164, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6165, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6166, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6167, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6168, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6169, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6170, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6171, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6172, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6173, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6174, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:16:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:16:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6175, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6176, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6177, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6178, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6179, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6180, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6181, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6182, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6183, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6184, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6185, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6186, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6187, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6188, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6189, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6190, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6191, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6192, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6193, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6194, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6195, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6196, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6197, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6198, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6199, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6200, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6201, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6202, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6203, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6204, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6205, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6206, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6207, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6208, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6209, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6210, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6211, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6212, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6213, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6214, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6215, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6216, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6217, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6218, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6219, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6220, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6221, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6222, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6223, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6224, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6225, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6226, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6227, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6228, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6229, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6230, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6231, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6232, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6233, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6234, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:17:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:17:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6235, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6236, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6237, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6238, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6239, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6240, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6241, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6242, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6243, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6244, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6245, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6246, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6247, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6248, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6249, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6250, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6251, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6252, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6253, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6254, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6255, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6256, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6257, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6258, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6259, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6260, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6261, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6262, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6263, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6264, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6265, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6266, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6267, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6268, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6269, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6270, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6271, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6272, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6273, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6274, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6275, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6276, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6277, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6278, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6279, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6280, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6281, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6282, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6283, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6284, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6285, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6286, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6287, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6288, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6289, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6290, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6291, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6292, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6293, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6294, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:18:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:18:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6295, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6296, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6297, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6298, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6299, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6300, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6301, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6302, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6303, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6304, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6305, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6306, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6307, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6308, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6309, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6310, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6311, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6312, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6313, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6314, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6315, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6316, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6317, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6318, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6319, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6320, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6321, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6322, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6323, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6324, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6325, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6326, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6327, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6328, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6329, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6330, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6331, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6332, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6333, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6334, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6335, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6336, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6337, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6338, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6339, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6340, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6341, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6342, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6343, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6344, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6345, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6346, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6347, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6348, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6349, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6350, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6351, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6352, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6353, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6354, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:19:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:19:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6355, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6356, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6357, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6358, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6359, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6360, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6361, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6362, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6363, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6364, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6365, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6366, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6367, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6368, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6369, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6370, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6371, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6372, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6373, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6374, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6375, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6376, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6377, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6378, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6379, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6380, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6381, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6382, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6383, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6384, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6385, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6386, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6387, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6388, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6389, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6390, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6391, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6392, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6393, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6394, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6395, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6396, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6397, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6398, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6399, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6400, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6401, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6402, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6403, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6404, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6405, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6406, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6407, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6408, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6409, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6410, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6411, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6412, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6413, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6414, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:20:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:20:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6415, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6416, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6417, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6418, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6419, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6420, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6421, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6422, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6423, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6424, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6425, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6426, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6427, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6428, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6429, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6430, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6431, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6432, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6433, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6434, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6435, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6436, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6437, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6438, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6439, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6440, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6441, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6442, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6443, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6444, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6445, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6446, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6447, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6448, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6449, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6450, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6451, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6452, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6453, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6454, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6455, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6456, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6457, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6458, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6459, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6460, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6461, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6462, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6463, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6464, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6465, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6466, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6467, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6468, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6469, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6470, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6471, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6472, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6473, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6474, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:21:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:21:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6475, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6476, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6477, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6478, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6479, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6480, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6481, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6482, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6483, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6484, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6485, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6486, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6487, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6488, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6489, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6490, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6491, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6492, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6493, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6494, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6495, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6496, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6497, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6498, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6499, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6500, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6501, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6502, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6503, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6504, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6505, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6506, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6507, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6508, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6509, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6510, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6511, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6512, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6513, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6514, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6515, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6516, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6517, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6518, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6519, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6520, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6521, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6522, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6523, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6524, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6525, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6526, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6527, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6528, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6529, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6530, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6531, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6532, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6533, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6534, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:22:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:22:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6535, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6536, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6537, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6538, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6539, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6540, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6541, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6542, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6543, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6544, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6545, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6546, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6547, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6548, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6549, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6550, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6551, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6552, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6553, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6554, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6555, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6556, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6557, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6558, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6559, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6560, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6561, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6562, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6563, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6564, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6565, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6566, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6567, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6568, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6569, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6570, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6571, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6572, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6573, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6574, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6575, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6576, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6577, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6578, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6579, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6580, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6581, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6582, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6583, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6584, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6585, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6586, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6587, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6588, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6589, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6590, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6591, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6592, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6593, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6594, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:23:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:23:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6595, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6596, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6597, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6598, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6599, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6600, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6601, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6602, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6603, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6604, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6605, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6606, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6607, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6608, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6609, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6610, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6611, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6612, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6613, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6614, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6615, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6616, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6617, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6618, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6619, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6620, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6621, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6622, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6623, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6624, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6625, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6626, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6627, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6628, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6629, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6630, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6631, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6632, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6633, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6634, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6635, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6636, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6637, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6638, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6639, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6640, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6641, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6642, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6643, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6644, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6645, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6646, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6647, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6648, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6649, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6650, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6651, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6652, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6653, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6654, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:24:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:24:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6655, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6656, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6657, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6658, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6659, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6660, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6661, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6662, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6663, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6664, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6665, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6666, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6667, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6668, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6669, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6670, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6671, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6672, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6673, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6674, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6675, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6676, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6677, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6678, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6679, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6680, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6681, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6682, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6683, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6684, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6685, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6686, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6687, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6688, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6689, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6690, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6691, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6692, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6693, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6694, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6695, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6696, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6697, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6698, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6699, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6700, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6701, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6702, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6703, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6704, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6705, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6706, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6707, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6708, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6709, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6710, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6711, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6712, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6713, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6714, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:25:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:25:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6715, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6716, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6717, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6718, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6719, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6720, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6721, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6722, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6723, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6724, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6725, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6726, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6727, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6728, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6729, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6730, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6731, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6732, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6733, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6734, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6735, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6736, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6737, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6738, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6739, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6740, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6741, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6742, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6743, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6744, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6745, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6746, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6747, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6748, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6749, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6750, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6751, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6752, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6753, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6754, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6755, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6756, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6757, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6758, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6759, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6760, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6761, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6762, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6763, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6764, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6765, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6766, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6767, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6768, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6769, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6770, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6771, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6772, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6773, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6774, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:26:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:26:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6775, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6776, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6777, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6778, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6779, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6780, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6781, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6782, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6783, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6784, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6785, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6786, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6787, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6788, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6789, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6790, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6791, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6792, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6793, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6794, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6795, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6796, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6797, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6798, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6799, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6800, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6801, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6802, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6803, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6804, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6805, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6806, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6807, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6808, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6809, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6810, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6811, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6812, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6813, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6814, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6815, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6816, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6817, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6818, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6819, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6820, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6821, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6822, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6823, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6824, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6825, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6826, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6827, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6828, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6829, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6830, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6831, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6832, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6833, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6834, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:27:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:27:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6835, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6836, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6837, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6838, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6839, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6840, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6841, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6842, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6843, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6844, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6845, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6846, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6847, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6848, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6849, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6850, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6851, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6852, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6853, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6854, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6855, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6856, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6857, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6858, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6859, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6860, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6861, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6862, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6863, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6864, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6865, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6866, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6867, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6868, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6869, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6870, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6871, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6872, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6873, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6874, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6875, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6876, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6877, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6878, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6879, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6880, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6881, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6882, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6883, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6884, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6885, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6886, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6887, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6888, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6889, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6890, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6891, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6892, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6893, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6894, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:28:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:28:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6895, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6896, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6897, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6898, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6899, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6900, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6901, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6902, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6903, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6904, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6905, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6906, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6907, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6908, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6909, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6910, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6911, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6912, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6913, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6914, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6915, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6916, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6917, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6918, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6919, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6920, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6921, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6922, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6923, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6924, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6925, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6926, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6927, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6928, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6929, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6930, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6931, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6932, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6933, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6934, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6935, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6936, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6937, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6938, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6939, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6940, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6941, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6942, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6943, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6944, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6945, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6946, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6947, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6948, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6949, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6950, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6951, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6952, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6953, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6954, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:29:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:29:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6955, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6956, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6957, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6958, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6959, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6960, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6961, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6962, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6963, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6964, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6965, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6966, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6967, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6968, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6969, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6970, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6971, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6972, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6973, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6974, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6975, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6976, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6977, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6978, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6979, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6980, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6981, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6982, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6983, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6984, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6985, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6986, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6987, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6988, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6989, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6990, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6991, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6992, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6993, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6994, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6995, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6996, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6997, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6998, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (6999, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7000, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7001, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7002, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7003, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7004, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7005, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7006, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7007, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7008, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7009, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7010, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7011, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7012, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7013, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7014, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:30:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:30:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7015, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7016, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7017, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7018, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7019, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7020, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7021, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7022, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7023, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7024, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7025, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7026, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7027, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7028, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7029, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7030, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7031, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7032, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7033, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7034, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7035, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7036, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7037, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7038, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7039, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7040, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7041, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7042, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7043, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7044, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7045, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7046, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7047, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7048, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7049, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7050, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7051, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7052, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7053, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7054, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7055, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7056, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7057, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7058, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7059, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7060, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7061, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7062, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7063, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7064, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7065, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7066, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7067, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7068, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7069, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7070, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7071, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7072, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7073, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7074, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:31:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:31:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7075, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7076, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7077, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7078, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7079, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7080, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7081, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7082, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7083, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7084, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7085, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7086, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7087, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7088, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7089, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7090, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7091, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7092, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7093, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7094, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7095, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7096, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7097, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7098, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7099, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7100, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7101, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7102, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7103, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7104, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7105, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7106, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7107, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7108, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7109, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7110, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7111, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7112, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7113, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7114, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7115, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7116, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7117, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7118, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7119, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7120, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7121, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7122, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7123, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7124, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7125, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7126, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7127, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7128, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7129, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7130, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7131, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7132, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7133, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7134, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:32:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:32:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7135, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7136, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7137, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7138, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7139, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7140, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7141, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7142, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7143, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7144, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7145, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7146, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7147, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7148, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7149, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7150, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7151, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7152, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7153, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7154, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7155, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7156, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7157, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7158, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7159, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7160, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7161, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7162, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7163, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7164, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7165, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7166, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7167, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7168, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7169, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7170, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7171, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7172, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7173, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7174, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7175, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7176, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7177, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7178, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7179, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7180, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7181, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7182, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7183, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7184, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7185, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7186, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7187, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7188, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7189, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7190, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7191, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7192, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7193, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7194, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:33:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:33:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7195, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7196, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7197, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7198, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7199, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7200, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7201, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7202, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7203, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7204, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7205, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7206, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7207, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7208, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7209, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7210, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7211, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7212, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7213, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7214, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7215, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7216, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7217, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7218, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7219, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7220, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7221, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7222, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7223, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7224, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7225, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7226, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7227, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7228, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7229, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7230, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7231, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7232, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7233, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7234, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7235, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7236, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7237, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7238, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7239, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7240, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7241, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7242, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7243, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7244, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7245, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7246, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7247, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7248, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7249, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7250, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7251, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7252, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7253, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7254, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:34:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:34:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7255, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7256, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7257, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7258, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7259, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7260, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7261, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7262, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7263, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7264, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7265, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7266, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7267, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7268, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7269, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7270, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7271, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7272, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7273, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7274, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7275, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7276, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7277, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7278, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7279, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7280, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7281, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7282, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7283, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7284, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7285, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7286, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7287, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7288, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7289, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7290, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7291, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7292, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7293, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7294, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7295, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7296, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7297, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7298, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7299, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7300, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7301, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7302, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7303, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7304, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7305, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7306, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7307, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7308, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7309, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7310, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7311, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7312, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7313, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7314, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:35:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:35:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7315, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7316, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7317, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7318, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7319, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7320, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7321, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7322, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7323, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7324, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7325, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7326, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7327, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7328, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7329, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7330, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7331, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7332, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7333, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7334, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7335, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7336, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7337, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7338, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7339, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7340, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7341, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7342, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7343, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7344, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7345, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7346, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7347, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7348, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7349, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7350, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7351, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7352, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7353, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7354, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7355, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7356, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7357, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7358, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7359, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7360, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7361, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7362, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7363, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7364, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7365, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7366, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7367, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7368, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7369, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7370, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7371, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7372, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7373, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7374, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:36:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:36:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7375, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7376, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7377, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7378, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7379, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7380, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7381, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7382, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7383, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7384, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7385, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7386, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7387, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7388, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7389, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7390, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7391, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7392, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7393, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7394, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7395, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7396, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7397, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7398, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7399, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7400, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7401, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7402, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7403, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7404, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7405, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7406, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7407, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7408, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7409, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7410, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7411, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7412, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7413, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7414, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7415, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7416, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7417, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7418, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7419, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7420, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7421, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7422, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7423, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7424, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7425, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7426, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7427, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7428, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7429, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7430, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7431, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7432, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7433, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7434, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:37:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:37:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7435, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7436, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7437, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7438, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7439, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7440, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7441, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7442, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7443, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7444, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7445, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7446, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7447, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7448, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7449, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7450, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7451, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7452, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7453, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7454, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7455, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7456, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7457, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7458, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7459, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7460, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7461, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7462, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7463, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7464, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7465, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7466, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7467, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7468, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7469, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7470, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7471, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7472, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7473, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7474, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7475, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7476, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7477, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7478, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7479, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7480, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7481, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7482, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7483, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7484, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7485, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7486, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7487, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7488, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7489, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7490, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7491, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7492, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7493, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7494, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:38:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:38:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7495, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7496, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7497, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7498, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7499, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7500, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7501, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7502, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7503, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7504, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7505, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7506, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7507, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7508, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7509, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7510, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7511, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7512, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7513, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7514, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7515, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7516, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7517, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7518, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7519, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7520, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7521, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7522, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7523, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7524, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7525, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7526, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7527, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7528, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7529, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7530, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7531, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7532, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7533, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7534, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7535, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7536, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7537, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7538, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7539, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7540, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7541, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7542, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7543, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7544, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7545, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7546, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7547, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7548, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7549, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7550, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7551, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7552, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7553, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7554, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:39:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:39:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7555, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7556, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7557, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7558, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7559, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7560, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7561, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7562, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7563, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7564, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7565, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7566, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7567, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7568, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7569, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7570, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7571, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7572, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7573, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7574, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7575, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7576, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7577, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7578, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7579, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7580, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7581, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7582, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7583, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7584, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7585, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7586, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7587, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7588, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7589, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7590, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7591, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7592, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7593, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7594, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7595, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7596, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7597, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7598, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7599, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7600, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7601, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7602, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7603, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7604, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7605, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7606, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7607, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7608, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7609, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7610, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7611, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7612, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7613, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7614, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:40:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:40:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7615, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7616, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7617, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7618, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7619, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7620, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7621, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7622, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7623, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7624, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7625, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7626, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7627, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7628, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7629, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7630, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7631, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7632, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7633, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7634, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7635, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7636, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7637, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7638, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7639, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7640, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7641, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7642, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7643, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7644, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7645, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7646, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7647, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7648, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7649, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7650, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7651, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7652, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7653, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7654, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7655, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7656, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7657, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7658, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7659, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7660, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7661, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7662, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7663, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7664, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7665, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7666, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7667, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7668, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7669, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7670, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7671, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7672, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7673, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7674, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:41:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:41:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7675, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7676, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7677, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7678, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7679, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7680, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7681, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7682, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7683, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7684, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7685, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7686, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7687, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7688, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7689, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7690, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7691, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7692, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7693, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7694, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7695, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7696, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7697, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7698, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7699, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7700, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7701, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7702, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7703, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7704, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7705, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7706, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7707, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7708, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7709, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7710, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7711, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7712, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7713, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7714, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7715, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7716, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7717, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7718, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7719, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7720, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7721, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7722, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7723, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7724, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7725, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7726, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7727, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7728, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7729, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7730, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7731, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7732, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7733, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7734, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:42:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:42:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7735, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7736, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7737, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7738, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7739, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7740, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7741, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7742, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7743, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7744, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7745, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7746, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7747, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7748, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7749, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7750, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7751, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7752, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7753, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7754, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7755, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7756, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7757, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7758, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7759, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7760, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7761, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7762, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7763, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7764, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7765, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7766, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7767, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7768, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7769, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7770, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7771, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7772, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7773, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7774, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7775, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7776, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7777, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7778, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7779, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7780, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7781, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7782, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7783, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7784, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7785, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7786, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7787, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7788, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7789, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7790, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7791, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7792, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7793, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7794, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:43:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:43:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7795, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7796, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7797, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7798, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7799, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7800, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7801, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7802, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7803, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7804, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7805, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7806, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7807, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7808, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7809, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7810, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7811, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7812, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7813, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7814, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7815, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7816, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7817, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7818, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7819, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7820, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7821, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7822, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7823, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7824, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7825, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7826, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7827, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7828, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7829, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7830, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7831, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7832, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7833, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7834, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7835, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7836, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7837, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7838, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7839, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7840, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7841, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7842, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7843, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7844, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7845, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7846, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7847, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7848, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7849, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7850, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7851, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7852, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7853, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7854, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:44:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:44:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7855, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7856, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7857, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7858, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7859, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7860, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7861, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7862, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7863, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7864, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7865, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7866, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7867, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7868, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7869, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7870, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7871, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7872, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7873, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7874, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7875, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7876, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7877, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7878, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7879, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7880, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7881, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7882, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7883, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7884, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7885, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7886, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7887, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7888, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7889, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7890, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7891, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7892, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7893, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7894, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7895, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7896, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7897, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7898, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7899, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7900, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7901, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7902, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7903, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7904, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7905, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7906, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7907, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7908, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7909, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7910, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7911, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7912, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7913, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7914, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:45:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:45:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7915, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7916, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7917, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7918, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7919, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7920, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7921, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7922, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7923, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7924, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7925, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7926, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7927, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7928, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7929, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7930, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7931, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7932, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7933, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7934, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7935, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7936, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7937, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7938, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7939, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7940, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7941, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7942, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7943, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7944, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7945, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7946, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7947, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7948, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7949, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7950, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7951, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7952, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7953, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7954, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7955, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7956, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7957, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7958, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7959, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7960, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7961, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7962, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7963, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7964, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7965, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7966, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7967, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7968, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7969, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7970, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7971, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7972, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7973, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7974, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:46:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:46:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7975, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7976, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7977, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7978, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7979, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7980, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7981, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7982, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7983, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7984, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7985, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7986, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7987, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7988, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7989, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7990, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7991, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7992, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7993, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7994, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7995, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7996, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7997, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7998, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (7999, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8000, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8001, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8002, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8003, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8004, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8005, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8006, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8007, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8008, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8009, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8010, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8011, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8012, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8013, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8014, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8015, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8016, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8017, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8018, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8019, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8020, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8021, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8022, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8023, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8024, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8025, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8026, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8027, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8028, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8029, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8030, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8031, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8032, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8033, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8034, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:47:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:47:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8035, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8036, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8037, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8038, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8039, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8040, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8041, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8042, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8043, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8044, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8045, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8046, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8047, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8048, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8049, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8050, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8051, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8052, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8053, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8054, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8055, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8056, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8057, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8058, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8059, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8060, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8061, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8062, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8063, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8064, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8065, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8066, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8067, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8068, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8069, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8070, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8071, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8072, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8073, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8074, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8075, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8076, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8077, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8078, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8079, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8080, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8081, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8082, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8083, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8084, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8085, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8086, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8087, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8088, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8089, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8090, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8091, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8092, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8093, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8094, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:48:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:48:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8095, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8096, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8097, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8098, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8099, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8100, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8101, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8102, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8103, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8104, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8105, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8106, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8107, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8108, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8109, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8110, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8111, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8112, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8113, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8114, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8115, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8116, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8117, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8118, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8119, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8120, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8121, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8122, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8123, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8124, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8125, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8126, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8127, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8128, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8129, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8130, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8131, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8132, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8133, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8134, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8135, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8136, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8137, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8138, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8139, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8140, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8141, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8142, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8143, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8144, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8145, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8146, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8147, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8148, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8149, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8150, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8151, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8152, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8153, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8154, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:49:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:49:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8155, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8156, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8157, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8158, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8159, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8160, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8161, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8162, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8163, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8164, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8165, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8166, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8167, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8168, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8169, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8170, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8171, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8172, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8173, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8174, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8175, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8176, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8177, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8178, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8179, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8180, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8181, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8182, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8183, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8184, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8185, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8186, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8187, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8188, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8189, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8190, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8191, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8192, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8193, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8194, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8195, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8196, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8197, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8198, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8199, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8200, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8201, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8202, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8203, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8204, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8205, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8206, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8207, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8208, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8209, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8210, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8211, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8212, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8213, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8214, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:50:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:50:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8215, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8216, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8217, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8218, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8219, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8220, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8221, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8222, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8223, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8224, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8225, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8226, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8227, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8228, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8229, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8230, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8231, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8232, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8233, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8234, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8235, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8236, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8237, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8238, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8239, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8240, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8241, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8242, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8243, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8244, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8245, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8246, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8247, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8248, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8249, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8250, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8251, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8252, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8253, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8254, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8255, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8256, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8257, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8258, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8259, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8260, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8261, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8262, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8263, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8264, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8265, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8266, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8267, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8268, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8269, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8270, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8271, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8272, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8273, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8274, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:51:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:51:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8275, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8276, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8277, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8278, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8279, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8280, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8281, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8282, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8283, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8284, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8285, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8286, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8287, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8288, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8289, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8290, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8291, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8292, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8293, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8294, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8295, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8296, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8297, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8298, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8299, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8300, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8301, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8302, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8303, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8304, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8305, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8306, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8307, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8308, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8309, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8310, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8311, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8312, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8313, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8314, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8315, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8316, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8317, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8318, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8319, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8320, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8321, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8322, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8323, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8324, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8325, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8326, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8327, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8328, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8329, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8330, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8331, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8332, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8333, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8334, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:52:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:52:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8335, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8336, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8337, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8338, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8339, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8340, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8341, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8342, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8343, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8344, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8345, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8346, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8347, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8348, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8349, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8350, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8351, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8352, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8353, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8354, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8355, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8356, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8357, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8358, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8359, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8360, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8361, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8362, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8363, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8364, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8365, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8366, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8367, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8368, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8369, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8370, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8371, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8372, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8373, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8374, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8375, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8376, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8377, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8378, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8379, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8380, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8381, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8382, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8383, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8384, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8385, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8386, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8387, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8388, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8389, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8390, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8391, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8392, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8393, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8394, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:53:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:53:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8395, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8396, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8397, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8398, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8399, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8400, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8401, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8402, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8403, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8404, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8405, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8406, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8407, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8408, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8409, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8410, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8411, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8412, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8413, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8414, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8415, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8416, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8417, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8418, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8419, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8420, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8421, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8422, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8423, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8424, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8425, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8426, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8427, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8428, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8429, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8430, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8431, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8432, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8433, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8434, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8435, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8436, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8437, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8438, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8439, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8440, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8441, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8442, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8443, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8444, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8445, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8446, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8447, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8448, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8449, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8450, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8451, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8452, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8453, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8454, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:54:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:54:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8455, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8456, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8457, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8458, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8459, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8460, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8461, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8462, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8463, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8464, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8465, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8466, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8467, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8468, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8469, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8470, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8471, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8472, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8473, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8474, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8475, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8476, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8477, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8478, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8479, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8480, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8481, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8482, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8483, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8484, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8485, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8486, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8487, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8488, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8489, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8490, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8491, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8492, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8493, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8494, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8495, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8496, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8497, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8498, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8499, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8500, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8501, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8502, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8503, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8504, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8505, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8506, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8507, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8508, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8509, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8510, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8511, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8512, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8513, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8514, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:55:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:55:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8515, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8516, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8517, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8518, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8519, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8520, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8521, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8522, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8523, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8524, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8525, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8526, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8527, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8528, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8529, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8530, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8531, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8532, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8533, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8534, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8535, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8536, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8537, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8538, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8539, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8540, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8541, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8542, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8543, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8544, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8545, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8546, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8547, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8548, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8549, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8550, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8551, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8552, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8553, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8554, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8555, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8556, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8557, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8558, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8559, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8560, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8561, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8562, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8563, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8564, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8565, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8566, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8567, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8568, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8569, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8570, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8571, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8572, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8573, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8574, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:56:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:56:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8575, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8576, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8577, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8578, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8579, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8580, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8581, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8582, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8583, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8584, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8585, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8586, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8587, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8588, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8589, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8590, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8591, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8592, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8593, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8594, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8595, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8596, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8597, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8598, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8599, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8600, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8601, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8602, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8603, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8604, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8605, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8606, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8607, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8608, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8609, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8610, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8611, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8612, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8613, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8614, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8615, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8616, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8617, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8618, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8619, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8620, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8621, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8622, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8623, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8624, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8625, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8626, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8627, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8628, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8629, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8630, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8631, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8632, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8633, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8634, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:57:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:57:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8635, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8636, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8637, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8638, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8639, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8640, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8641, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8642, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8643, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8644, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8645, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8646, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8647, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8648, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8649, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8650, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8651, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8652, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8653, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8654, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8655, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8656, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8657, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8658, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8659, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8660, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8661, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8662, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8663, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8664, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8665, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8666, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8667, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8668, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8669, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8670, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8671, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8672, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8673, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8674, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8675, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8676, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8677, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8678, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8679, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8680, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8681, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8682, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8683, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8684, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8685, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8686, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8687, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8688, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8689, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8690, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8691, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8692, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8693, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8694, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:58:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:58:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8695, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8696, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8697, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8698, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8699, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8700, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8701, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8702, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8703, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8704, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8705, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8706, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8707, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8708, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8709, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8710, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8711, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8712, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8713, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8714, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8715, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8716, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8717, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8718, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8719, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8720, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8721, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8722, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8723, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8724, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8725, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8726, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8727, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8728, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8729, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8730, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8731, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8732, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8733, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8734, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8735, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8736, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8737, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8738, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8739, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8740, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8741, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8742, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8743, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8744, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8745, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8746, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8747, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8748, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8749, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8750, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8751, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8752, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8753, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8754, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-06 23:59:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-06 23:59:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8755, 1, 1, NULL, 'demoJobHandler', '', NULL, 0, '2026-07-07 00:00:00', 500, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:null<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:address route fail, 调度失败:执行器地址为空<br>JobHandler:demoJobHandler<br>任务参数:<br>调度备注:error, Address Router Fail.', NULL, 0, NULL, 2);
|
||
INSERT INTO `xxl_job_log` VALUES (8756, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8757, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8758, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8759, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8760, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8761, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8762, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8763, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8764, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8765, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8766, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8767, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8768, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8769, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8770, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8771, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8772, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8773, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8774, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8775, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8776, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8777, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8778, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8779, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8780, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8781, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8782, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8783, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8784, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8785, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8786, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8787, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8788, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8789, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8790, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8791, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8792, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8793, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8794, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8795, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8796, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8797, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8798, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8799, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8800, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8801, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8802, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8803, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8804, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8805, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8806, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8807, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8808, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8809, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8810, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8811, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8812, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8813, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8814, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8815, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:00:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:00:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8816, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8817, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8818, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8819, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8820, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8821, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8822, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8823, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8824, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8825, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8826, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8827, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8828, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8829, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8830, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8831, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8832, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8833, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8834, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8835, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8836, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8837, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8838, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8839, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8840, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8841, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8842, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8843, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8844, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8845, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8846, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8847, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8848, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8849, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8850, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8851, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8852, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8853, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8854, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8855, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8856, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8857, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8858, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8859, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8860, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8861, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8862, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8863, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8864, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8865, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8866, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8867, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8868, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8869, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8870, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8871, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8872, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8873, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8874, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8875, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:01:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:01:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8876, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8877, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8878, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8879, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8880, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8881, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8882, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8883, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8884, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8885, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8886, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8887, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8888, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8889, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8890, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8891, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8892, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8893, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8894, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8895, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8896, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8897, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8898, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8899, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8900, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8901, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8902, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8903, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8904, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8905, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8906, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8907, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8908, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8909, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8910, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8911, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8912, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8913, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8914, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8915, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8916, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8917, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8918, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8919, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8920, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8921, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8922, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8923, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8924, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8925, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8926, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8927, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8928, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8929, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8930, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8931, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8932, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8933, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8934, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8935, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:02:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:02:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8936, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8937, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8938, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8939, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8940, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8941, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8942, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8943, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8944, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8945, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8946, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8947, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8948, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8949, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8950, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8951, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8952, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8953, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8954, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8955, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8956, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8957, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8958, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8959, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8960, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8961, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8962, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8963, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8964, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8965, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8966, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8967, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8968, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8969, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8970, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8971, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8972, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8973, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8974, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8975, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8976, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8977, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8978, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8979, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8980, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8981, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8982, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8983, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8984, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8985, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8986, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8987, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8988, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8989, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8990, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8991, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8992, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8993, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8994, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8995, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:03:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:03:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8996, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8997, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8998, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (8999, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9000, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9001, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9002, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9003, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9004, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9005, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9006, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9007, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9008, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9009, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9010, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9011, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9012, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9013, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9014, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9015, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9016, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9017, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9018, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9019, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9020, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9021, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9022, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9023, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9024, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9025, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9026, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9027, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9028, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9029, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9030, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9031, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9032, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9033, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9034, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9035, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9036, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9037, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9038, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9039, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9040, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9041, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9042, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9043, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9044, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9045, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9046, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9047, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9048, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9049, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9050, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9051, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9052, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9053, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9054, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9055, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:04:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:04:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9056, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9057, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9058, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9059, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9060, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9061, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9062, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9063, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9064, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9065, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9066, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9067, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9068, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9069, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9070, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9071, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9072, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9073, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9074, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9075, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9076, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9077, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9078, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9079, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9080, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9081, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9082, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9083, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9084, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9085, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9086, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9087, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9088, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9089, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9090, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9091, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9092, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9093, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9094, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9095, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9096, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9097, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9098, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9099, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9100, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9101, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9102, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9103, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9104, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9105, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9106, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9107, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9108, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9109, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9110, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9111, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9112, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9113, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9114, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9115, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:05:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:05:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9116, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9117, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9118, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9119, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9120, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9121, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9122, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9123, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9124, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9125, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9126, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9127, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9128, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9129, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9130, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9131, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9132, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9133, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9134, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9135, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9136, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9137, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9138, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9139, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9140, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9141, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9142, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9143, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9144, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9145, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9146, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9147, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9148, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9149, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9150, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9151, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9152, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9153, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9154, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9155, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9156, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9157, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9158, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9159, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9160, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9161, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9162, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9163, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9164, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9165, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9166, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9167, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9168, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9169, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9170, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9171, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9172, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9173, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9174, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9175, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:06:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:06:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9176, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9177, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9178, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9179, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9180, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9181, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9182, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9183, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9184, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9185, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9186, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9187, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9188, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9189, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9190, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9191, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9192, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9193, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9194, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9195, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9196, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9197, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9198, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9199, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9200, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9201, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9202, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9203, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9204, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9205, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9206, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9207, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9208, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9209, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9210, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9211, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9212, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9213, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9214, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9215, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9216, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9217, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9218, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9219, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9220, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9221, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9222, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9223, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9224, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9225, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9226, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9227, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9228, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9229, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9230, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9231, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9232, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9233, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9234, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9235, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:07:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:07:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9236, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9237, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9238, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9239, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9240, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9241, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9242, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9243, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9244, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9245, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9246, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9247, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9248, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9249, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9250, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9251, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9252, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9253, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9254, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9255, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9256, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9257, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9258, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9259, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9260, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9261, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9262, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9263, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9264, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9265, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9266, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9267, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9268, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9269, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9270, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9271, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9272, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9273, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9274, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9275, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9276, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9277, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9278, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9279, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9280, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9281, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9282, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9283, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9284, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9285, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9286, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9287, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9288, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9289, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9290, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9291, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9292, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9293, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9294, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9295, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:08:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:08:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9296, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9297, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9298, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9299, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9300, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9301, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9302, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9303, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9304, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9305, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9306, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9307, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9308, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9309, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9310, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9311, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9312, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9313, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9314, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9315, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9316, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9317, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9318, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9319, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9320, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9321, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9322, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9323, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9324, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9325, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9326, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9327, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9328, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9329, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9330, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9331, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9332, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9333, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9334, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9335, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9336, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9337, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9338, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9339, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9340, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9341, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9342, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9343, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9344, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9345, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9346, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9347, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9348, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9349, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9350, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9351, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9352, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9353, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9354, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9355, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:09:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:09:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9356, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9357, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9358, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9359, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9360, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9361, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9362, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9363, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9364, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9365, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9366, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9367, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9368, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9369, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9370, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9371, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9372, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9373, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9374, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9375, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9376, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9377, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9378, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9379, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9380, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9381, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9382, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9383, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9384, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9385, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9386, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9387, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9388, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9389, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9390, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9391, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9392, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9393, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9394, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9395, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9396, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9397, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9398, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9399, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9400, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9401, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9402, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9403, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9404, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9405, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9406, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9407, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9408, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9409, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9410, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9411, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9412, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9413, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9414, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9415, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:10:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:10:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9416, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9417, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9418, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9419, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9420, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9421, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9422, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9423, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9424, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9425, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9426, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9427, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9428, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9429, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9430, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9431, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9432, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9433, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9434, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9435, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9436, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9437, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9438, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9439, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9440, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9441, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9442, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9443, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9444, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9445, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9446, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9447, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9448, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9449, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9450, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9451, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9452, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9453, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9454, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9455, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9456, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9457, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9458, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9459, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9460, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9461, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9462, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9463, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9464, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9465, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9466, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9467, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9468, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9469, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9470, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9471, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9472, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9473, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9474, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9475, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:11:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:11:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9476, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9477, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9478, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9479, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9480, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9481, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9482, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9483, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9484, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9485, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9486, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9487, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9488, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9489, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9490, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9491, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9492, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9493, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9494, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9495, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9496, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9497, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9498, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9499, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9500, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9501, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9502, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9503, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9504, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9505, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9506, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9507, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9508, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9509, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9510, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9511, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9512, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9513, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9514, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9515, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9516, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9517, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9518, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9519, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9520, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9521, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9522, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9523, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9524, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9525, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9526, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9527, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9528, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9529, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9530, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9531, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9532, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9533, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9534, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9535, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:12:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:12:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9536, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9537, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9538, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9539, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9540, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9541, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9542, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9543, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9544, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9545, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9546, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9547, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9548, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9549, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9550, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9551, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9552, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9553, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9554, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9555, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9556, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9557, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9558, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9559, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9560, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9561, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9562, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9563, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9564, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9565, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9566, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9567, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9568, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9569, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9570, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9571, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9572, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9573, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9574, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9575, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9576, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9577, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9578, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9579, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9580, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9581, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9582, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9583, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9584, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9585, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9586, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9587, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9588, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9589, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9590, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9591, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9592, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9593, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9594, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9595, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:13:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:13:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9596, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9597, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9598, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9599, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9600, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9601, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9602, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9603, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9604, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9605, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9606, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9607, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9608, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9609, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9610, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9611, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9612, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9613, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9614, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9615, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9616, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9617, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9618, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9619, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9620, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9621, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9622, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9623, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9624, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9625, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9626, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9627, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9628, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9629, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9630, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9631, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9632, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9633, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9634, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9635, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9636, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9637, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9638, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9639, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9640, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9641, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9642, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9643, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9644, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9645, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9646, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9647, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9648, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9649, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9650, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9651, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9652, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9653, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9654, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9655, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:14:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:14:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9656, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9657, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9658, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9659, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9660, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9661, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9662, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9663, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9664, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9665, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9666, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9667, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9668, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9669, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9670, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9671, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9672, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9673, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:17', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9674, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:18', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:18', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9675, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:19', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:19', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9676, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:20', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:20', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9677, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:21', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:21', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9678, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:22', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:22', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9679, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:23', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:23', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9680, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:24', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:24', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9681, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:25', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:25', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9682, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:26', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:26', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9683, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:27', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:27', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9684, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:28', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:28', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9685, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:29', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:29', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9686, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:30', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:30', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9687, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:31', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:31', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9688, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:32', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:32', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9689, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:33', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:33', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9690, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:34', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:34', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9691, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:35', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:35', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9692, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:36', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:36', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9693, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:37', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:37', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9694, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:38', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:38', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9695, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:39', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:39', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9696, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:40', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:40', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9697, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:41', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:41', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9698, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:42', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:42', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9699, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:43', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:43', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9700, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:44', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:44', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9701, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:45', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:45', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9702, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:46', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:46', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9703, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:47', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:47', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9704, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:48', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:48', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9705, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:49', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:49', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9706, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:50', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:50', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9707, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:51', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:51', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9708, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:52', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:52', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9709, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:53', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:53', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9710, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:54', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:54', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9711, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:55', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:55', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9712, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:56', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:56', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9713, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:57', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:57', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9714, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:58', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:58', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9715, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:15:59', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:15:59', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9716, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:16:00', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:16:00', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9717, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:16:01', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:16:01', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9718, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:16:02', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:16:02', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9719, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:16:03', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:16:03', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9720, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:16:04', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:16:04', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9721, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:16:05', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:16:05', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9722, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:16:06', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:16:06', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9723, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:16:07', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:16:07', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9724, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:16:08', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:16:08', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9725, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:16:09', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:16:09', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9726, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:16:10', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:16:10', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9727, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:16:11', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:16:11', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9728, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:16:12', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:16:12', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9729, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:16:13', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:16:13', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9730, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:16:14', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:16:14', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9731, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:16:15', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:16:15', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9732, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:16:16', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', '2026-07-07 00:16:16', 200, '', 0);
|
||
INSERT INTO `xxl_job_log` VALUES (9733, 4, 5, 'http://192.168.1.2:10001/', 'demoJob', '', NULL, 0, '2026-07-07 00:16:17', 200, '任务触发类型:Cron触发<br>调度机器:192.168.1.2<br>执行器-注册方式:自动注册<br>执行器-地址列表:[http://192.168.1.2:10001/]<br>路由策略:第一个<br>阻塞处理策略:单机串行<br>任务超时时间:0<br>失败重试次数:0<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>触发调度<<<<<<<<<<< </span><br><br>执行器地址:http://192.168.1.2:10001/<br>JobHandler:demoJob<br>任务参数:<br>调度备注:success', NULL, 0, NULL, 0);
|
||
|
||
-- ----------------------------
|
||
-- Table structure for xxl_job_log_report
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `xxl_job_log_report`;
|
||
CREATE TABLE `xxl_job_log_report` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`trigger_day` datetime NULL DEFAULT NULL COMMENT '调度-时间',
|
||
`running_count` int(11) NOT NULL DEFAULT 0 COMMENT '运行中-日志数量',
|
||
`suc_count` int(11) NOT NULL DEFAULT 0 COMMENT '执行成功-日志数量',
|
||
`fail_count` int(11) NOT NULL DEFAULT 0 COMMENT '执行失败-日志数量',
|
||
`update_time` datetime NULL DEFAULT NULL,
|
||
PRIMARY KEY (`id`) USING BTREE,
|
||
UNIQUE INDEX `i_trigger_day`(`trigger_day`) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 625 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of xxl_job_log_report
|
||
-- ----------------------------
|
||
INSERT INTO `xxl_job_log_report` VALUES (1, '2026-07-06 00:00:00', 0, 4298, 4456, '2026-07-07 00:16:00');
|
||
INSERT INTO `xxl_job_log_report` VALUES (2, '2026-07-05 00:00:00', 0, 0, 0, '2026-07-07 00:16:00');
|
||
INSERT INTO `xxl_job_log_report` VALUES (3, '2026-07-04 00:00:00', 0, 0, 0, '2026-07-06 23:59:00');
|
||
INSERT INTO `xxl_job_log_report` VALUES (574, '2026-07-07 00:00:00', 0, 960, 1, '2026-07-07 00:16:00');
|
||
|
||
-- ----------------------------
|
||
-- Table structure for xxl_job_logglue
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `xxl_job_logglue`;
|
||
CREATE TABLE `xxl_job_logglue` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`job_id` int(11) NOT NULL COMMENT '任务,主键ID',
|
||
`glue_type` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT 'GLUE类型',
|
||
`glue_source` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT 'GLUE源代码',
|
||
`glue_remark` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT 'GLUE备注',
|
||
`add_time` datetime NULL DEFAULT NULL,
|
||
`update_time` datetime NULL DEFAULT NULL,
|
||
PRIMARY KEY (`id`) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of xxl_job_logglue
|
||
-- ----------------------------
|
||
|
||
-- ----------------------------
|
||
-- Table structure for xxl_job_registry
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `xxl_job_registry`;
|
||
CREATE TABLE `xxl_job_registry` (
|
||
`id` bigint(20) NOT NULL AUTO_INCREMENT,
|
||
`registry_group` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||
`registry_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||
`registry_value` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||
`update_time` datetime NULL DEFAULT NULL,
|
||
PRIMARY KEY (`id`) USING BTREE,
|
||
UNIQUE INDEX `i_g_k_v`(`registry_group`, `registry_key`, `registry_value`) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 455 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of xxl_job_registry
|
||
-- ----------------------------
|
||
INSERT INTO `xxl_job_registry` VALUES (141, 'EXECUTOR', 'jeecg-demo', 'http://192.168.1.2:10000/', '2026-07-07 00:16:00');
|
||
INSERT INTO `xxl_job_registry` VALUES (168, 'EXECUTOR', 'jeecg-system', 'http://192.168.1.2:10001/', '2026-07-07 00:16:00');
|
||
|
||
-- ----------------------------
|
||
-- Table structure for xxl_job_user
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `xxl_job_user`;
|
||
CREATE TABLE `xxl_job_user` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`username` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '账号',
|
||
`password` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '密码加密信息',
|
||
`token` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '登录token',
|
||
`role` tinyint(4) NOT NULL COMMENT '角色:0-普通用户、1-管理员',
|
||
`permission` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '权限:执行器ID列表,多个逗号分割',
|
||
PRIMARY KEY (`id`) USING BTREE,
|
||
UNIQUE INDEX `i_username`(`username`) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of xxl_job_user
|
||
-- ----------------------------
|
||
INSERT INTO `xxl_job_user` VALUES (1, 'admin', '8d969eef6ecad3c29a3a629280e686cf0c3f5d5a86aff3ca12020c923adc6c92', '118d9c81070e4324b65b0993c6d0b843', 1, NULL);
|
||
|
||
SET FOREIGN_KEY_CHECKS = 1;
|