初始化项目提交,并添加 flowable 7 的 dm 兼容

This commit is contained in:
陈博文
2025-06-10 15:04:49 +08:00
parent af2fd603b5
commit ebfa59ad99
1986 changed files with 1774358 additions and 59 deletions

8
sql/tools/.gitignore vendored Normal file
View File

@@ -0,0 +1,8 @@
# 忽略python虚拟环境
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

130
sql/tools/README.md Normal file
View File

@@ -0,0 +1,130 @@
## 0. 友情提示
`sql/tools` 目录下我们提供一些数据库相关的工具包括测试数据库的快速启动、MySQL 转换其它数据库等等。
注意!所有的操作,必须在 `sql/tools` 目录下执行。
## 1. 测试数据库的快速启动
基于 Docker Compose快速启动 MySQL、Oracle、PostgreSQL、SQL Server 等数据库。
注意!使用 Docker Compose 启动完测试数据后,因为会自动导入项目的 SQL 脚本,所以可能需要等待 1-2 分钟。
### 1.1 MySQL
```Bash
docker compose up -d mysql
```
#### 1.2 Oracle
```Bash
## x86 版本
docker compose up -d oracle
## MacBook Apple Silicon
docker compose up -d oracle_m1
```
> 注意:如果使用 MacBook Apple Silicon 版本,它的 ORACLE_SID 不是 XE而是 FREE
### 1.3 PostgreSQL
```Bash
docker compose up -d postgres
```
### 1.4 SQL Server
```Bash
docker compose up -d sqlserver
# 注意:启动完 sqlserver 后,需要手动再执行如下命令,因为 SQL Server 不支持初始化脚本
docker compose exec sqlserver bash /tmp/create_schema.sh
```
### 1.5 DM 达梦
① 下载达梦 Docker 镜像:<https://eco.dameng.com/download/> 地址点击“Docker 镜像”选项,进行下载。
② 加载镜像文件,在镜像 tar 文件所在目录运行:
```Bash
docker load -i dm8_20240715_x86_rh6_rq_single.tar
```
③ 在项目 `sql/tools` 目录下运行:
```Bash
docker compose up -d dm8
# 注意:启动完 dm 后,需要手动再执行如下命令,因为 dm 不支持初始化脚本
docker compose exec dm8 bash -c '/opt/dmdbms/bin/disql SYSDBA/SYSDBA001 \`/tmp/schema.sql'
exit
```
### 1.6 KingbaseES 人大金仓
① 下载人大金仓 Docker 镜像:
* [x86_64 版本](https://kingbase.oss-cn-beijing.aliyuncs.com/KESV8R3/V009R001C001B0025-安装包-docker/x86_64/kdb_x86_64_V009R001C001B0025.tar) 【Windows 选择这个】
* [aarch64 版本](https://kingbase.oss-cn-beijing.aliyuncs.com/KESV8R3/V009R001C001B0025-安装包-docker/aarch64/kdb_aarch64_V009R001C001B0025.tar) 【MacBook Apple Silicon 选择这个】
② 加载镜像文件,在镜像 tar 文件所在目录运行:
```Bash
docker load -i kdb_x86_64_V009R001C001B0025.tar
```
③ 在项目 `sql/tools` 目录下运行:
```Bash
docker compose up -d kingbase
# 注意:启动完 kingbase 后,需要手动再执行如下命令
docker compose exec kingbase bash -c 'ksql -U $DB_USER -d test -f /tmp/schema.sql'
```
### 1.7 华为 OpenGauss
```Bash
docker compose up -d opengauss
# 注意:启动完 opengauss 后,需要手动再执行如下命令
docker compose exec opengauss bash -c '/usr/local/opengauss/bin/gsql -U $GS_USERNAME -W $GS_PASSWORD -d postgres -f /tmp/schema.sql'
```
## 1.X 容器的销毁重建
开发测试过程中,有时候需要创建全新干净的数据库。由于测试数据 Docker 容器采用数据卷 Volume 挂载数据库实例的数据目录,因此销毁数据需要停止容器后,删除数据卷,然后再重新创建容器。
以 postgres 为例,操作如下:
```Bash
docker compose down postgres
docker volume rm ruoyi-vue-pro_postgres
```
## 2. MySQL 转换其它数据库
项目提供了 `sql/tools/convertor.py` 脚本,支持将 MySQL 转换为 Oracle、PostgreSQL、SQL Server、达梦、人大金仓、OpenGauss 等数据库的脚本。
### 2.1 实现原理
通过读取 MySQL 的 `sql/mysql/ruoyi-vue-pro.sql` 数据库文件,转换成对应的数据库脚本。
### 2.2 使用方法
① 安装依赖库 `simple-ddl-parser`
```bash
pip install simple-ddl-parser
# pip3 install simple-ddl-parser
```
② 在 `sql/tools/` 目录下,执行如下命令打印生成 postgres 的脚本内容,其他可选参数有:`oracle``sqlserver``dm8``kingbase``opengauss`
```Bash
python3 convertor.py postgres
# python3 convertor.py postgres > tmp.sql
```
程序将 SQL 脚本打印到终端,可以重定向到临时文件 `tmp.sql`
确认无误后,可以利用 IDEA 进行格式化。当然,也可以直接导入到数据库中。

844
sql/tools/convertor.py Normal file
View File

@@ -0,0 +1,844 @@
# encoding=utf8
"""芋道系统数据库迁移工具
Author: dhb52 (https://gitee.com/dhb52)
pip install simple-ddl-parser
"""
import argparse
import pathlib
import re
import time
from abc import ABC, abstractmethod
from typing import Dict, Generator, Optional, Tuple, Union
from simple_ddl_parser import DDLParser
PREAMBLE = """/*
Yudao Database Transfer Tool
Source Server Type : MySQL
Target Server Type : {db_type}
Date: {date}
*/
"""
def load_and_clean(sql_file: str) -> str:
"""加载源 SQL 文件,并清理内容方便下一步 ddl 解析
Args:
sql_file (str): sql文件路径
Returns:
str: 清理后的sql文件内容
"""
REPLACE_PAIR_LIST = (
(" CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci ", " "),
(" KEY `", " INDEX `"),
("UNIQUE INDEX", "UNIQUE KEY"),
("b'0'", "'0'"),
("b'1'", "'1'"),
)
content = open(sql_file).read()
for replace_pair in REPLACE_PAIR_LIST:
content = content.replace(*replace_pair)
content = re.sub(r"ENGINE.*COMMENT", "COMMENT", content)
content = re.sub(r"ENGINE.*;", ";", content)
return content
class Convertor(ABC):
def __init__(self, src: str, db_type) -> None:
self.src = src
self.db_type = db_type
self.content = load_and_clean(self.src)
self.table_script_list = re.findall(r"CREATE TABLE [^;]*;", self.content)
@abstractmethod
def translate_type(self, type: str, size: Optional[Union[int, Tuple[int]]]) -> str:
"""字段类型转换
Args:
type (str): 字段类型
size (Optional[Union[int, Tuple[int]]]): 字段长度描述, 如varchar(255), decimal(10,2)
Returns:
str: 类型定义
"""
pass
@abstractmethod
def gen_create(self, table_ddl: Dict) -> str:
"""生成 create 脚本
Args:
table_ddl (Dict): 表DDL
Returns:
str: 生成脚本
"""
pass
@abstractmethod
def gen_pk(self, table_name: str) -> str:
"""生成主键定义
Args:
table_name (str): 表名
Returns:
str: 生成脚本
"""
pass
@abstractmethod
def gen_index(self, ddl: Dict) -> str:
"""生成索引定义
Args:
table_ddl (Dict): 表DDL
Returns:
str: 生成脚本
"""
pass
@abstractmethod
def gen_comment(self, table_sql: str, table_name: str) -> str:
"""生成字段/表注释
Args:
table_sql (str): 原始表SQL
table_name (str): 表名
Returns:
str: 生成脚本
"""
pass
@abstractmethod
def gen_insert(self, table_name: str) -> str:
"""生成 insert 语句块
Args:
table_name (str): 表名
Returns:
str: 生成脚本
"""
pass
def gen_dual(self) -> str:
"""生成虚拟 dual 表
Returns:
str: 生成脚本, 默认返回空脚本, 表示当前数据库无需手工创建
"""
return ""
@staticmethod
def inserts(table_name: str, script_content: str) -> Generator:
PREFIX = f"INSERT INTO `{table_name}`"
# 收集 `table_name` 对应的 insert 语句
for line in script_content.split("\n"):
if line.startswith(PREFIX):
head, tail = line.replace(PREFIX, "").split(" VALUES ", maxsplit=1)
head = head.strip().replace("`", "").lower()
tail = tail.strip().replace(r"\"", '"')
# tail = tail.replace("b'0'", "'0'").replace("b'1'", "'1'")
yield f"INSERT INTO {table_name.lower()} {head} VALUES {tail}"
@staticmethod
def index(ddl: Dict) -> Generator:
"""生成索引定义
Args:
ddl (Dict): 表DDL
Yields:
Generator[str]: create index 语句
"""
def generate_columns(columns):
keys = [
f"{col['name'].lower()}{' ' + col['order'].lower() if col['order'] != 'ASC' else ''}"
for col in columns[0]
]
return ", ".join(keys)
for no, index in enumerate(ddl["index"], 1):
columns = generate_columns(index["columns"])
table_name = ddl["table_name"].lower()
yield f"CREATE INDEX idx_{table_name}_{no:02d} ON {table_name} ({columns})"
@staticmethod
def filed_comments(table_sql: str) -> Generator:
for line in table_sql.split("\n"):
match = re.match(r"^`([^`]+)`.* COMMENT '([^']+)'", line.strip())
if match:
field = match.group(1)
comment_string = match.group(2).replace("\\n", "\n")
yield field, comment_string
def table_comment(self, table_sql: str) -> str:
match = re.search(r"COMMENT \= '([^']+)';", table_sql)
return match.group(1) if match else None
def print(self):
"""打印转换后的sql脚本到终端"""
print(
PREAMBLE.format(
db_type=self.db_type,
date=time.strftime("%Y-%m-%d %H:%M:%S"),
)
)
dual = self.gen_dual()
if dual:
print(
f"""-- ----------------------------
-- Table structure for dual
-- ----------------------------
{dual}
"""
)
error_scripts = []
for table_sql in self.table_script_list:
ddl = DDLParser(table_sql.replace("`", "")).run()
# 如果parse失败, 需要跟进
if len(ddl) == 0:
error_scripts.append(table_sql)
continue
table_ddl = ddl[0]
table_name = table_ddl["table_name"]
# 忽略 quartz 的内容
if table_name.lower().startswith("qrtz"):
continue
# 为每个表生成个5个基本部分
create = self.gen_create(table_ddl)
pk = self.gen_pk(table_name)
index = self.gen_index(table_ddl)
comment = self.gen_comment(table_sql, table_name)
inserts = self.gen_insert(table_name)
# 组合当前表的DDL脚本
script = f"""{create}
{pk}
{index}
{comment}
{inserts}
"""
# 清理
script = re.sub("\n{3,}", "\n\n", script).strip() + "\n"
print(script)
# 将parse失败的脚本打印出来
if error_scripts:
for script in error_scripts:
print(script)
class PostgreSQLConvertor(Convertor):
def __init__(self, src):
super().__init__(src, "PostgreSQL")
def translate_type(self, type: str, size: Optional[Union[int, Tuple[int]]]):
"""类型转换"""
type = type.lower()
if type == "varchar":
return f"varchar({size})"
if type == "int":
return "int4"
if type == "bigint" or type == "bigint unsigned":
return "int8"
if type == "datetime":
return "timestamp"
if type == "bit":
return "bool"
if type in ("tinyint", "smallint"):
return "int2"
if type == "text":
return "text"
if type in ("blob", "mediumblob"):
return "bytea"
if type == "decimal":
return (
f"numeric({','.join(str(s) for s in size)})" if len(size) else "numeric"
)
def gen_create(self, ddl: Dict) -> str:
"""生成 create"""
def _generate_column(col):
name = col["name"].lower()
if name == "deleted":
return "deleted int2 NOT NULL DEFAULT 0"
type = col["type"].lower()
full_type = self.translate_type(type, col["size"])
nullable = "NULL" if col["nullable"] else "NOT NULL"
default = f"DEFAULT {col['default']}" if col["default"] is not None else ""
return f"{name} {full_type} {nullable} {default}"
table_name = ddl["table_name"].lower()
columns = [f"{_generate_column(col).strip()}" for col in ddl["columns"]]
filed_def_list = ",\n ".join(columns)
script = f"""-- ----------------------------
-- Table structure for {table_name}
-- ----------------------------
DROP TABLE IF EXISTS {table_name};
CREATE TABLE {table_name} (
{filed_def_list}
);"""
return script
def gen_index(self, ddl: Dict) -> str:
return "\n".join(f"{script};" for script in self.index(ddl))
def gen_comment(self, table_sql: str, table_name: str) -> str:
"""生成字段及表的注释"""
script = ""
for field, comment_string in self.filed_comments(table_sql):
script += (
f"COMMENT ON COLUMN {table_name}.{field} IS '{comment_string}';" + "\n"
)
table_comment = self.table_comment(table_sql)
if table_comment:
script += f"COMMENT ON TABLE {table_name} IS '{table_comment}';\n"
return script
def gen_pk(self, table_name) -> str:
"""生成主键定义"""
return f"ALTER TABLE {table_name} ADD CONSTRAINT pk_{table_name} PRIMARY KEY (id);\n"
def gen_insert(self, table_name: str) -> str:
"""生成 insert 语句,以及根据最后的 insert id+1 生成 Sequence"""
inserts = list(Convertor.inserts(table_name, self.content))
## 生成 insert 脚本
script = ""
last_id = 0
if inserts:
inserts_lines = "\n".join(inserts)
script += f"""\n\n-- ----------------------------
-- Records of {table_name.lower()}
-- ----------------------------
-- @formatter:off
BEGIN;
{inserts_lines}
COMMIT;
-- @formatter:on"""
match = re.search(r"VALUES \((\d+),", inserts[-1])
if match:
last_id = int(match.group(1))
# 生成 Sequence
script += (
"\n\n"
+ f"""DROP SEQUENCE IF EXISTS {table_name}_seq;
CREATE SEQUENCE {table_name}_seq
START {last_id + 1};"""
)
return script
def gen_dual(self) -> str:
return """DROP TABLE IF EXISTS dual;
CREATE TABLE dual
(
id int2
);
COMMENT ON TABLE dual IS '数据库连接的表';
-- ----------------------------
-- Records of dual
-- ----------------------------
-- @formatter:off
INSERT INTO dual VALUES (1);
-- @formatter:on"""
class OracleConvertor(Convertor):
def __init__(self, src):
super().__init__(src, "Oracle")
def translate_type(self, type: str, size: Optional[Union[int, Tuple[int]]]):
"""类型转换"""
type = type.lower()
if type == "varchar":
return f"varchar2({size if size < 4000 else 4000})"
if type == "int":
return "number"
if type == "bigint" or type == "bigint unsigned":
return "number"
if type == "datetime":
return "date"
if type == "bit":
return "number(1,0)"
if type in ("tinyint", "smallint"):
return "smallint"
if type == "text":
return "clob"
if type in ("blob", "mediumblob"):
return "blob"
if type == "decimal":
return (
f"number({','.join(str(s) for s in size)})" if len(size) else "number"
)
def gen_create(self, ddl) -> str:
"""生成 CREATE 语句"""
def generate_column(col):
name = col["name"].lower()
if name == "deleted":
return "deleted number(1,0) DEFAULT 0 NOT NULL"
type = col["type"].lower()
full_type = self.translate_type(type, col["size"])
nullable = "NULL" if col["nullable"] else "NOT NULL"
default = f"DEFAULT {col['default']}" if col["default"] is not None else ""
# Oracle 中 size 不能作为字段名
field_name = '"size"' if name == "size" else name
# Oracle DEFAULT 定义在 NULLABLE 之前
return f"{field_name} {full_type} {default} {nullable}"
table_name = ddl["table_name"].lower()
columns = [f"{generate_column(col).strip()}" for col in ddl["columns"]]
field_def_list = ",\n ".join(columns)
script = f"""-- ----------------------------
-- Table structure for {table_name}
-- ----------------------------
CREATE TABLE {table_name} (
{field_def_list}
);"""
# oracle INSERT '' 不能通过 NOT NULL 校验
script = script.replace("DEFAULT '' NOT NULL", "DEFAULT '' NULL")
return script
def gen_index(self, ddl: Dict) -> str:
return "\n".join(f"{script};" for script in self.index(ddl))
def gen_comment(self, table_sql: str, table_name: str) -> str:
script = ""
for field, comment_string in self.filed_comments(table_sql):
script += (
f"COMMENT ON COLUMN {table_name}.{field} IS '{comment_string}';" + "\n"
)
table_comment = self.table_comment(table_sql)
if table_comment:
script += f"COMMENT ON TABLE {table_name} IS '{table_comment}';\n"
return script
def gen_pk(self, table_name: str) -> str:
"""生成主键定义"""
return f"ALTER TABLE {table_name} ADD CONSTRAINT pk_{table_name} PRIMARY KEY (id);\n"
def gen_index(self, ddl: Dict) -> str:
return "\n".join(f"{script};" for script in self.index(ddl))
def gen_insert(self, table_name: str) -> str:
"""拷贝 INSERT 语句"""
inserts = []
for insert_script in Convertor.inserts(table_name, self.content):
# 对日期数据添加 TO_DATE 转换
insert_script = re.sub(
r"('\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}')",
r"to_date(\g<1>, 'SYYYY-MM-DD HH24:MI:SS')",
insert_script,
)
inserts.append(insert_script)
## 生成 insert 脚本
script = ""
last_id = 0
if inserts:
inserts_lines = "\n".join(inserts)
script += f"""\n\n-- ----------------------------
-- Records of {table_name.lower()}
-- ----------------------------
-- @formatter:off
{inserts_lines}
COMMIT;
-- @formatter:on"""
match = re.search(r"VALUES \((\d+),", inserts[-1])
if match:
last_id = int(match.group(1))
# 生成 Sequence
script += f"""
CREATE SEQUENCE {table_name}_seq
START WITH {last_id + 1};"""
return script
class SQLServerConvertor(Convertor):
"""_summary_
Args:
Convertor (_type_): _description_
"""
def __init__(self, src):
super().__init__(src, "Microsoft SQL Server")
def translate_type(self, type: str, size: Optional[Union[int, Tuple[int]]]):
"""类型转换"""
type = type.lower()
if type == "varchar":
return f"nvarchar({size if size < 4000 else 4000})"
if type == "int":
return "int"
if type == "bigint" or type == "bigint unsigned":
return "bigint"
if type == "datetime":
return "datetime2"
if type == "bit":
return "varchar(1)"
if type in ("tinyint", "smallint"):
return "tinyint"
if type == "text":
return "nvarchar(max)"
if type in ("blob", "mediumblob"):
return "varbinary(max)"
if type == "decimal":
return (
f"numeric({','.join(str(s) for s in size)})" if len(size) else "numeric"
)
def gen_create(self, ddl: Dict) -> str:
"""生成 create"""
def _generate_column(col):
name = col["name"].lower()
if name == "id":
return "id bigint NOT NULL PRIMARY KEY IDENTITY"
if name == "deleted":
return "deleted bit DEFAULT 0 NOT NULL"
type = col["type"].lower()
full_type = self.translate_type(type, col["size"])
nullable = "NULL" if col["nullable"] else "NOT NULL"
default = f"DEFAULT {col['default']}" if col["default"] is not None else ""
return f"{name} {full_type} {default} {nullable}"
table_name = ddl["table_name"].lower()
columns = [f"{_generate_column(col).strip()}" for col in ddl["columns"]]
filed_def_list = ",\n ".join(columns)
script = f"""-- ----------------------------
-- Table structure for {table_name}
-- ----------------------------
DROP TABLE IF EXISTS {table_name}
GO
CREATE TABLE {table_name} (
{filed_def_list}
)
GO"""
return script
def gen_comment(self, table_sql: str, table_name: str) -> str:
"""生成字段及表的注释"""
script = ""
for field, comment_string in self.filed_comments(table_sql):
script += f"""EXEC sp_addextendedproperty
'MS_Description', N'{comment_string}',
'SCHEMA', N'dbo',
'TABLE', N'{table_name}',
'COLUMN', N'{field}'
GO
"""
table_comment = self.table_comment(table_sql)
if table_comment:
script += f"""EXEC sp_addextendedproperty
'MS_Description', N'{table_comment}',
'SCHEMA', N'dbo',
'TABLE', N'{table_name}'
GO
"""
return script
def gen_pk(self, table_name: str) -> str:
"""生成主键定义"""
return ""
def gen_index(self, ddl: Dict) -> str:
"""生成 index"""
return "\n".join(f"{script}\nGO" for script in self.index(ddl))
def gen_insert(self, table_name: str) -> str:
"""生成 insert 语句"""
# 收集 `table_name` 对应的 insert 语句
inserts = []
for insert_script in Convertor.inserts(table_name, self.content):
# SQLServer: 字符串前加Nhack是否存在替换字符串内容的风险
insert_script = insert_script.replace(", '", ", N'").replace(
"VALUES ('", "VALUES (N')"
)
# 删除 insert 的结尾分号
insert_script = re.sub(";$", r"\nGO", insert_script)
inserts.append(insert_script)
## 生成 insert 脚本
script = ""
if inserts:
inserts_lines = "\n".join(inserts)
script += f"""\n\n-- ----------------------------
-- Records of {table_name.lower()}
-- ----------------------------
-- @formatter:off
BEGIN TRANSACTION
GO
SET IDENTITY_INSERT {table_name.lower()} ON
GO
{inserts_lines}
SET IDENTITY_INSERT {table_name.lower()} OFF
GO
COMMIT
GO
-- @formatter:on"""
return script
def gen_dual(self) -> str:
return """DROP TABLE IF EXISTS dual
GO
CREATE TABLE dual
(
id int
)
GO
EXEC sp_addextendedproperty
'MS_Description', N'数据库连接的表',
'SCHEMA', N'dbo',
'TABLE', N'dual'
GO
-- ----------------------------
-- Records of dual
-- ----------------------------
-- @formatter:off
INSERT INTO dual VALUES (1)
GO
-- @formatter:on"""
class DM8Convertor(Convertor):
def __init__(self, src):
super().__init__(src, "DM8")
def translate_type(self, type: str, size: Optional[Union[int, Tuple[int]]]):
"""类型转换"""
type = type.lower()
if type == "varchar":
return f"varchar({size})"
if type == "int":
return "int"
if type == "bigint" or type == "bigint unsigned":
return "bigint"
if type == "datetime":
return "datetime"
if type == "bit":
return "bit"
if type in ("tinyint", "smallint"):
return "smallint"
if type == "text":
return "text"
if type == "blob":
return "blob"
if type == "mediumblob":
return "varchar(10240)"
if type == "decimal":
return (
f"decimal({','.join(str(s) for s in size)})" if len(size) else "decimal"
)
def gen_create(self, ddl) -> str:
"""生成 CREATE 语句"""
def generate_column(col):
name = col["name"].lower()
if name == "id":
return "id bigint NOT NULL PRIMARY KEY IDENTITY"
type = col["type"].lower()
full_type = self.translate_type(type, col["size"])
nullable = "NULL" if col["nullable"] else "NOT NULL"
default = f"DEFAULT {col['default']}" if col["default"] is not None else ""
return f"{name} {full_type} {default} {nullable}"
table_name = ddl["table_name"].lower()
columns = [f"{generate_column(col).strip()}" for col in ddl["columns"]]
field_def_list = ",\n ".join(columns)
script = f"""-- ----------------------------
-- Table structure for {table_name}
-- ----------------------------
CREATE TABLE {table_name} (
{field_def_list}
);"""
# oracle INSERT '' 不能通过 NOT NULL 校验
script = script.replace("DEFAULT '' NOT NULL", "DEFAULT '' NULL")
return script
def gen_index(self, ddl: Dict) -> str:
return "\n".join(f"{script};" for script in self.index(ddl))
def gen_comment(self, table_sql: str, table_name: str) -> str:
script = ""
for field, comment_string in self.filed_comments(table_sql):
script += (
f"COMMENT ON COLUMN {table_name}.{field} IS '{comment_string}';" + "\n"
)
table_comment = self.table_comment(table_sql)
if table_comment:
script += f"COMMENT ON TABLE {table_name} IS '{table_comment}';\n"
return script
def gen_pk(self, table_name: str) -> str:
"""生成主键定义"""
return ""
def gen_index(self, ddl: Dict) -> str:
return "\n".join(f"{script};" for script in self.index(ddl))
def gen_insert(self, table_name: str) -> str:
"""拷贝 INSERT 语句"""
inserts = list(Convertor.inserts(table_name, self.content))
## 生成 insert 脚本
script = ""
if inserts:
inserts_lines = "\n".join(inserts)
script += f"""\n\n-- ----------------------------
-- Records of {table_name.lower()}
-- ----------------------------
-- @formatter:off
SET IDENTITY_INSERT {table_name.lower()} ON;
{inserts_lines}
COMMIT;
SET IDENTITY_INSERT {table_name.lower()} OFF;
-- @formatter:on"""
return script
class KingbaseConvertor(PostgreSQLConvertor):
def __init__(self, src):
super().__init__(src)
self.db_type = "Kingbase"
def gen_create(self, ddl: Dict) -> str:
"""生成 create"""
def _generate_column(col):
name = col["name"].lower()
if name == "deleted":
return "deleted int2 NOT NULL DEFAULT 0"
type = col["type"].lower()
full_type = self.translate_type(type, col["size"])
nullable = "NULL" if col["nullable"] else "NOT NULL"
default = f"DEFAULT {col['default']}" if col["default"] is not None else ""
return f"{name} {full_type} {nullable} {default}"
table_name = ddl["table_name"].lower()
columns = [f"{_generate_column(col).strip()}" for col in ddl["columns"]]
filed_def_list = ",\n ".join(columns)
script = f"""-- ----------------------------
-- Table structure for {table_name}
-- ----------------------------
DROP TABLE IF EXISTS {table_name};
CREATE TABLE {table_name} (
{filed_def_list}
);"""
# Kingbase INSERT '' 不能通过 NOT NULL 校验
script = script.replace("NOT NULL DEFAULT ''", "NULL DEFAULT ''")
return script
class OpengaussConvertor(KingbaseConvertor):
def __init__(self, src):
super().__init__(src)
self.db_type = "OpenGauss"
def main():
parser = argparse.ArgumentParser(description="芋道系统数据库转换工具")
parser.add_argument(
"type",
type=str,
help="目标数据库类型",
choices=["postgres", "oracle", "sqlserver", "dm8", "kingbase", "opengauss"],
)
args = parser.parse_args()
sql_file = pathlib.Path("../mysql/ruoyi-vue-pro.sql").resolve().as_posix()
convertor = None
if args.type == "postgres":
convertor = PostgreSQLConvertor(sql_file)
elif args.type == "oracle":
convertor = OracleConvertor(sql_file)
elif args.type == "sqlserver":
convertor = SQLServerConvertor(sql_file)
elif args.type == "dm8":
convertor = DM8Convertor(sql_file)
elif args.type == "kingbase":
convertor = KingbaseConvertor(sql_file)
elif args.type == "opengauss":
convertor = OpengaussConvertor(sql_file)
else:
raise NotImplementedError(f"不支持目标数据库类型: {args.type}")
convertor.print()
if __name__ == "__main__":
main()

View File

@@ -0,0 +1,157 @@
name: ruoyi-vue-pro
volumes:
mysql: { }
# postgres: { }
# sqlserver: { }
# dm8: { }
# kingbase: { }
# opengauss: { }
services:
mysql:
image: mysql:8.0.33
restart: unless-stopped
environment:
TZ: Asia/Shanghai
MYSQL_ROOT_PASSWORD: 123456
MYSQL_DATABASE: ruoyi-vue-pro
ports:
- "3306:3306"
volumes:
- mysql:/var/lib/mysql/
# 注入初始化脚本
- ./mysql/ruoyi-vue-pro.sql:/docker-entrypoint-initdb.d/init.sql:ro
command:
--default-authentication-plugin=mysql_native_password
--character-set-server=utf8mb4
--collation-server=utf8mb4_general_ci
--explicit_defaults_for_timestamp=true
--lower_case_table_names=1
#
# postgres:
# image: postgres:14.2
# restart: unless-stopped
# environment:
# POSTGRES_USER: root
# POSTGRES_PASSWORD: 123456
# POSTGRES_DB: ruoyi-vue-pro
# ports:
# - "5432:5432"
# volumes:
# - postgres:/var/lib/postgresql/data
# # 注入初始化脚本
# - ../postgresql/quartz.sql:/docker-entrypoint-initdb.d/quartz.sql:ro
# - ../postgresql/ruoyi-vue-pro.sql:/docker-entrypoint-initdb.d/ruoyi-vue-pro.sql:ro
#
# oracle:
# image: gvenzl/oracle-xe:18-slim-faststart
# restart: unless-stopped
# environment:
# ## 登录信息 SID: XE user: system password: oracle
# ORACLE_PASSWORD: oracle
# ports:
# - "1521:1521"
# volumes:
# - ../oracle/ruoyi-vue-pro.sql:/tmp/schema.sql:ro
# # 创建app用户: ROOT/123456@//localhost/XEPDB1
# - ./oracle/1_create_user.sql:/docker-entrypoint-initdb.d/1_create_user.sql:ro
# - ./oracle/2_create_schema.sh:/docker-entrypoint-initdb.d/2_create_schema.sh:ro
#
# oracle_m1:
# image: einslib/oracle-19c:19.3.0-ee-slim-faststart
# restart: unless-stopped
# environment:
# ## 登录信息 SID: FREE user: system password: oracle
# ORACLE_PASSWORD: oracle
# ports:
# - "1521:1521"
# volumes:
# - ../oracle/ruoyi-vue-pro.sql:/tmp/schema.sql:ro
# # 创建app用户: ROOT/123456@//localhost/XEPDB1
# - ./oracle/1_create_user.sql:/docker-entrypoint-initdb.d/1_create_user.sql:ro
# - ./oracle/2_create_schema.sh:/docker-entrypoint-initdb.d/2_create_schema.sh:ro
#
# sqlserver:
# image: mcr.microsoft.com/mssql/server:2017-latest
# restart: unless-stopped
# environment:
# TZ: Asia/Shanghai
# ACCEPT_EULA: "Y"
# SA_PASSWORD: "Yudao@2024"
# ports:
# - "1433:1433"
# volumes:
# - sqlserver:/var/opt/mssql
# - ../sqlserver/ruoyi-vue-pro.sql:/tmp/schema.sql:ro
# # docker compose exec sqlserver bash /tmp/create_schema.sh
# - ./sqlserver/create_schema.sh:/tmp/create_schema.sh:ro
#
# dm8:
# # docker load -i dm8_20240715_x86_rh6_rq_single.tar
# image: dm8_single:dm8_20240715_rev232765_x86_rh6_64
# restart: unless-stopped
# environment:
# PAGE_SIZE: 16
# LD_LIBRARY_PATH: /opt/dmdbms/bin
# EXTENT_SIZE: 32
# BLANK_PAD_MODE: 1
# LOG_SIZE: 1024
# UNICODE_FLAG: 1
# LENGTH_IN_CHAR: 1
# INSTANCE_NAME: dm8_test
# ports:
# - "5236:5236"
# volumes:
# - dm8:/opt/dmdbms/data
# - ../dm/ruoyi-vue-pro-dm8.sql:/tmp/schema.sql:ro
#
# kingbase:
# image: kingbase_v009r001c001b0025_single_x86:v1
## image: kingbase_v009r001c001b0025_single_arm:v1
# restart: unless-stopped
# environment:
# DB_USER: root
# DB_PASSWORD: 123456
# ports:
# - "54321:54321"
# volumes:
# - kingbase:/home/kingbase/userdata
# - ../kingbase/ruoyi-vue-pro.sql:/tmp/schema.sql:ro
#
# opengauss:
# image: opengauss/opengauss:5.0.0
# restart: unless-stopped
# environment:
# GS_USERNAME: root
# GS_PASSWORD: Yudao@2024
# LD_LIBRARY_PATH: /usr/local/opengauss/lib:/usr/lib
# ports:
# - "5432:5432"
# volumes:
# - opengauss:/var/lib/opengauss
# - ../opengauss/ruoyi-vue-pro.sql:/tmp/schema.sql:ro
# # docker compose exec opengauss bash -c '/usr/local/opengauss/bin/gsql -U $GS_USERNAME -W $GS_PASSWORD -d postgres -f /tmp/schema.sql'
nacos:
image: nacos/nacos-server:v2.5.1
container_name: nacos-standalone-mysql
environment:
PREFER_HOST_MODE: hostname
MODE: standalone
SPRING_DATASOURCE_PLATFORM: mysql
MYSQL_SERVICE_HOST: mysql
MYSQL_SERVICE_DB_NAME: nacos_config
MYSQL_SERVICE_PORT: 3306
MYSQL_SERVICE_USER: root
MYSQL_SERVICE_PASSWORD: 123456
MYSQL_SERVICE_DB_PARAM: characterEncoding=utf8&connectTimeout=1000&socketTimeout=3000&autoReconnect=true&useUnicode=true&useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true
NACOS_AUTH_IDENTITY_KEY: 2222
NACOS_AUTH_IDENTITY_VALUE: 2xxx
NACOS_AUTH_TOKEN: VGhpc0lzTXlDdXN0b21TZWNyZXRLZXkwMTIzNDU2Nzg=
volumes:
- ./standalone-logs/:/home/nacos/logs
ports:
# - "8080:8080"
- "8848:8848"
- "9848:9848"
restart: always

View File

@@ -0,0 +1,3 @@
ALTER SESSION SET CONTAINER=XEPDB1;
CREATE USER ROOT IDENTIFIED BY 123456 QUOTA UNLIMITED ON USERS;
GRANT CONNECT, RESOURCE TO ROOT;

View File

@@ -0,0 +1 @@
sqlplus -s ROOT/123456@//localhost/XEPDB1 @/tmp/schema.sql

View File

@@ -0,0 +1,5 @@
#!/usr/bin/env bash
/opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P ${SA_PASSWORD} -Q "CREATE DATABASE [ruoyi-vue-pro];
GO"
/opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P ${SA_PASSWORD} -d 'ruoyi-vue-pro' -i /tmp/schema.sql

View File

@@ -0,0 +1,382 @@
2025-06-05 18:02:33,035 INFO SPI service [com.alipay.sofa.jraft.JRaftServiceFactory - com.alipay.sofa.jraft.core.DefaultJRaftServiceFactory] loading.
2025-06-05 18:02:33,221 INFO SPI service [com.alipay.sofa.jraft.rpc.RaftRpcFactory - com.alipay.sofa.jraft.rpc.impl.GrpcRaftRpcFactory] loading.
2025-06-05 18:02:33,514 INFO SPI service [com.alipay.sofa.jraft.util.JRaftSignalHandler - com.alipay.sofa.jraft.NodeDescribeSignalHandler] loading.
2025-06-05 18:02:33,515 INFO SPI service [com.alipay.sofa.jraft.util.JRaftSignalHandler - com.alipay.sofa.jraft.NodeMetricsSignalHandler] loading.
2025-06-05 18:02:33,518 INFO SPI service [com.alipay.sofa.jraft.util.JRaftSignalHandler - com.alipay.sofa.jraft.ThreadPoolMetricsSignalHandler] loading.
2025-06-05 18:02:33,522 INFO SPI service [com.alipay.sofa.jraft.util.timer.RaftTimerFactory - com.alipay.sofa.jraft.util.timer.DefaultRaftTimerFactory] loading.
2025-06-05 18:02:33,528 INFO The number of active nodes increment to 1.
2025-06-05 18:02:33,953 INFO Starts FSMCaller successfully.
2025-06-05 18:02:33,972 WARN No data for snapshot reader /home/nacos/data/protocol/raft/naming_persistent_service/snapshot.
2025-06-05 18:02:33,989 INFO Node <naming_persistent_service/2dc99c6b3203:7848> init, term=0, lastLogId=LogId [index=0, term=0], conf=2dc99c6b3203:7848, oldConf=.
2025-06-05 18:02:33,995 INFO Node <naming_persistent_service/2dc99c6b3203:7848> start vote and grant vote self, term=0.
2025-06-05 18:02:34,047 INFO Save raft meta, path=/home/nacos/data/protocol/raft/naming_persistent_service/meta-data, term=1, votedFor=2dc99c6b3203:7848, cost time=37 ms
2025-06-05 18:02:34,055 INFO Node <naming_persistent_service/2dc99c6b3203:7848> become leader of group, term=1, conf=2dc99c6b3203:7848, oldConf=.
2025-06-05 18:02:34,060 INFO -Djraft.recyclers.maxCapacityPerThread: 4096.
2025-06-05 18:02:34,068 WARN RPC server is not started in RaftGroupService.
2025-06-05 18:02:34,071 INFO Start the RaftGroupService successfully.
2025-06-05 18:02:34,103 INFO onLeaderStart: term=1.
2025-06-05 18:02:34,204 INFO The number of active nodes increment to 2.
2025-06-05 18:02:34,273 INFO Creating new channel to: 2dc99c6b3203:7848.
2025-06-05 18:02:34,288 INFO The channel 2dc99c6b3203:7848 is in state: CONNECTING.
2025-06-05 18:02:34,325 INFO Starts FSMCaller successfully.
2025-06-05 18:02:34,325 WARN No data for snapshot reader /home/nacos/data/protocol/raft/naming_persistent_service_v2/snapshot.
2025-06-05 18:02:34,330 INFO Node <naming_persistent_service_v2/2dc99c6b3203:7848> init, term=0, lastLogId=LogId [index=0, term=0], conf=2dc99c6b3203:7848, oldConf=.
2025-06-05 18:02:34,331 INFO Node <naming_persistent_service_v2/2dc99c6b3203:7848> start vote and grant vote self, term=0.
2025-06-05 18:02:34,345 INFO Save raft meta, path=/home/nacos/data/protocol/raft/naming_persistent_service_v2/meta-data, term=1, votedFor=2dc99c6b3203:7848, cost time=13 ms
2025-06-05 18:02:34,346 INFO Node <naming_persistent_service_v2/2dc99c6b3203:7848> become leader of group, term=1, conf=2dc99c6b3203:7848, oldConf=.
2025-06-05 18:02:34,348 WARN RPC server is not started in RaftGroupService.
2025-06-05 18:02:34,349 INFO Start the RaftGroupService successfully.
2025-06-05 18:02:34,370 INFO The number of active nodes increment to 3.
2025-06-05 18:02:34,373 INFO onLeaderStart: term=1.
2025-06-05 18:02:34,493 INFO Starts FSMCaller successfully.
2025-06-05 18:02:34,494 WARN No data for snapshot reader /home/nacos/data/protocol/raft/naming_instance_metadata/snapshot.
2025-06-05 18:02:34,499 INFO Node <naming_instance_metadata/2dc99c6b3203:7848> init, term=0, lastLogId=LogId [index=0, term=0], conf=2dc99c6b3203:7848, oldConf=.
2025-06-05 18:02:34,501 INFO Node <naming_instance_metadata/2dc99c6b3203:7848> start vote and grant vote self, term=0.
2025-06-05 18:02:34,525 INFO Save raft meta, path=/home/nacos/data/protocol/raft/naming_instance_metadata/meta-data, term=1, votedFor=2dc99c6b3203:7848, cost time=18 ms
2025-06-05 18:02:34,527 INFO Node <naming_instance_metadata/2dc99c6b3203:7848> become leader of group, term=1, conf=2dc99c6b3203:7848, oldConf=.
2025-06-05 18:02:34,528 WARN RPC server is not started in RaftGroupService.
2025-06-05 18:02:34,529 INFO Start the RaftGroupService successfully.
2025-06-05 18:02:34,535 INFO The number of active nodes increment to 4.
2025-06-05 18:02:34,545 INFO onLeaderStart: term=1.
2025-06-05 18:02:34,671 INFO Starts FSMCaller successfully.
2025-06-05 18:02:34,672 WARN No data for snapshot reader /home/nacos/data/protocol/raft/naming_service_metadata/snapshot.
2025-06-05 18:02:34,675 INFO Node <naming_service_metadata/2dc99c6b3203:7848> init, term=0, lastLogId=LogId [index=0, term=0], conf=2dc99c6b3203:7848, oldConf=.
2025-06-05 18:02:34,677 INFO Node <naming_service_metadata/2dc99c6b3203:7848> start vote and grant vote self, term=0.
2025-06-05 18:02:34,692 INFO Save raft meta, path=/home/nacos/data/protocol/raft/naming_service_metadata/meta-data, term=1, votedFor=2dc99c6b3203:7848, cost time=13 ms
2025-06-05 18:02:34,693 INFO Node <naming_service_metadata/2dc99c6b3203:7848> become leader of group, term=1, conf=2dc99c6b3203:7848, oldConf=.
2025-06-05 18:02:34,695 WARN RPC server is not started in RaftGroupService.
2025-06-05 18:02:34,696 INFO Start the RaftGroupService successfully.
2025-06-05 18:02:34,706 INFO onLeaderStart: term=1.
2025-06-05 18:02:34,881 INFO The channel 2dc99c6b3203:7848 is in state: READY.
2025-06-05 18:02:34,882 INFO The channel 2dc99c6b3203:7848 has successfully established.
2025-06-05 18:02:35,723 INFO Node <naming_service_metadata/2dc99c6b3203:7848> shutdown, currTerm=1 state=STATE_LEADER.
2025-06-05 18:02:35,731 INFO Fail to find the next candidate, group naming_service_metadata.
2025-06-05 18:02:35,731 INFO onLeaderStop: status=Status[ESHUTDOWN<1007>: Raft node is going to quit.].
2025-06-05 18:02:35,748 INFO Save raft meta, path=/home/nacos/data/protocol/raft/naming_service_metadata/meta-data, term=1, votedFor=2dc99c6b3203:7848, cost time=13 ms
2025-06-05 18:02:35,749 INFO Shutting down FSMCaller...
2025-06-05 18:02:35,752 INFO ThreadPool is terminated: JRaft-RPC-Processor, com.alipay.sofa.jraft.util.MetricThreadPoolExecutor@14b8b9a3[Shutting down, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0].
2025-06-05 18:02:35,753 INFO onShutdown.
2025-06-05 18:02:35,754 INFO ThreadPool is terminated: JRaft-Node-ScheduleThreadPool, com.alipay.sofa.jraft.util.MetricScheduledThreadPoolExecutor@36b4cf5e[Shutting down, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0].
2025-06-05 18:02:35,755 INFO The number of active nodes decrement to 3.
2025-06-05 18:02:35,755 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=5000, name='JRaft-ElectionTimer-<naming_service_metadata/2dc99c6b3203:7848>'}.
2025-06-05 18:02:35,758 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=5000, name='JRaft-VoteTimer-<naming_service_metadata/2dc99c6b3203:7848>'}.
2025-06-05 18:02:35,758 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=2500, name='JRaft-StepDownTimer-<naming_service_metadata/2dc99c6b3203:7848>'}.
2025-06-05 18:02:35,759 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=1800000, name='JRaft-SnapshotTimer-<naming_service_metadata/2dc99c6b3203:7848>'}.
2025-06-05 18:02:35,763 INFO Node <naming_service_metadata/2dc99c6b3203:7848> shutdown, currTerm=1 state=STATE_SHUTTING.
2025-06-05 18:02:35,765 INFO Stop the RaftGroupService successfully.
2025-06-05 18:02:35,766 INFO Node <naming_persistent_service/2dc99c6b3203:7848> shutdown, currTerm=1 state=STATE_LEADER.
2025-06-05 18:02:35,767 INFO DB destroyed, the db path is: /home/nacos/data/protocol/raft/naming_service_metadata/log.
2025-06-05 18:02:35,767 INFO Fail to find the next candidate, group naming_persistent_service.
2025-06-05 18:02:35,768 INFO onLeaderStop: status=Status[ESHUTDOWN<1007>: Raft node is going to quit.].
2025-06-05 18:02:35,784 INFO Save raft meta, path=/home/nacos/data/protocol/raft/naming_persistent_service/meta-data, term=1, votedFor=2dc99c6b3203:7848, cost time=12 ms
2025-06-05 18:02:35,785 INFO Shutting down FSMCaller...
2025-06-05 18:02:35,787 INFO onShutdown.
2025-06-05 18:02:35,787 INFO ThreadPool is terminated: JRaft-RPC-Processor, com.alipay.sofa.jraft.util.MetricThreadPoolExecutor@435ea6fc[Shutting down, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0].
2025-06-05 18:02:35,788 INFO ThreadPool is terminated: JRaft-Node-ScheduleThreadPool, com.alipay.sofa.jraft.util.MetricScheduledThreadPoolExecutor@5bf93df4[Shutting down, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0].
2025-06-05 18:02:35,789 INFO The number of active nodes decrement to 2.
2025-06-05 18:02:35,790 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=5000, name='JRaft-ElectionTimer-<naming_persistent_service/2dc99c6b3203:7848>'}.
2025-06-05 18:02:35,792 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=5000, name='JRaft-VoteTimer-<naming_persistent_service/2dc99c6b3203:7848>'}.
2025-06-05 18:02:35,793 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=2500, name='JRaft-StepDownTimer-<naming_persistent_service/2dc99c6b3203:7848>'}.
2025-06-05 18:02:35,794 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=1800000, name='JRaft-SnapshotTimer-<naming_persistent_service/2dc99c6b3203:7848>'}.
2025-06-05 18:02:35,799 INFO Node <naming_persistent_service/2dc99c6b3203:7848> shutdown, currTerm=1 state=STATE_SHUTTING.
2025-06-05 18:02:35,800 INFO Stop the RaftGroupService successfully.
2025-06-05 18:02:35,801 INFO Node <naming_instance_metadata/2dc99c6b3203:7848> shutdown, currTerm=1 state=STATE_LEADER.
2025-06-05 18:02:35,803 INFO DB destroyed, the db path is: /home/nacos/data/protocol/raft/naming_persistent_service/log.
2025-06-05 18:02:35,805 INFO Fail to find the next candidate, group naming_instance_metadata.
2025-06-05 18:02:35,805 INFO onLeaderStop: status=Status[ESHUTDOWN<1007>: Raft node is going to quit.].
2025-06-05 18:02:35,822 INFO Save raft meta, path=/home/nacos/data/protocol/raft/naming_instance_metadata/meta-data, term=1, votedFor=2dc99c6b3203:7848, cost time=14 ms
2025-06-05 18:02:35,823 INFO Shutting down FSMCaller...
2025-06-05 18:02:35,825 INFO onShutdown.
2025-06-05 18:02:35,826 INFO ThreadPool is terminated: JRaft-RPC-Processor, com.alipay.sofa.jraft.util.MetricThreadPoolExecutor@74216de4[Shutting down, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0].
2025-06-05 18:02:35,831 INFO ThreadPool is terminated: JRaft-Node-ScheduleThreadPool, com.alipay.sofa.jraft.util.MetricScheduledThreadPoolExecutor@4a260ef1[Shutting down, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0].
2025-06-05 18:02:35,832 INFO The number of active nodes decrement to 1.
2025-06-05 18:02:35,832 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=5000, name='JRaft-ElectionTimer-<naming_instance_metadata/2dc99c6b3203:7848>'}.
2025-06-05 18:02:35,834 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=5000, name='JRaft-VoteTimer-<naming_instance_metadata/2dc99c6b3203:7848>'}.
2025-06-05 18:02:35,835 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=2500, name='JRaft-StepDownTimer-<naming_instance_metadata/2dc99c6b3203:7848>'}.
2025-06-05 18:02:35,835 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=1800000, name='JRaft-SnapshotTimer-<naming_instance_metadata/2dc99c6b3203:7848>'}.
2025-06-05 18:02:35,838 INFO Node <naming_instance_metadata/2dc99c6b3203:7848> shutdown, currTerm=1 state=STATE_SHUTTING.
2025-06-05 18:02:35,840 INFO Stop the RaftGroupService successfully.
2025-06-05 18:02:35,841 INFO Node <naming_persistent_service_v2/2dc99c6b3203:7848> shutdown, currTerm=1 state=STATE_LEADER.
2025-06-05 18:02:35,842 INFO DB destroyed, the db path is: /home/nacos/data/protocol/raft/naming_instance_metadata/log.
2025-06-05 18:02:35,843 INFO Fail to find the next candidate, group naming_persistent_service_v2.
2025-06-05 18:02:35,844 INFO onLeaderStop: status=Status[ESHUTDOWN<1007>: Raft node is going to quit.].
2025-06-05 18:02:35,860 INFO Save raft meta, path=/home/nacos/data/protocol/raft/naming_persistent_service_v2/meta-data, term=1, votedFor=2dc99c6b3203:7848, cost time=14 ms
2025-06-05 18:02:35,861 INFO Shutting down FSMCaller...
2025-06-05 18:02:35,866 INFO ThreadPool is terminated: JRaft-RPC-Processor, com.alipay.sofa.jraft.util.MetricThreadPoolExecutor@4f427988[Shutting down, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0].
2025-06-05 18:02:35,866 INFO onShutdown.
2025-06-05 18:02:35,868 INFO ThreadPool is terminated: JRaft-Node-ScheduleThreadPool, com.alipay.sofa.jraft.util.MetricScheduledThreadPoolExecutor@63bcc4ec[Shutting down, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0].
2025-06-05 18:02:35,869 INFO The number of active nodes decrement to 0.
2025-06-05 18:02:35,874 INFO ThreadPool is terminated: JRaft-Global-ElectionTimer, com.alipay.sofa.jraft.util.MetricScheduledThreadPoolExecutor@3fda7395[Shutting down, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0].
2025-06-05 18:02:35,875 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=5000, name='JRaft-ElectionTimer-<naming_persistent_service_v2/2dc99c6b3203:7848>'}.
2025-06-05 18:02:35,878 INFO ThreadPool is terminated: JRaft-Global-VoteTimer, com.alipay.sofa.jraft.util.MetricScheduledThreadPoolExecutor@8c9c1af[Shutting down, pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 0].
2025-06-05 18:02:35,880 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=5000, name='JRaft-VoteTimer-<naming_persistent_service_v2/2dc99c6b3203:7848>'}.
2025-06-05 18:02:35,884 INFO ThreadPool is terminated: JRaft-Global-StepDownTimer, com.alipay.sofa.jraft.util.MetricScheduledThreadPoolExecutor@7746bc6d[Shutting down, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 4].
2025-06-05 18:02:35,885 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=2500, name='JRaft-StepDownTimer-<naming_persistent_service_v2/2dc99c6b3203:7848>'}.
2025-06-05 18:02:35,888 INFO ThreadPool is terminated: JRaft-Global-SnapshotTimer, com.alipay.sofa.jraft.util.MetricScheduledThreadPoolExecutor@480475cd[Shutting down, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0].
2025-06-05 18:02:35,889 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=1800000, name='JRaft-SnapshotTimer-<naming_persistent_service_v2/2dc99c6b3203:7848>'}.
2025-06-05 18:02:35,892 INFO Node <naming_persistent_service_v2/2dc99c6b3203:7848> shutdown, currTerm=1 state=STATE_SHUTTING.
2025-06-05 18:02:35,894 INFO Stop the RaftGroupService successfully.
2025-06-05 18:02:35,898 INFO DB destroyed, the db path is: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log.
2025-06-05 18:02:35,899 INFO Shutdown managed channel: 2dc99c6b3203:7848, ManagedChannelOrphanWrapper{delegate=ManagedChannelImpl{logId=10, target=2dc99c6b3203:7848}}.
2025-06-05 18:02:35,903 INFO The channel 2dc99c6b3203:7848 is in state: SHUTDOWN.
2025-06-05 18:02:35,904 WARN This channel 2dc99c6b3203:7848 has started shutting down. Any new RPCs should fail immediately.
2025-06-05 18:02:35,911 INFO Connection disconnected: /172.21.0.3:59760
2025-06-05 18:02:35,916 INFO ThreadPool is terminated: JRaft-RPC-Processor, com.alipay.sofa.jraft.util.MetricThreadPoolExecutor@25b4f77[Shutting down, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 8].
2025-06-05 18:02:51,353 INFO SPI service [com.alipay.sofa.jraft.JRaftServiceFactory - com.alipay.sofa.jraft.core.DefaultJRaftServiceFactory] loading.
2025-06-05 18:02:51,495 INFO SPI service [com.alipay.sofa.jraft.rpc.RaftRpcFactory - com.alipay.sofa.jraft.rpc.impl.GrpcRaftRpcFactory] loading.
2025-06-05 18:02:51,778 INFO SPI service [com.alipay.sofa.jraft.util.JRaftSignalHandler - com.alipay.sofa.jraft.NodeDescribeSignalHandler] loading.
2025-06-05 18:02:51,781 INFO SPI service [com.alipay.sofa.jraft.util.JRaftSignalHandler - com.alipay.sofa.jraft.NodeMetricsSignalHandler] loading.
2025-06-05 18:02:51,784 INFO SPI service [com.alipay.sofa.jraft.util.JRaftSignalHandler - com.alipay.sofa.jraft.ThreadPoolMetricsSignalHandler] loading.
2025-06-05 18:02:51,795 INFO SPI service [com.alipay.sofa.jraft.util.timer.RaftTimerFactory - com.alipay.sofa.jraft.util.timer.DefaultRaftTimerFactory] loading.
2025-06-05 18:02:51,802 INFO The number of active nodes increment to 1.
2025-06-05 18:02:52,233 INFO Starts FSMCaller successfully.
2025-06-05 18:02:52,249 WARN No data for snapshot reader /home/nacos/data/protocol/raft/naming_persistent_service/snapshot.
2025-06-05 18:02:52,252 INFO Node <naming_persistent_service/2dc99c6b3203:7848> target priority value has changed from: 0, to: -1.
2025-06-05 18:02:52,271 INFO Node <naming_persistent_service/2dc99c6b3203:7848> init, term=1, lastLogId=LogId [index=1, term=1], conf=2dc99c6b3203:7848, oldConf=.
2025-06-05 18:02:52,275 INFO Node <naming_persistent_service/2dc99c6b3203:7848> start vote and grant vote self, term=1.
2025-06-05 18:02:52,330 INFO Save raft meta, path=/home/nacos/data/protocol/raft/naming_persistent_service/meta-data, term=2, votedFor=2dc99c6b3203:7848, cost time=40 ms
2025-06-05 18:02:52,331 INFO Node <naming_persistent_service/2dc99c6b3203:7848> become leader of group, term=2, conf=2dc99c6b3203:7848, oldConf=.
2025-06-05 18:02:52,335 INFO -Djraft.recyclers.maxCapacityPerThread: 4096.
2025-06-05 18:02:52,343 WARN RPC server is not started in RaftGroupService.
2025-06-05 18:02:52,345 INFO Start the RaftGroupService successfully.
2025-06-05 18:02:52,361 INFO onLeaderStart: term=2.
2025-06-05 18:02:52,464 INFO The number of active nodes increment to 2.
2025-06-05 18:02:52,542 INFO Creating new channel to: 2dc99c6b3203:7848.
2025-06-05 18:02:52,557 INFO The channel 2dc99c6b3203:7848 is in state: CONNECTING.
2025-06-05 18:02:52,580 INFO Starts FSMCaller successfully.
2025-06-05 18:02:52,581 WARN No data for snapshot reader /home/nacos/data/protocol/raft/naming_persistent_service_v2/snapshot.
2025-06-05 18:02:52,583 INFO Node <naming_persistent_service_v2/2dc99c6b3203:7848> target priority value has changed from: 0, to: -1.
2025-06-05 18:02:52,587 INFO Node <naming_persistent_service_v2/2dc99c6b3203:7848> init, term=1, lastLogId=LogId [index=1, term=1], conf=2dc99c6b3203:7848, oldConf=.
2025-06-05 18:02:52,589 INFO Node <naming_persistent_service_v2/2dc99c6b3203:7848> start vote and grant vote self, term=1.
2025-06-05 18:02:52,604 INFO Save raft meta, path=/home/nacos/data/protocol/raft/naming_persistent_service_v2/meta-data, term=2, votedFor=2dc99c6b3203:7848, cost time=12 ms
2025-06-05 18:02:52,605 INFO Node <naming_persistent_service_v2/2dc99c6b3203:7848> become leader of group, term=2, conf=2dc99c6b3203:7848, oldConf=.
2025-06-05 18:02:52,607 WARN RPC server is not started in RaftGroupService.
2025-06-05 18:02:52,610 INFO Start the RaftGroupService successfully.
2025-06-05 18:02:52,614 INFO onLeaderStart: term=2.
2025-06-05 18:02:52,627 INFO The number of active nodes increment to 3.
2025-06-05 18:02:52,751 INFO Starts FSMCaller successfully.
2025-06-05 18:02:52,752 WARN No data for snapshot reader /home/nacos/data/protocol/raft/naming_instance_metadata/snapshot.
2025-06-05 18:02:52,753 INFO Node <naming_instance_metadata/2dc99c6b3203:7848> target priority value has changed from: 0, to: -1.
2025-06-05 18:02:52,755 INFO Node <naming_instance_metadata/2dc99c6b3203:7848> init, term=1, lastLogId=LogId [index=1, term=1], conf=2dc99c6b3203:7848, oldConf=.
2025-06-05 18:02:52,757 INFO Node <naming_instance_metadata/2dc99c6b3203:7848> start vote and grant vote self, term=1.
2025-06-05 18:02:52,770 INFO Save raft meta, path=/home/nacos/data/protocol/raft/naming_instance_metadata/meta-data, term=2, votedFor=2dc99c6b3203:7848, cost time=12 ms
2025-06-05 18:02:52,771 INFO Node <naming_instance_metadata/2dc99c6b3203:7848> become leader of group, term=2, conf=2dc99c6b3203:7848, oldConf=.
2025-06-05 18:02:52,773 WARN RPC server is not started in RaftGroupService.
2025-06-05 18:02:52,773 INFO Start the RaftGroupService successfully.
2025-06-05 18:02:52,779 INFO onLeaderStart: term=2.
2025-06-05 18:02:52,780 INFO The number of active nodes increment to 4.
2025-06-05 18:02:52,951 INFO Starts FSMCaller successfully.
2025-06-05 18:02:52,952 WARN No data for snapshot reader /home/nacos/data/protocol/raft/naming_service_metadata/snapshot.
2025-06-05 18:02:52,953 INFO Node <naming_service_metadata/2dc99c6b3203:7848> target priority value has changed from: 0, to: -1.
2025-06-05 18:02:52,956 INFO Node <naming_service_metadata/2dc99c6b3203:7848> init, term=1, lastLogId=LogId [index=1, term=1], conf=2dc99c6b3203:7848, oldConf=.
2025-06-05 18:02:52,960 INFO Node <naming_service_metadata/2dc99c6b3203:7848> start vote and grant vote self, term=1.
2025-06-05 18:02:52,975 INFO Save raft meta, path=/home/nacos/data/protocol/raft/naming_service_metadata/meta-data, term=2, votedFor=2dc99c6b3203:7848, cost time=13 ms
2025-06-05 18:02:52,976 INFO Node <naming_service_metadata/2dc99c6b3203:7848> become leader of group, term=2, conf=2dc99c6b3203:7848, oldConf=.
2025-06-05 18:02:52,978 WARN RPC server is not started in RaftGroupService.
2025-06-05 18:02:52,979 INFO Start the RaftGroupService successfully.
2025-06-05 18:02:52,986 INFO onLeaderStart: term=2.
2025-06-05 18:02:53,027 INFO The channel 2dc99c6b3203:7848 is in state: READY.
2025-06-05 18:02:53,028 INFO The channel 2dc99c6b3203:7848 has successfully established.
2025-06-05 18:18:42,854 INFO Deleting snapshot /home/nacos/data/protocol/raft/naming_persistent_service/snapshot/snapshot_2.
2025-06-05 18:18:42,856 INFO Renaming /home/nacos/data/protocol/raft/naming_persistent_service/snapshot/temp to /home/nacos/data/protocol/raft/naming_persistent_service/snapshot/snapshot_2.
2025-06-05 18:22:35,978 INFO Deleting snapshot /home/nacos/data/protocol/raft/naming_instance_metadata/snapshot/snapshot_2.
2025-06-05 18:22:35,980 INFO Renaming /home/nacos/data/protocol/raft/naming_instance_metadata/snapshot/temp to /home/nacos/data/protocol/raft/naming_instance_metadata/snapshot/snapshot_2.
2025-06-05 18:24:51,854 INFO Deleting snapshot /home/nacos/data/protocol/raft/naming_service_metadata/snapshot/snapshot_2.
2025-06-05 18:24:51,856 INFO Renaming /home/nacos/data/protocol/raft/naming_service_metadata/snapshot/temp to /home/nacos/data/protocol/raft/naming_service_metadata/snapshot/snapshot_2.
2025-06-05 18:26:07,217 INFO Deleting snapshot /home/nacos/data/protocol/raft/naming_persistent_service_v2/snapshot/snapshot_2.
2025-06-05 18:26:07,219 INFO Renaming /home/nacos/data/protocol/raft/naming_persistent_service_v2/snapshot/temp to /home/nacos/data/protocol/raft/naming_persistent_service_v2/snapshot/snapshot_2.
2025-06-05 18:45:59,094 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 1 to 3, cost 1 ms.
2025-06-05 18:49:52,212 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 1 to 3, cost 2 ms.
2025-06-05 18:52:08,748 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 1 to 3, cost 0 ms.
2025-06-05 18:53:23,479 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 1 to 3, cost 1 ms.

View File

@@ -0,0 +1,758 @@
2025-06-09 16:19:30,126 INFO SPI service [com.alipay.sofa.jraft.JRaftServiceFactory - com.alipay.sofa.jraft.core.DefaultJRaftServiceFactory] loading.
2025-06-09 16:19:30,291 INFO SPI service [com.alipay.sofa.jraft.rpc.RaftRpcFactory - com.alipay.sofa.jraft.rpc.impl.GrpcRaftRpcFactory] loading.
2025-06-09 16:19:30,515 INFO SPI service [com.alipay.sofa.jraft.util.JRaftSignalHandler - com.alipay.sofa.jraft.NodeDescribeSignalHandler] loading.
2025-06-09 16:19:30,517 INFO SPI service [com.alipay.sofa.jraft.util.JRaftSignalHandler - com.alipay.sofa.jraft.NodeMetricsSignalHandler] loading.
2025-06-09 16:19:30,519 INFO SPI service [com.alipay.sofa.jraft.util.JRaftSignalHandler - com.alipay.sofa.jraft.ThreadPoolMetricsSignalHandler] loading.
2025-06-09 16:19:30,523 INFO SPI service [com.alipay.sofa.jraft.util.timer.RaftTimerFactory - com.alipay.sofa.jraft.util.timer.DefaultRaftTimerFactory] loading.
2025-06-09 16:19:30,528 INFO The number of active nodes increment to 1.
2025-06-09 16:19:30,917 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 0 to 3, cost 1 ms.
2025-06-09 16:19:30,925 INFO Starts FSMCaller successfully.
2025-06-09 16:19:30,943 INFO Loading snapshot, meta=last_included_index: 2
last_included_term: 2
peers: "2dc99c6b3203:7848"
.
2025-06-09 16:19:31,033 INFO Node <naming_persistent_service/2dc99c6b3203:7848> onSnapshotLoadDone, last_included_index: 2
last_included_term: 2
peers: "2dc99c6b3203:7848"
2025-06-09 16:19:31,034 INFO Node <naming_persistent_service/2dc99c6b3203:7848> target priority value has changed from: 0, to: -1.
2025-06-09 16:19:31,043 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 3 to 3, cost 0 ms.
2025-06-09 16:19:31,047 INFO Node <naming_persistent_service/2dc99c6b3203:7848> init, term=2, lastLogId=LogId [index=2, term=2], conf=2dc99c6b3203:7848, oldConf=.
2025-06-09 16:19:31,051 INFO Node <naming_persistent_service/2dc99c6b3203:7848> start vote and grant vote self, term=2.
2025-06-09 16:19:31,078 INFO Save raft meta, path=/home/nacos/data/protocol/raft/naming_persistent_service/meta-data, term=3, votedFor=2dc99c6b3203:7848, cost time=24 ms
2025-06-09 16:19:31,079 INFO Node <naming_persistent_service/2dc99c6b3203:7848> become leader of group, term=3, conf=2dc99c6b3203:7848, oldConf=.
2025-06-09 16:19:31,084 INFO -Djraft.recyclers.maxCapacityPerThread: 4096.
2025-06-09 16:19:31,087 WARN RPC server is not started in RaftGroupService.
2025-06-09 16:19:31,088 INFO Start the RaftGroupService successfully.
2025-06-09 16:19:31,102 INFO onLeaderStart: term=3.
2025-06-09 16:19:31,182 INFO The number of active nodes increment to 2.
2025-06-09 16:19:31,330 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 0 to 3, cost 1 ms.
2025-06-09 16:19:31,333 INFO Starts FSMCaller successfully.
2025-06-09 16:19:31,335 INFO Loading snapshot, meta=last_included_index: 2
last_included_term: 2
peers: "2dc99c6b3203:7848"
.
2025-06-09 16:19:31,349 INFO Node <naming_persistent_service_v2/2dc99c6b3203:7848> onSnapshotLoadDone, last_included_index: 2
last_included_term: 2
peers: "2dc99c6b3203:7848"
2025-06-09 16:19:31,349 INFO Node <naming_persistent_service_v2/2dc99c6b3203:7848> target priority value has changed from: 0, to: -1.
2025-06-09 16:19:31,352 INFO Node <naming_persistent_service_v2/2dc99c6b3203:7848> init, term=2, lastLogId=LogId [index=2, term=2], conf=2dc99c6b3203:7848, oldConf=.
2025-06-09 16:19:31,354 INFO Node <naming_persistent_service_v2/2dc99c6b3203:7848> start vote and grant vote self, term=2.
2025-06-09 16:19:31,356 INFO Creating new channel to: 2dc99c6b3203:7848.
2025-06-09 16:19:31,364 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 3 to 3, cost 0 ms.
2025-06-09 16:19:31,369 INFO Save raft meta, path=/home/nacos/data/protocol/raft/naming_persistent_service_v2/meta-data, term=3, votedFor=2dc99c6b3203:7848, cost time=13 ms
2025-06-09 16:19:31,370 INFO Node <naming_persistent_service_v2/2dc99c6b3203:7848> become leader of group, term=3, conf=2dc99c6b3203:7848, oldConf=.
2025-06-09 16:19:31,371 INFO The channel 2dc99c6b3203:7848 is in state: CONNECTING.
2025-06-09 16:19:31,371 WARN RPC server is not started in RaftGroupService.
2025-06-09 16:19:31,372 INFO Start the RaftGroupService successfully.
2025-06-09 16:19:31,378 INFO onLeaderStart: term=3.
2025-06-09 16:19:31,395 INFO The number of active nodes increment to 3.
2025-06-09 16:19:31,520 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 0 to 3, cost 1 ms.
2025-06-09 16:19:31,521 INFO Starts FSMCaller successfully.
2025-06-09 16:19:31,523 INFO Loading snapshot, meta=last_included_index: 2
last_included_term: 2
peers: "2dc99c6b3203:7848"
.
2025-06-09 16:19:31,528 INFO Node <naming_instance_metadata/2dc99c6b3203:7848> onSnapshotLoadDone, last_included_index: 2
last_included_term: 2
peers: "2dc99c6b3203:7848"
2025-06-09 16:19:31,529 INFO Node <naming_instance_metadata/2dc99c6b3203:7848> target priority value has changed from: 0, to: -1.
2025-06-09 16:19:31,532 INFO Node <naming_instance_metadata/2dc99c6b3203:7848> init, term=2, lastLogId=LogId [index=2, term=2], conf=2dc99c6b3203:7848, oldConf=.
2025-06-09 16:19:31,533 INFO Node <naming_instance_metadata/2dc99c6b3203:7848> start vote and grant vote self, term=2.
2025-06-09 16:19:31,543 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 3 to 3, cost 0 ms.
2025-06-09 16:19:31,548 INFO Save raft meta, path=/home/nacos/data/protocol/raft/naming_instance_metadata/meta-data, term=3, votedFor=2dc99c6b3203:7848, cost time=13 ms
2025-06-09 16:19:31,549 INFO Node <naming_instance_metadata/2dc99c6b3203:7848> become leader of group, term=3, conf=2dc99c6b3203:7848, oldConf=.
2025-06-09 16:19:31,550 WARN RPC server is not started in RaftGroupService.
2025-06-09 16:19:31,551 INFO Start the RaftGroupService successfully.
2025-06-09 16:19:31,558 INFO The number of active nodes increment to 4.
2025-06-09 16:19:31,559 INFO onLeaderStart: term=3.
2025-06-09 16:19:31,661 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 0 to 3, cost 1 ms.
2025-06-09 16:19:31,663 INFO Starts FSMCaller successfully.
2025-06-09 16:19:31,664 INFO Loading snapshot, meta=last_included_index: 2
last_included_term: 2
peers: "2dc99c6b3203:7848"
.
2025-06-09 16:19:31,666 INFO Node <naming_service_metadata/2dc99c6b3203:7848> onSnapshotLoadDone, last_included_index: 2
last_included_term: 2
peers: "2dc99c6b3203:7848"
2025-06-09 16:19:31,667 INFO Node <naming_service_metadata/2dc99c6b3203:7848> target priority value has changed from: 0, to: -1.
2025-06-09 16:19:31,669 INFO Node <naming_service_metadata/2dc99c6b3203:7848> init, term=2, lastLogId=LogId [index=2, term=2], conf=2dc99c6b3203:7848, oldConf=.
2025-06-09 16:19:31,670 INFO Node <naming_service_metadata/2dc99c6b3203:7848> start vote and grant vote self, term=2.
2025-06-09 16:19:31,685 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 0 ms.
2025-06-09 16:19:31,689 INFO Save raft meta, path=/home/nacos/data/protocol/raft/naming_service_metadata/meta-data, term=3, votedFor=2dc99c6b3203:7848, cost time=18 ms
2025-06-09 16:19:31,690 INFO Node <naming_service_metadata/2dc99c6b3203:7848> become leader of group, term=3, conf=2dc99c6b3203:7848, oldConf=.
2025-06-09 16:19:31,691 WARN RPC server is not started in RaftGroupService.
2025-06-09 16:19:31,692 INFO Start the RaftGroupService successfully.
2025-06-09 16:19:31,701 INFO onLeaderStart: term=3.
2025-06-09 16:19:31,823 INFO The channel 2dc99c6b3203:7848 is in state: READY.
2025-06-09 16:19:31,824 INFO The channel 2dc99c6b3203:7848 has successfully established.
2025-06-09 16:26:37,007 INFO Node <naming_service_metadata/2dc99c6b3203:7848> shutdown, currTerm=3 state=STATE_LEADER.
2025-06-09 16:26:37,011 INFO Fail to find the next candidate, group naming_service_metadata.
2025-06-09 16:26:37,011 INFO onLeaderStop: status=Status[ESHUTDOWN<1007>: Raft node is going to quit.].
2025-06-09 16:26:37,038 INFO Save raft meta, path=/home/nacos/data/protocol/raft/naming_service_metadata/meta-data, term=3, votedFor=2dc99c6b3203:7848, cost time=23 ms
2025-06-09 16:26:37,038 INFO Shutting down FSMCaller...
2025-06-09 16:26:37,042 INFO ThreadPool is terminated: JRaft-RPC-Processor, com.alipay.sofa.jraft.util.MetricThreadPoolExecutor@99abff[Shutting down, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0].
2025-06-09 16:26:37,042 INFO onShutdown.
2025-06-09 16:26:37,044 INFO ThreadPool is terminated: JRaft-Node-ScheduleThreadPool, com.alipay.sofa.jraft.util.MetricScheduledThreadPoolExecutor@484e81db[Shutting down, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0].
2025-06-09 16:26:37,045 INFO The number of active nodes decrement to 3.
2025-06-09 16:26:37,045 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=5000, name='JRaft-ElectionTimer-<naming_service_metadata/2dc99c6b3203:7848>'}.
2025-06-09 16:26:37,046 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=5000, name='JRaft-VoteTimer-<naming_service_metadata/2dc99c6b3203:7848>'}.
2025-06-09 16:26:37,046 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=2500, name='JRaft-StepDownTimer-<naming_service_metadata/2dc99c6b3203:7848>'}.
2025-06-09 16:26:37,047 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=1800000, name='JRaft-SnapshotTimer-<naming_service_metadata/2dc99c6b3203:7848>'}.
2025-06-09 16:26:37,049 INFO Node <naming_service_metadata/2dc99c6b3203:7848> shutdown, currTerm=3 state=STATE_SHUTTING.
2025-06-09 16:26:37,052 INFO Stop the RaftGroupService successfully.
2025-06-09 16:26:37,053 INFO Node <naming_persistent_service/2dc99c6b3203:7848> shutdown, currTerm=3 state=STATE_LEADER.
2025-06-09 16:26:37,054 INFO DB destroyed, the db path is: /home/nacos/data/protocol/raft/naming_service_metadata/log.
2025-06-09 16:26:37,055 INFO Fail to find the next candidate, group naming_persistent_service.
2025-06-09 16:26:37,055 INFO onLeaderStop: status=Status[ESHUTDOWN<1007>: Raft node is going to quit.].
2025-06-09 16:26:37,068 INFO Save raft meta, path=/home/nacos/data/protocol/raft/naming_persistent_service/meta-data, term=3, votedFor=2dc99c6b3203:7848, cost time=12 ms
2025-06-09 16:26:37,069 INFO Shutting down FSMCaller...
2025-06-09 16:26:37,071 INFO onShutdown.
2025-06-09 16:26:37,071 INFO ThreadPool is terminated: JRaft-RPC-Processor, com.alipay.sofa.jraft.util.MetricThreadPoolExecutor@7faa8943[Shutting down, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0].
2025-06-09 16:26:37,074 INFO ThreadPool is terminated: JRaft-Node-ScheduleThreadPool, com.alipay.sofa.jraft.util.MetricScheduledThreadPoolExecutor@45845f2e[Shutting down, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0].
2025-06-09 16:26:37,074 INFO The number of active nodes decrement to 2.
2025-06-09 16:26:37,074 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=5000, name='JRaft-ElectionTimer-<naming_persistent_service/2dc99c6b3203:7848>'}.
2025-06-09 16:26:37,075 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=5000, name='JRaft-VoteTimer-<naming_persistent_service/2dc99c6b3203:7848>'}.
2025-06-09 16:26:37,076 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=2500, name='JRaft-StepDownTimer-<naming_persistent_service/2dc99c6b3203:7848>'}.
2025-06-09 16:26:37,076 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=1800000, name='JRaft-SnapshotTimer-<naming_persistent_service/2dc99c6b3203:7848>'}.
2025-06-09 16:26:37,078 INFO Node <naming_persistent_service/2dc99c6b3203:7848> shutdown, currTerm=3 state=STATE_SHUTTING.
2025-06-09 16:26:37,079 INFO Stop the RaftGroupService successfully.
2025-06-09 16:26:37,080 INFO Node <naming_instance_metadata/2dc99c6b3203:7848> shutdown, currTerm=3 state=STATE_LEADER.
2025-06-09 16:26:37,082 INFO DB destroyed, the db path is: /home/nacos/data/protocol/raft/naming_persistent_service/log.
2025-06-09 16:26:37,082 INFO Fail to find the next candidate, group naming_instance_metadata.
2025-06-09 16:26:37,082 INFO onLeaderStop: status=Status[ESHUTDOWN<1007>: Raft node is going to quit.].
2025-06-09 16:26:37,095 INFO Save raft meta, path=/home/nacos/data/protocol/raft/naming_instance_metadata/meta-data, term=3, votedFor=2dc99c6b3203:7848, cost time=12 ms
2025-06-09 16:26:37,095 INFO Shutting down FSMCaller...
2025-06-09 16:26:37,097 INFO ThreadPool is terminated: JRaft-RPC-Processor, com.alipay.sofa.jraft.util.MetricThreadPoolExecutor@2d389f57[Shutting down, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0].
2025-06-09 16:26:37,097 INFO onShutdown.
2025-06-09 16:26:37,097 INFO ThreadPool is terminated: JRaft-Node-ScheduleThreadPool, com.alipay.sofa.jraft.util.MetricScheduledThreadPoolExecutor@60698cbf[Shutting down, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0].
2025-06-09 16:26:37,098 INFO The number of active nodes decrement to 1.
2025-06-09 16:26:37,098 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=5000, name='JRaft-ElectionTimer-<naming_instance_metadata/2dc99c6b3203:7848>'}.
2025-06-09 16:26:37,099 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=5000, name='JRaft-VoteTimer-<naming_instance_metadata/2dc99c6b3203:7848>'}.
2025-06-09 16:26:37,106 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=2500, name='JRaft-StepDownTimer-<naming_instance_metadata/2dc99c6b3203:7848>'}.
2025-06-09 16:26:37,106 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=1800000, name='JRaft-SnapshotTimer-<naming_instance_metadata/2dc99c6b3203:7848>'}.
2025-06-09 16:26:37,108 INFO Node <naming_instance_metadata/2dc99c6b3203:7848> shutdown, currTerm=3 state=STATE_SHUTTING.
2025-06-09 16:26:37,110 INFO Stop the RaftGroupService successfully.
2025-06-09 16:26:37,113 INFO Node <naming_persistent_service_v2/2dc99c6b3203:7848> shutdown, currTerm=3 state=STATE_LEADER.
2025-06-09 16:26:37,115 INFO DB destroyed, the db path is: /home/nacos/data/protocol/raft/naming_instance_metadata/log.
2025-06-09 16:26:37,115 INFO Fail to find the next candidate, group naming_persistent_service_v2.
2025-06-09 16:26:37,115 INFO onLeaderStop: status=Status[ESHUTDOWN<1007>: Raft node is going to quit.].
2025-06-09 16:26:37,131 INFO Save raft meta, path=/home/nacos/data/protocol/raft/naming_persistent_service_v2/meta-data, term=3, votedFor=2dc99c6b3203:7848, cost time=13 ms
2025-06-09 16:26:37,132 INFO Shutting down FSMCaller...
2025-06-09 16:26:37,133 INFO onShutdown.
2025-06-09 16:26:37,133 INFO ThreadPool is terminated: JRaft-RPC-Processor, com.alipay.sofa.jraft.util.MetricThreadPoolExecutor@3992cb7c[Shutting down, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0].
2025-06-09 16:26:37,136 INFO ThreadPool is terminated: JRaft-Node-ScheduleThreadPool, com.alipay.sofa.jraft.util.MetricScheduledThreadPoolExecutor@40865606[Shutting down, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0].
2025-06-09 16:26:37,136 INFO The number of active nodes decrement to 0.
2025-06-09 16:26:37,142 INFO ThreadPool is terminated: JRaft-Global-ElectionTimer, com.alipay.sofa.jraft.util.MetricScheduledThreadPoolExecutor@26ad2dbd[Shutting down, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 4].
2025-06-09 16:26:37,143 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=5000, name='JRaft-ElectionTimer-<naming_persistent_service_v2/2dc99c6b3203:7848>'}.
2025-06-09 16:26:37,144 INFO ThreadPool is terminated: JRaft-Global-VoteTimer, com.alipay.sofa.jraft.util.MetricScheduledThreadPoolExecutor@2ba5deee[Shutting down, pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 4].
2025-06-09 16:26:37,144 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=5000, name='JRaft-VoteTimer-<naming_persistent_service_v2/2dc99c6b3203:7848>'}.
2025-06-09 16:26:37,149 INFO ThreadPool is terminated: JRaft-Global-StepDownTimer, com.alipay.sofa.jraft.util.MetricScheduledThreadPoolExecutor@70cffadf[Shutting down, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 708].
2025-06-09 16:26:37,151 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=2500, name='JRaft-StepDownTimer-<naming_persistent_service_v2/2dc99c6b3203:7848>'}.
2025-06-09 16:26:37,152 INFO ThreadPool is terminated: JRaft-Global-SnapshotTimer, com.alipay.sofa.jraft.util.MetricScheduledThreadPoolExecutor@5abd9a52[Shutting down, pool size = 1, active threads = 0, queued tasks = 0, completed tasks = 0].
2025-06-09 16:26:37,153 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=1800000, name='JRaft-SnapshotTimer-<naming_persistent_service_v2/2dc99c6b3203:7848>'}.
2025-06-09 16:26:37,154 INFO Node <naming_persistent_service_v2/2dc99c6b3203:7848> shutdown, currTerm=3 state=STATE_SHUTTING.
2025-06-09 16:26:37,155 INFO Stop the RaftGroupService successfully.
2025-06-09 16:26:37,157 INFO DB destroyed, the db path is: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log.
2025-06-09 16:26:37,158 INFO Shutdown managed channel: 2dc99c6b3203:7848, ManagedChannelOrphanWrapper{delegate=ManagedChannelImpl{logId=10, target=2dc99c6b3203:7848}}.
2025-06-09 16:26:37,160 INFO The channel 2dc99c6b3203:7848 is in state: SHUTDOWN.
2025-06-09 16:26:37,160 WARN This channel 2dc99c6b3203:7848 has started shutting down. Any new RPCs should fail immediately.
2025-06-09 16:26:37,167 INFO Connection disconnected: /172.21.0.2:44050
2025-06-09 16:26:37,175 INFO ThreadPool is terminated: JRaft-RPC-Processor, com.alipay.sofa.jraft.util.MetricThreadPoolExecutor@42c50b42[Shutting down, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 426].
2025-06-09 16:26:51,525 INFO SPI service [com.alipay.sofa.jraft.JRaftServiceFactory - com.alipay.sofa.jraft.core.DefaultJRaftServiceFactory] loading.
2025-06-09 16:26:51,652 INFO SPI service [com.alipay.sofa.jraft.rpc.RaftRpcFactory - com.alipay.sofa.jraft.rpc.impl.GrpcRaftRpcFactory] loading.
2025-06-09 16:26:51,838 INFO SPI service [com.alipay.sofa.jraft.util.JRaftSignalHandler - com.alipay.sofa.jraft.NodeDescribeSignalHandler] loading.
2025-06-09 16:26:51,840 INFO SPI service [com.alipay.sofa.jraft.util.JRaftSignalHandler - com.alipay.sofa.jraft.NodeMetricsSignalHandler] loading.
2025-06-09 16:26:51,843 INFO SPI service [com.alipay.sofa.jraft.util.JRaftSignalHandler - com.alipay.sofa.jraft.ThreadPoolMetricsSignalHandler] loading.
2025-06-09 16:26:51,846 INFO SPI service [com.alipay.sofa.jraft.util.timer.RaftTimerFactory - com.alipay.sofa.jraft.util.timer.DefaultRaftTimerFactory] loading.
2025-06-09 16:26:51,851 INFO The number of active nodes increment to 1.
2025-06-09 16:26:52,242 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 0 to 3, cost 1 ms.
2025-06-09 16:26:52,253 INFO Starts FSMCaller successfully.
2025-06-09 16:26:52,271 INFO Loading snapshot, meta=last_included_index: 2
last_included_term: 2
peers: "2dc99c6b3203:7848"
.
2025-06-09 16:26:52,370 INFO Node <naming_persistent_service/2dc99c6b3203:7848> onSnapshotLoadDone, last_included_index: 2
last_included_term: 2
peers: "2dc99c6b3203:7848"
2025-06-09 16:26:52,372 INFO Node <naming_persistent_service/2dc99c6b3203:7848> target priority value has changed from: 0, to: -1.
2025-06-09 16:26:52,379 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 3 to 3, cost 0 ms.
2025-06-09 16:26:52,386 INFO Node <naming_persistent_service/2dc99c6b3203:7848> init, term=3, lastLogId=LogId [index=3, term=3], conf=2dc99c6b3203:7848, oldConf=.
2025-06-09 16:26:52,389 INFO Node <naming_persistent_service/2dc99c6b3203:7848> start vote and grant vote self, term=3.
2025-06-09 16:26:52,419 INFO Save raft meta, path=/home/nacos/data/protocol/raft/naming_persistent_service/meta-data, term=4, votedFor=2dc99c6b3203:7848, cost time=27 ms
2025-06-09 16:26:52,421 INFO Node <naming_persistent_service/2dc99c6b3203:7848> become leader of group, term=4, conf=2dc99c6b3203:7848, oldConf=.
2025-06-09 16:26:52,425 INFO -Djraft.recyclers.maxCapacityPerThread: 4096.
2025-06-09 16:26:52,428 WARN RPC server is not started in RaftGroupService.
2025-06-09 16:26:52,429 INFO Start the RaftGroupService successfully.
2025-06-09 16:26:52,444 INFO onLeaderStart: term=4.
2025-06-09 16:26:52,518 INFO The number of active nodes increment to 2.
2025-06-09 16:26:52,580 INFO Creating new channel to: 2dc99c6b3203:7848.
2025-06-09 16:26:52,678 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 0 to 3, cost 1 ms.
2025-06-09 16:26:52,682 INFO Starts FSMCaller successfully.
2025-06-09 16:26:52,683 INFO The channel 2dc99c6b3203:7848 is in state: CONNECTING.
2025-06-09 16:26:52,683 INFO Loading snapshot, meta=last_included_index: 2
last_included_term: 2
peers: "2dc99c6b3203:7848"
.
2025-06-09 16:26:52,697 INFO Node <naming_persistent_service_v2/2dc99c6b3203:7848> onSnapshotLoadDone, last_included_index: 2
last_included_term: 2
peers: "2dc99c6b3203:7848"
2025-06-09 16:26:52,698 INFO Node <naming_persistent_service_v2/2dc99c6b3203:7848> target priority value has changed from: 0, to: -1.
2025-06-09 16:26:52,703 INFO Node <naming_persistent_service_v2/2dc99c6b3203:7848> init, term=3, lastLogId=LogId [index=3, term=3], conf=2dc99c6b3203:7848, oldConf=.
2025-06-09 16:26:52,708 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 3 to 3, cost 0 ms.
2025-06-09 16:26:52,708 INFO Node <naming_persistent_service_v2/2dc99c6b3203:7848> start vote and grant vote self, term=3.
2025-06-09 16:26:52,722 INFO Save raft meta, path=/home/nacos/data/protocol/raft/naming_persistent_service_v2/meta-data, term=4, votedFor=2dc99c6b3203:7848, cost time=11 ms
2025-06-09 16:26:52,722 INFO Node <naming_persistent_service_v2/2dc99c6b3203:7848> become leader of group, term=4, conf=2dc99c6b3203:7848, oldConf=.
2025-06-09 16:26:52,724 WARN RPC server is not started in RaftGroupService.
2025-06-09 16:26:52,724 INFO Start the RaftGroupService successfully.
2025-06-09 16:26:52,731 INFO onLeaderStart: term=4.
2025-06-09 16:26:52,746 INFO The number of active nodes increment to 3.
2025-06-09 16:26:52,883 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 0 to 3, cost 1 ms.
2025-06-09 16:26:52,885 INFO Starts FSMCaller successfully.
2025-06-09 16:26:52,886 INFO Loading snapshot, meta=last_included_index: 2
last_included_term: 2
peers: "2dc99c6b3203:7848"
.
2025-06-09 16:26:52,889 INFO Node <naming_instance_metadata/2dc99c6b3203:7848> onSnapshotLoadDone, last_included_index: 2
last_included_term: 2
peers: "2dc99c6b3203:7848"
2025-06-09 16:26:52,890 INFO Node <naming_instance_metadata/2dc99c6b3203:7848> target priority value has changed from: 0, to: -1.
2025-06-09 16:26:52,893 INFO Node <naming_instance_metadata/2dc99c6b3203:7848> init, term=3, lastLogId=LogId [index=3, term=3], conf=2dc99c6b3203:7848, oldConf=.
2025-06-09 16:26:52,895 INFO Node <naming_instance_metadata/2dc99c6b3203:7848> start vote and grant vote self, term=3.
2025-06-09 16:26:52,900 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 3 to 3, cost 0 ms.
2025-06-09 16:26:52,913 INFO Save raft meta, path=/home/nacos/data/protocol/raft/naming_instance_metadata/meta-data, term=4, votedFor=2dc99c6b3203:7848, cost time=14 ms
2025-06-09 16:26:52,914 INFO Node <naming_instance_metadata/2dc99c6b3203:7848> become leader of group, term=4, conf=2dc99c6b3203:7848, oldConf=.
2025-06-09 16:26:52,916 WARN RPC server is not started in RaftGroupService.
2025-06-09 16:26:52,917 INFO Start the RaftGroupService successfully.
2025-06-09 16:26:52,923 INFO onLeaderStart: term=4.
2025-06-09 16:26:52,924 INFO The number of active nodes increment to 4.
2025-06-09 16:26:53,023 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 0 to 3, cost 0 ms.
2025-06-09 16:26:53,025 INFO Starts FSMCaller successfully.
2025-06-09 16:26:53,026 INFO Loading snapshot, meta=last_included_index: 2
last_included_term: 2
peers: "2dc99c6b3203:7848"
.
2025-06-09 16:26:53,028 INFO Node <naming_service_metadata/2dc99c6b3203:7848> onSnapshotLoadDone, last_included_index: 2
last_included_term: 2
peers: "2dc99c6b3203:7848"
2025-06-09 16:26:53,029 INFO Node <naming_service_metadata/2dc99c6b3203:7848> target priority value has changed from: 0, to: -1.
2025-06-09 16:26:53,031 INFO Node <naming_service_metadata/2dc99c6b3203:7848> init, term=3, lastLogId=LogId [index=3, term=3], conf=2dc99c6b3203:7848, oldConf=.
2025-06-09 16:26:53,033 INFO Node <naming_service_metadata/2dc99c6b3203:7848> start vote and grant vote self, term=3.
2025-06-09 16:26:53,042 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 0 ms.
2025-06-09 16:26:53,052 INFO The channel 2dc99c6b3203:7848 is in state: READY.
2025-06-09 16:26:53,053 INFO The channel 2dc99c6b3203:7848 has successfully established.
2025-06-09 16:26:53,066 INFO Save raft meta, path=/home/nacos/data/protocol/raft/naming_service_metadata/meta-data, term=4, votedFor=2dc99c6b3203:7848, cost time=24 ms
2025-06-09 16:26:53,067 INFO Node <naming_service_metadata/2dc99c6b3203:7848> become leader of group, term=4, conf=2dc99c6b3203:7848, oldConf=.
2025-06-09 16:26:53,069 WARN RPC server is not started in RaftGroupService.
2025-06-09 16:26:53,070 INFO Start the RaftGroupService successfully.
2025-06-09 16:26:53,079 INFO onLeaderStart: term=4.
2025-06-09 16:35:38,785 INFO SPI service [com.alipay.sofa.jraft.JRaftServiceFactory - com.alipay.sofa.jraft.core.DefaultJRaftServiceFactory] loading.
2025-06-09 16:35:38,936 INFO SPI service [com.alipay.sofa.jraft.rpc.RaftRpcFactory - com.alipay.sofa.jraft.rpc.impl.GrpcRaftRpcFactory] loading.
2025-06-09 16:35:39,153 INFO SPI service [com.alipay.sofa.jraft.util.JRaftSignalHandler - com.alipay.sofa.jraft.NodeDescribeSignalHandler] loading.
2025-06-09 16:35:39,155 INFO SPI service [com.alipay.sofa.jraft.util.JRaftSignalHandler - com.alipay.sofa.jraft.NodeMetricsSignalHandler] loading.
2025-06-09 16:35:39,156 INFO SPI service [com.alipay.sofa.jraft.util.JRaftSignalHandler - com.alipay.sofa.jraft.ThreadPoolMetricsSignalHandler] loading.
2025-06-09 16:35:39,160 INFO SPI service [com.alipay.sofa.jraft.util.timer.RaftTimerFactory - com.alipay.sofa.jraft.util.timer.DefaultRaftTimerFactory] loading.
2025-06-09 16:35:39,165 INFO The number of active nodes increment to 1.
2025-06-09 16:35:39,555 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 0 to 3, cost 0 ms.
2025-06-09 16:35:39,561 INFO Starts FSMCaller successfully.
2025-06-09 16:35:39,582 INFO Loading snapshot, meta=last_included_index: 2
last_included_term: 2
peers: "2dc99c6b3203:7848"
.
2025-06-09 16:35:39,672 INFO Node <naming_persistent_service/2dc99c6b3203:7848> onSnapshotLoadDone, last_included_index: 2
last_included_term: 2
peers: "2dc99c6b3203:7848"
2025-06-09 16:35:39,674 INFO Node <naming_persistent_service/2dc99c6b3203:7848> target priority value has changed from: 0, to: -1.
2025-06-09 16:35:39,681 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 3 to 3, cost 0 ms.
2025-06-09 16:35:39,691 INFO Node <naming_persistent_service/2dc99c6b3203:7848> init, term=4, lastLogId=LogId [index=4, term=4], conf=2dc99c6b3203:7848, oldConf=.
2025-06-09 16:35:39,699 INFO Node <naming_persistent_service/2dc99c6b3203:7848> start vote and grant vote self, term=4.
2025-06-09 16:35:39,728 INFO Save raft meta, path=/home/nacos/data/protocol/raft/naming_persistent_service/meta-data, term=5, votedFor=2dc99c6b3203:7848, cost time=24 ms
2025-06-09 16:35:39,735 INFO Node <naming_persistent_service/2dc99c6b3203:7848> become leader of group, term=5, conf=2dc99c6b3203:7848, oldConf=.
2025-06-09 16:35:39,742 INFO -Djraft.recyclers.maxCapacityPerThread: 4096.
2025-06-09 16:35:39,748 WARN RPC server is not started in RaftGroupService.
2025-06-09 16:35:39,751 INFO Start the RaftGroupService successfully.
2025-06-09 16:35:39,764 INFO onLeaderStart: term=5.
2025-06-09 16:35:39,856 INFO The number of active nodes increment to 2.
2025-06-09 16:35:40,005 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 0 to 3, cost 1 ms.
2025-06-09 16:35:40,008 INFO Starts FSMCaller successfully.
2025-06-09 16:35:40,010 INFO Loading snapshot, meta=last_included_index: 2
last_included_term: 2
peers: "2dc99c6b3203:7848"
.
2025-06-09 16:35:40,022 INFO Creating new channel to: 2dc99c6b3203:7848.
2025-06-09 16:35:40,024 INFO Node <naming_persistent_service_v2/2dc99c6b3203:7848> onSnapshotLoadDone, last_included_index: 2
last_included_term: 2
peers: "2dc99c6b3203:7848"
2025-06-09 16:35:40,024 INFO Node <naming_persistent_service_v2/2dc99c6b3203:7848> target priority value has changed from: 0, to: -1.
2025-06-09 16:35:40,028 INFO Node <naming_persistent_service_v2/2dc99c6b3203:7848> init, term=4, lastLogId=LogId [index=4, term=4], conf=2dc99c6b3203:7848, oldConf=.
2025-06-09 16:35:40,029 INFO Node <naming_persistent_service_v2/2dc99c6b3203:7848> start vote and grant vote self, term=4.
2025-06-09 16:35:40,033 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 3 to 3, cost 0 ms.
2025-06-09 16:35:40,036 INFO The channel 2dc99c6b3203:7848 is in state: CONNECTING.
2025-06-09 16:35:40,044 INFO Save raft meta, path=/home/nacos/data/protocol/raft/naming_persistent_service_v2/meta-data, term=5, votedFor=2dc99c6b3203:7848, cost time=11 ms
2025-06-09 16:35:40,044 INFO Node <naming_persistent_service_v2/2dc99c6b3203:7848> become leader of group, term=5, conf=2dc99c6b3203:7848, oldConf=.
2025-06-09 16:35:40,045 WARN RPC server is not started in RaftGroupService.
2025-06-09 16:35:40,046 INFO Start the RaftGroupService successfully.
2025-06-09 16:35:40,054 INFO onLeaderStart: term=5.
2025-06-09 16:35:40,068 INFO The number of active nodes increment to 3.
2025-06-09 16:35:40,178 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 0 to 3, cost 0 ms.
2025-06-09 16:35:40,183 INFO Starts FSMCaller successfully.
2025-06-09 16:35:40,186 INFO Loading snapshot, meta=last_included_index: 2
last_included_term: 2
peers: "2dc99c6b3203:7848"
.
2025-06-09 16:35:40,189 INFO Node <naming_instance_metadata/2dc99c6b3203:7848> onSnapshotLoadDone, last_included_index: 2
last_included_term: 2
peers: "2dc99c6b3203:7848"
2025-06-09 16:35:40,190 INFO Node <naming_instance_metadata/2dc99c6b3203:7848> target priority value has changed from: 0, to: -1.
2025-06-09 16:35:40,193 INFO Node <naming_instance_metadata/2dc99c6b3203:7848> init, term=4, lastLogId=LogId [index=4, term=4], conf=2dc99c6b3203:7848, oldConf=.
2025-06-09 16:35:40,195 INFO Node <naming_instance_metadata/2dc99c6b3203:7848> start vote and grant vote self, term=4.
2025-06-09 16:35:40,207 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 3 to 3, cost 0 ms.
2025-06-09 16:35:40,218 INFO Save raft meta, path=/home/nacos/data/protocol/raft/naming_instance_metadata/meta-data, term=5, votedFor=2dc99c6b3203:7848, cost time=11 ms
2025-06-09 16:35:40,218 INFO Node <naming_instance_metadata/2dc99c6b3203:7848> become leader of group, term=5, conf=2dc99c6b3203:7848, oldConf=.
2025-06-09 16:35:40,219 WARN RPC server is not started in RaftGroupService.
2025-06-09 16:35:40,220 INFO Start the RaftGroupService successfully.
2025-06-09 16:35:40,226 INFO The number of active nodes increment to 4.
2025-06-09 16:35:40,229 INFO onLeaderStart: term=5.
2025-06-09 16:35:40,320 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 0 to 3, cost 0 ms.
2025-06-09 16:35:40,322 INFO Starts FSMCaller successfully.
2025-06-09 16:35:40,325 INFO Loading snapshot, meta=last_included_index: 2
last_included_term: 2
peers: "2dc99c6b3203:7848"
.
2025-06-09 16:35:40,327 INFO Node <naming_service_metadata/2dc99c6b3203:7848> onSnapshotLoadDone, last_included_index: 2
last_included_term: 2
peers: "2dc99c6b3203:7848"
2025-06-09 16:35:40,328 INFO Node <naming_service_metadata/2dc99c6b3203:7848> target priority value has changed from: 0, to: -1.
2025-06-09 16:35:40,330 INFO Node <naming_service_metadata/2dc99c6b3203:7848> init, term=4, lastLogId=LogId [index=4, term=4], conf=2dc99c6b3203:7848, oldConf=.
2025-06-09 16:35:40,331 INFO Node <naming_service_metadata/2dc99c6b3203:7848> start vote and grant vote self, term=4.
2025-06-09 16:35:40,344 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 1 ms.
2025-06-09 16:35:40,363 INFO Save raft meta, path=/home/nacos/data/protocol/raft/naming_service_metadata/meta-data, term=5, votedFor=2dc99c6b3203:7848, cost time=19 ms
2025-06-09 16:35:40,364 INFO Node <naming_service_metadata/2dc99c6b3203:7848> become leader of group, term=5, conf=2dc99c6b3203:7848, oldConf=.
2025-06-09 16:35:40,365 WARN RPC server is not started in RaftGroupService.
2025-06-09 16:35:40,366 INFO Start the RaftGroupService successfully.
2025-06-09 16:35:40,376 INFO onLeaderStart: term=5.
2025-06-09 16:35:40,442 INFO The channel 2dc99c6b3203:7848 is in state: READY.
2025-06-09 16:35:40,443 INFO The channel 2dc99c6b3203:7848 has successfully established.
2025-06-09 16:53:02,893 INFO Deleting snapshot /home/nacos/data/protocol/raft/naming_persistent_service_v2/snapshot/snapshot_5.
2025-06-09 16:53:02,894 INFO Renaming /home/nacos/data/protocol/raft/naming_persistent_service_v2/snapshot/temp to /home/nacos/data/protocol/raft/naming_persistent_service_v2/snapshot/snapshot_5.
2025-06-09 16:53:02,901 INFO Deleting snapshot /home/nacos/data/protocol/raft/naming_persistent_service_v2/snapshot/snapshot_2.
2025-06-09 16:53:02,914 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 3 to 3, cost 0 ms.
2025-06-09 16:53:12,014 INFO Deleting snapshot /home/nacos/data/protocol/raft/naming_instance_metadata/snapshot/snapshot_5.
2025-06-09 16:53:12,016 INFO Renaming /home/nacos/data/protocol/raft/naming_instance_metadata/snapshot/temp to /home/nacos/data/protocol/raft/naming_instance_metadata/snapshot/snapshot_5.
2025-06-09 16:53:12,023 INFO Deleting snapshot /home/nacos/data/protocol/raft/naming_instance_metadata/snapshot/snapshot_2.
2025-06-09 16:53:12,034 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 3 to 3, cost 0 ms.
2025-06-09 16:56:44,770 INFO Deleting snapshot /home/nacos/data/protocol/raft/naming_service_metadata/snapshot/snapshot_5.
2025-06-09 16:56:44,783 INFO Renaming /home/nacos/data/protocol/raft/naming_service_metadata/snapshot/temp to /home/nacos/data/protocol/raft/naming_service_metadata/snapshot/snapshot_5.
2025-06-09 16:56:44,791 INFO Deleting snapshot /home/nacos/data/protocol/raft/naming_service_metadata/snapshot/snapshot_2.
2025-06-09 16:56:44,811 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_service_metadata/log from log index 3 to 3, cost 0 ms.
2025-06-09 17:03:03,162 INFO Deleting snapshot /home/nacos/data/protocol/raft/naming_persistent_service/snapshot/snapshot_5.
2025-06-09 17:03:03,164 INFO Renaming /home/nacos/data/protocol/raft/naming_persistent_service/snapshot/temp to /home/nacos/data/protocol/raft/naming_persistent_service/snapshot/snapshot_5.
2025-06-09 17:03:03,172 INFO Deleting snapshot /home/nacos/data/protocol/raft/naming_persistent_service/snapshot/snapshot_2.
2025-06-09 17:03:03,184 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service/log from log index 3 to 3, cost 0 ms.
2025-06-09 17:21:30,604 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log from log index 3 to 6, cost 10 ms.
2025-06-09 17:21:39,743 INFO Truncated prefix logs in data path: /home/nacos/data/protocol/raft/naming_instance_metadata/log from log index 3 to 6, cost 9 ms.
2025-06-09 18:37:37,714 INFO SPI service [com.alipay.sofa.jraft.JRaftServiceFactory - com.alipay.sofa.jraft.core.DefaultJRaftServiceFactory] loading.
2025-06-09 18:37:37,869 INFO SPI service [com.alipay.sofa.jraft.rpc.RaftRpcFactory - com.alipay.sofa.jraft.rpc.impl.GrpcRaftRpcFactory] loading.
2025-06-09 18:37:38,119 INFO SPI service [com.alipay.sofa.jraft.util.JRaftSignalHandler - com.alipay.sofa.jraft.NodeDescribeSignalHandler] loading.
2025-06-09 18:37:38,121 INFO SPI service [com.alipay.sofa.jraft.util.JRaftSignalHandler - com.alipay.sofa.jraft.NodeMetricsSignalHandler] loading.
2025-06-09 18:37:38,123 INFO SPI service [com.alipay.sofa.jraft.util.JRaftSignalHandler - com.alipay.sofa.jraft.ThreadPoolMetricsSignalHandler] loading.
2025-06-09 18:37:38,126 INFO SPI service [com.alipay.sofa.jraft.util.timer.RaftTimerFactory - com.alipay.sofa.jraft.util.timer.DefaultRaftTimerFactory] loading.
2025-06-09 18:37:38,132 INFO The number of active nodes increment to 1.
2025-06-09 18:37:38,524 INFO Starts FSMCaller successfully.
2025-06-09 18:37:38,535 WARN No data for snapshot reader /home/nacos/data/protocol/raft/naming_persistent_service/snapshot.
2025-06-09 18:37:38,548 INFO Node <naming_persistent_service/d229613e5681:7848> init, term=0, lastLogId=LogId [index=0, term=0], conf=d229613e5681:7848, oldConf=.
2025-06-09 18:37:38,552 INFO Node <naming_persistent_service/d229613e5681:7848> start vote and grant vote self, term=0.
2025-06-09 18:37:38,600 INFO Save raft meta, path=/home/nacos/data/protocol/raft/naming_persistent_service/meta-data, term=1, votedFor=d229613e5681:7848, cost time=36 ms
2025-06-09 18:37:38,602 INFO Node <naming_persistent_service/d229613e5681:7848> become leader of group, term=1, conf=d229613e5681:7848, oldConf=.
2025-06-09 18:37:38,607 INFO -Djraft.recyclers.maxCapacityPerThread: 4096.
2025-06-09 18:37:38,612 WARN RPC server is not started in RaftGroupService.
2025-06-09 18:37:38,613 INFO Start the RaftGroupService successfully.
2025-06-09 18:37:38,637 INFO onLeaderStart: term=1.
2025-06-09 18:37:38,713 INFO The number of active nodes increment to 2.
2025-06-09 18:37:38,768 INFO Creating new channel to: d229613e5681:7848.
2025-06-09 18:37:38,782 INFO The channel d229613e5681:7848 is in state: CONNECTING.
2025-06-09 18:37:38,817 INFO Starts FSMCaller successfully.
2025-06-09 18:37:38,818 WARN No data for snapshot reader /home/nacos/data/protocol/raft/naming_persistent_service_v2/snapshot.
2025-06-09 18:37:38,895 INFO Node <naming_persistent_service_v2/d229613e5681:7848> init, term=0, lastLogId=LogId [index=0, term=0], conf=d229613e5681:7848, oldConf=.
2025-06-09 18:37:38,897 INFO Node <naming_persistent_service_v2/d229613e5681:7848> start vote and grant vote self, term=0.
2025-06-09 18:37:38,912 INFO Save raft meta, path=/home/nacos/data/protocol/raft/naming_persistent_service_v2/meta-data, term=1, votedFor=d229613e5681:7848, cost time=12 ms
2025-06-09 18:37:38,913 INFO Node <naming_persistent_service_v2/d229613e5681:7848> become leader of group, term=1, conf=d229613e5681:7848, oldConf=.
2025-06-09 18:37:38,914 WARN RPC server is not started in RaftGroupService.
2025-06-09 18:37:38,915 INFO Start the RaftGroupService successfully.
2025-06-09 18:37:38,921 INFO onLeaderStart: term=1.
2025-06-09 18:37:38,930 INFO The number of active nodes increment to 3.
2025-06-09 18:37:39,040 INFO Starts FSMCaller successfully.
2025-06-09 18:37:39,041 WARN No data for snapshot reader /home/nacos/data/protocol/raft/naming_instance_metadata/snapshot.
2025-06-09 18:37:39,045 INFO Node <naming_instance_metadata/d229613e5681:7848> init, term=0, lastLogId=LogId [index=0, term=0], conf=d229613e5681:7848, oldConf=.
2025-06-09 18:37:39,047 INFO Node <naming_instance_metadata/d229613e5681:7848> start vote and grant vote self, term=0.
2025-06-09 18:37:39,061 INFO Save raft meta, path=/home/nacos/data/protocol/raft/naming_instance_metadata/meta-data, term=1, votedFor=d229613e5681:7848, cost time=12 ms
2025-06-09 18:37:39,062 INFO Node <naming_instance_metadata/d229613e5681:7848> become leader of group, term=1, conf=d229613e5681:7848, oldConf=.
2025-06-09 18:37:39,063 WARN RPC server is not started in RaftGroupService.
2025-06-09 18:37:39,064 INFO Start the RaftGroupService successfully.
2025-06-09 18:37:39,072 INFO The number of active nodes increment to 4.
2025-06-09 18:37:39,079 INFO onLeaderStart: term=1.
2025-06-09 18:37:39,195 INFO Starts FSMCaller successfully.
2025-06-09 18:37:39,196 WARN No data for snapshot reader /home/nacos/data/protocol/raft/naming_service_metadata/snapshot.
2025-06-09 18:37:39,200 INFO Node <naming_service_metadata/d229613e5681:7848> init, term=0, lastLogId=LogId [index=0, term=0], conf=d229613e5681:7848, oldConf=.
2025-06-09 18:37:39,202 INFO Node <naming_service_metadata/d229613e5681:7848> start vote and grant vote self, term=0.
2025-06-09 18:37:39,218 INFO Save raft meta, path=/home/nacos/data/protocol/raft/naming_service_metadata/meta-data, term=1, votedFor=d229613e5681:7848, cost time=14 ms
2025-06-09 18:37:39,219 INFO Node <naming_service_metadata/d229613e5681:7848> become leader of group, term=1, conf=d229613e5681:7848, oldConf=.
2025-06-09 18:37:39,220 WARN RPC server is not started in RaftGroupService.
2025-06-09 18:37:39,220 INFO Start the RaftGroupService successfully.
2025-06-09 18:37:39,232 INFO onLeaderStart: term=1.
2025-06-09 18:37:39,253 INFO The channel d229613e5681:7848 is in state: READY.
2025-06-09 18:37:39,254 INFO The channel d229613e5681:7848 has successfully established.

View File

@@ -0,0 +1,104 @@
2025-06-05 18:09:03,228|19|300|192.168.220.1|get|system-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-05 18:09:29,048|2|300|192.168.220.1|get|bpm-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-05 18:09:39,060|1|300|192.168.220.1|get|infra-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-05 18:09:43,985|1|300|192.168.220.1|get|gateway-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-05 18:09:59,305|7|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:10:33,803|17|300|192.168.220.1|get|system-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-05 18:11:02,583|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:11:12,917|4|300|192.168.220.1|get|infra-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-05 18:11:50,250|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:12:44,765|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:13:31,366|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:13:32,927|1|300|192.168.220.1|get|bpm-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-05 18:14:00,914|1|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:14:16,304|1|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:15:46,641|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:16:32,511|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:16:33,302|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:17:15,554|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:18:33,919|4|300|192.168.220.1|get|system-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-05 18:18:41,833|3|300|192.168.220.1|get|system-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-05 18:18:45,843|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:18:47,627|2|300|192.168.220.1|get|system-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-05 18:18:51,172|2|300|192.168.220.1|get|system-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-05 18:18:54,550|3|300|192.168.220.1|get|system-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-05 18:18:57,715|2|300|192.168.220.1|get|system-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-05 18:18:57,881|2|300|192.168.220.1|get|system-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-05 18:19:00,706|2|300|192.168.220.1|get|system-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-05 18:19:03,577|1|300|192.168.220.1|get|system-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-05 18:19:07,349|1|300|192.168.220.1|get|system-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-05 18:19:11,145|2|300|192.168.220.1|get|system-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-05 18:19:14,274|1|300|192.168.220.1|get|system-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-05 18:19:17,861|2|300|192.168.220.1|get|system-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-05 18:19:21,059|3|300|192.168.220.1|get|system-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-05 18:19:24,483|2|300|192.168.220.1|get|system-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-05 18:19:24,959|3|300|192.168.220.1|get|system-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-05 18:19:28,035|2|300|192.168.220.1|get|system-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-05 18:19:31,750|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:19:32,533|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:19:32,886|2|300|192.168.220.1|get|system-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-05 18:19:36,251|2|300|192.168.220.1|get|system-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-05 18:19:39,838|1|300|192.168.220.1|get|system-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-05 18:19:42,790|1|300|192.168.220.1|get|system-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-05 18:19:45,778|3|300|192.168.220.1|get|system-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-05 18:19:48,715|6|300|192.168.220.1|get|system-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-05 18:19:51,789|3|300|192.168.220.1|get|system-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-05 18:19:52,062|1|300|192.168.220.1|get|system-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-05 18:19:57,734|2|300|192.168.220.1|get|system-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-05 18:20:00,725|2|300|192.168.220.1|get|system-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-05 18:20:03,602|2|300|192.168.220.1|get|system-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-05 18:20:06,718|3|300|192.168.220.1|get|system-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-05 18:20:17,438|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:20:29,790|2|300|192.168.220.1|get|infra-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-05 18:20:50,187|3|300|192.168.220.1|get|infra-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-05 18:20:54,361|2|300|192.168.220.1|get|infra-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-05 18:20:58,771|2|300|192.168.220.1|get|infra-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-05 18:21:03,203|2|300|192.168.220.1|get|infra-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-05 18:21:07,952|2|300|192.168.220.1|get|infra-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-05 18:21:12,880|2|300|192.168.220.1|get|infra-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-05 18:21:13,495|2|300|192.168.220.1|get|infra-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-05 18:21:45,108|1|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:22:01,065|1|300|192.168.220.1|get|infra-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-05 18:22:33,670|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:22:34,493|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:23:16,671|3|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:24:47,043|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:25:32,949|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:25:33,670|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:26:15,864|1|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:27:46,227|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:28:32,352|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:28:32,903|1|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:29:17,809|1|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:30:45,438|1|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:31:34,245|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:31:34,767|1|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:32:16,913|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:33:47,345|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:34:33,431|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:34:33,981|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:35:18,912|1|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:36:46,540|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:37:35,278|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:37:35,827|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:38:18,164|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:39:48,457|1|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:40:34,510|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:40:35,050|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:41:17,310|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:42:47,647|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:43:33,693|1|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:43:34,184|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:44:19,216|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:45:46,890|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:46:35,604|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:46:36,151|1|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:47:18,442|1|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:48:48,764|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:49:34,790|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:49:35,302|1|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:50:19,709|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:51:47,978|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:52:36,087|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:52:34,423|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-05 18:53:19,535|1|200|192.168.220.1|listen|1|true|||unknown

View File

@@ -0,0 +1,64 @@
2025-06-09 16:39:25,922|22|300|192.168.220.1|get|gateway-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-09 16:39:41,188|9|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 16:40:41,577|2|300|192.168.220.1|get|system-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-09 16:41:17,686|1|300|192.168.220.1|get|infra-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-09 16:41:46,530|1|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 16:41:53,006|1|300|192.168.220.1|get|bpm-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-09 16:42:09,004|2|300|192.168.220.1|get|system-server-local.yaml|DEFAULT_GROUP|dev||unknown
2025-06-09 16:42:20,740|1|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 16:42:20,907|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 16:42:36,425|1|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 16:44:15,738|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 16:44:51,332|1|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 16:45:06,981|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 16:45:21,746|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 16:47:16,452|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 16:47:52,074|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 16:48:06,267|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 16:48:22,416|1|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 16:50:17,208|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 16:50:52,829|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 16:51:07,178|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 16:51:23,494|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 16:53:17,946|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 16:53:52,122|3|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 16:54:07,789|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 16:54:22,632|1|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 16:56:17,342|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 16:56:52,869|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 16:57:07,111|1|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 16:57:23,402|1|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 16:59:18,086|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 16:59:53,727|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 17:00:07,850|1|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 17:00:24,145|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 17:02:18,884|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 17:02:52,986|1|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 17:03:08,700|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 17:03:23,518|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 17:05:18,225|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 17:05:53,754|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 17:06:07,974|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 17:06:24,294|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 17:08:19,352|1|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 17:08:54,410|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 17:09:08,781|1|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 17:09:25,164|1|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 17:11:19,904|1|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 17:11:53,853|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 17:12:09,711|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 17:12:24,407|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 17:14:19,089|1|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 17:14:54,678|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 17:15:08,919|1|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 17:15:25,225|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 17:17:19,939|1|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 17:17:55,556|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 17:18:09,771|1|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 17:18:26,050|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 17:20:20,862|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 17:20:54,810|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 17:21:10,648|0|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 17:21:25,332|1|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 17:23:20,068|1|200|192.168.220.1|listen|1|true|||unknown
2025-06-09 17:23:55,752|0|200|192.168.220.1|listen|1|true|||unknown

View File

@@ -0,0 +1,288 @@
2025-06-05 18:02:30,587 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-dev.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=19d7cd93eeb85a582c8a6942d499c7f7,oldMd5=
2025-06-05 18:02:30,587 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding-multi.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=
2025-06-05 18:02:30,587 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-router.json+DEFAULT_GROUP+springboot3, newMd5=9794beb09d30bc6b835f2ee870781587,oldMd5=
2025-06-05 18:02:30,587 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-dev.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=6c0ec1ace75d0341a1f83978c864c0b3,oldMd5=
2025-06-05 18:02:30,587 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-router.json+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=9794beb09d30bc6b835f2ee870781587,oldMd5=
2025-06-05 18:02:30,587 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=ce1ca3b6f8431e884aed94ab29be43a9,oldMd5=
2025-06-05 18:02:30,587 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-dev.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=91c29720dfb424916a769201a25200cf,oldMd5=
2025-06-05 18:02:30,587 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg.yaml+DEFAULT_GROUP, newMd5=20596e678c211d4322ead0000c0ffdbc,oldMd5=
2025-06-05 18:02:30,587 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-dev.yaml+DEFAULT_GROUP+springboot3, newMd5=dff588d1a47f42650e691b6621a401a8,oldMd5=
2025-06-05 18:02:30,587 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-dev.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=eeb45ae799de89f4d789139de7a7d12d,oldMd5=
2025-06-05 18:02:30,587 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding.yaml+DEFAULT_GROUP+springboot3, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=
2025-06-05 18:02:30,587 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-dev.yaml+DEFAULT_GROUP, newMd5=98e211c54b43a73f7189d92f1c77f815,oldMd5=
2025-06-05 18:02:30,587 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=2117a96ba08e8fd0f66825e87416af27,oldMd5=
2025-06-05 18:02:30,587 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding-multi.yaml+DEFAULT_GROUP, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=
2025-06-05 18:02:30,587 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-dev.yaml+DEFAULT_GROUP, newMd5=f1d8102a50c7b1f59458e8f9a0112012,oldMd5=
2025-06-05 18:02:30,587 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg.yaml+DEFAULT_GROUP+springboot3, newMd5=3a9678386fcd1b29874f358115b209d3,oldMd5=
2025-06-05 18:02:30,587 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-dev.yaml+DEFAULT_GROUP+springboot3, newMd5=19d7cd93eeb85a582c8a6942d499c7f7,oldMd5=
2025-06-05 18:02:30,587 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-router.json+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=be6548051d99309d7fa5ac4398404201,oldMd5=
2025-06-05 18:02:30,587 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding-multi.yaml+DEFAULT_GROUP+springboot3, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=
2025-06-05 18:02:30,587 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=
2025-06-05 18:02:30,588 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding.yaml+DEFAULT_GROUP, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=
2025-06-05 18:02:30,588 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=
2025-06-05 18:02:30,588 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding-multi.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=
2025-06-05 18:02:30,588 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-router.json+DEFAULT_GROUP, newMd5=856da7f7ff7931c6b1932e89d87b83ba,oldMd5=
2025-06-05 18:02:30,643 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-dev.yaml+DEFAULT_GROUP, newMd5=98e211c54b43a73f7189d92f1c77f815,oldMd5=,lastModifiedTs=1718093595000
2025-06-05 18:02:30,645 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-dev.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=eeb45ae799de89f4d789139de7a7d12d,oldMd5=,lastModifiedTs=1689565761000
2025-06-05 18:02:30,646 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-dev.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=19d7cd93eeb85a582c8a6942d499c7f7,oldMd5=,lastModifiedTs=1718094372000
2025-06-05 18:02:30,648 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-dev.yaml+DEFAULT_GROUP+springboot3, newMd5=19d7cd93eeb85a582c8a6942d499c7f7,oldMd5=,lastModifiedTs=1719040317000
2025-06-05 18:02:30,649 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding.yaml+DEFAULT_GROUP, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=,lastModifiedTs=1659849237000
2025-06-05 18:02:30,649 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-router.json+DEFAULT_GROUP, newMd5=856da7f7ff7931c6b1932e89d87b83ba,oldMd5=,lastModifiedTs=1747777269000
2025-06-05 18:02:30,649 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-router.json+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=9794beb09d30bc6b835f2ee870781587,oldMd5=,lastModifiedTs=1718094356000
2025-06-05 18:02:30,650 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=,lastModifiedTs=1689559506000
2025-06-05 18:02:30,651 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding-multi.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=,lastModifiedTs=1689559506000
2025-06-05 18:02:30,649 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-router.json+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=be6548051d99309d7fa5ac4398404201,oldMd5=,lastModifiedTs=1689559506000
2025-06-05 18:02:30,653 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=ce1ca3b6f8431e884aed94ab29be43a9,oldMd5=,lastModifiedTs=1718094251000
2025-06-05 18:02:30,650 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-router.json+DEFAULT_GROUP+springboot3, newMd5=9794beb09d30bc6b835f2ee870781587,oldMd5=,lastModifiedTs=1719040317000
2025-06-05 18:02:30,654 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-dev.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=91c29720dfb424916a769201a25200cf,oldMd5=,lastModifiedTs=1718094286000
2025-06-05 18:02:30,655 INFO [dump-all-ok] jeecg-gateway-router.json+DEFAULT_GROUP, 1719040317000, length=1127,md5UTF8=9794beb09d30bc6b835f2ee870781587
2025-06-05 18:02:30,650 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=,lastModifiedTs=1709169012000
2025-06-05 18:02:30,650 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding.yaml+DEFAULT_GROUP+springboot3, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=,lastModifiedTs=1719040317000
2025-06-05 18:02:30,651 INFO [dump-all-ok] jeecg-gateway-router.json+DEFAULT_GROUP, 1747777269000, length=1193,md5UTF8=856da7f7ff7931c6b1932e89d87b83ba
2025-06-05 18:02:30,651 INFO [dump-all-ok] jeecg-gateway-dev.yaml+DEFAULT_GROUP, 1718093595000, length=238,md5UTF8=98e211c54b43a73f7189d92f1c77f815
2025-06-05 18:02:30,651 INFO [dump-all-ok] jeecg-sharding.yaml+JEECGDEV_GROUP, 1689559506000, length=1056,md5UTF8=a93fa455c32cd37ca84631d2bbe13005
2025-06-05 18:02:30,651 INFO [dump-all-ok] jeecg-sharding.yaml+DEFAULT_GROUP, 1659849237000, length=1056,md5UTF8=a93fa455c32cd37ca84631d2bbe13005
2025-06-05 18:02:30,651 INFO [dump-all-ok] jeecg-gateway-router.json+DEFAULT_GROUP, 1718094356000, length=1127,md5UTF8=9794beb09d30bc6b835f2ee870781587
2025-06-05 18:02:30,652 INFO [dump-all-ok] jeecg-gateway-dev.yaml+JEECGDEV_GROUP, 1689565761000, length=206,md5UTF8=eeb45ae799de89f4d789139de7a7d12d
2025-06-05 18:02:30,652 INFO [dump-all-ok] jeecg-gateway-dev.yaml+DEFAULT_GROUP, 1719040317000, length=256,md5UTF8=19d7cd93eeb85a582c8a6942d499c7f7
2025-06-05 18:02:30,652 INFO [dump-all-ok] jeecg-gateway-dev.yaml+DEFAULT_GROUP, 1718094372000, length=256,md5UTF8=19d7cd93eeb85a582c8a6942d499c7f7
2025-06-05 18:02:30,652 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding-multi.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=,lastModifiedTs=1709169012000
2025-06-05 18:02:30,652 INFO [dump-all-ok] jeecg-sharding-multi.yaml+JEECGDEV_GROUP, 1689559506000, length=1980,md5UTF8=0fc2b030ca8c0008f148c84ecbd2a8c7
2025-06-05 18:02:30,652 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding-multi.yaml+DEFAULT_GROUP, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=,lastModifiedTs=1659848632000
2025-06-05 18:02:30,653 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg.yaml+DEFAULT_GROUP+springboot3, newMd5=3a9678386fcd1b29874f358115b209d3,oldMd5=,lastModifiedTs=1747282418000
2025-06-05 18:02:30,653 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding-multi.yaml+DEFAULT_GROUP+springboot3, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=,lastModifiedTs=1719040317000
2025-06-05 18:02:30,653 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg.yaml+DEFAULT_GROUP, newMd5=20596e678c211d4322ead0000c0ffdbc,oldMd5=,lastModifiedTs=1747619517000
2025-06-05 18:02:30,653 INFO [dump-all-ok] jeecg-gateway-router.json+JEECGDEV_GROUP, 1689559506000, length=1028,md5UTF8=be6548051d99309d7fa5ac4398404201
2025-06-05 18:02:30,654 INFO [dump-all-ok] jeecg.yaml+DEFAULT_GROUP, 1718094251000, length=2719,md5UTF8=ce1ca3b6f8431e884aed94ab29be43a9
2025-06-05 18:02:30,655 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-dev.yaml+DEFAULT_GROUP, newMd5=f1d8102a50c7b1f59458e8f9a0112012,oldMd5=,lastModifiedTs=1747627736000
2025-06-05 18:02:30,655 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-dev.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=6c0ec1ace75d0341a1f83978c864c0b3,oldMd5=,lastModifiedTs=1689565789000
2025-06-05 18:02:30,655 INFO [dump-all-ok] jeecg-dev.yaml+DEFAULT_GROUP, 1718094286000, length=4627,md5UTF8=91c29720dfb424916a769201a25200cf
2025-06-05 18:02:30,655 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-dev.yaml+DEFAULT_GROUP+springboot3, newMd5=dff588d1a47f42650e691b6621a401a8,oldMd5=,lastModifiedTs=1747619281000
2025-06-05 18:02:30,656 INFO [dump-all-ok] jeecg-sharding.yaml+DEFAULT_GROUP, 1709169012000, length=1056,md5UTF8=a93fa455c32cd37ca84631d2bbe13005
2025-06-05 18:02:30,656 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=2117a96ba08e8fd0f66825e87416af27,oldMd5=,lastModifiedTs=1689559506000
2025-06-05 18:02:30,657 INFO [dump-all-ok] jeecg-sharding.yaml+DEFAULT_GROUP, 1719040317000, length=1056,md5UTF8=a93fa455c32cd37ca84631d2bbe13005
2025-06-05 18:02:30,663 INFO [dump-all-ok] jeecg-sharding-multi.yaml+DEFAULT_GROUP, 1709169012000, length=1980,md5UTF8=0fc2b030ca8c0008f148c84ecbd2a8c7
2025-06-05 18:02:30,666 INFO [dump-all-ok] jeecg-sharding-multi.yaml+DEFAULT_GROUP, 1659848632000, length=1980,md5UTF8=0fc2b030ca8c0008f148c84ecbd2a8c7
2025-06-05 18:02:30,666 INFO [dump-all-ok] jeecg.yaml+DEFAULT_GROUP, 1747282418000, length=2776,md5UTF8=3a9678386fcd1b29874f358115b209d3
2025-06-05 18:02:30,667 INFO [dump-all-ok] jeecg-sharding-multi.yaml+DEFAULT_GROUP, 1719040317000, length=1980,md5UTF8=0fc2b030ca8c0008f148c84ecbd2a8c7
2025-06-05 18:02:30,668 INFO [dump-all-ok] jeecg.yaml+DEFAULT_GROUP, 1747619517000, length=2688,md5UTF8=20596e678c211d4322ead0000c0ffdbc
2025-06-05 18:02:30,669 INFO [dump-all-ok] jeecg-dev.yaml+DEFAULT_GROUP, 1747627736000, length=4462,md5UTF8=f1d8102a50c7b1f59458e8f9a0112012
2025-06-05 18:02:30,670 INFO [dump-all-ok] jeecg-dev.yaml+JEECGDEV_GROUP, 1689565789000, length=4092,md5UTF8=6c0ec1ace75d0341a1f83978c864c0b3
2025-06-05 18:02:30,671 INFO [dump-all-ok] jeecg-dev.yaml+DEFAULT_GROUP, 1747619281000, length=4455,md5UTF8=dff588d1a47f42650e691b6621a401a8
2025-06-05 18:02:30,672 INFO [dump-all-ok] jeecg.yaml+JEECGDEV_GROUP, 1689559506000, length=2563,md5UTF8=2117a96ba08e8fd0f66825e87416af27
2025-06-05 18:02:49,242 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=
2025-06-05 18:02:49,242 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-dev.yaml+DEFAULT_GROUP+springboot3, newMd5=dff588d1a47f42650e691b6621a401a8,oldMd5=
2025-06-05 18:02:49,242 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=2117a96ba08e8fd0f66825e87416af27,oldMd5=
2025-06-05 18:02:49,241 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding-multi.yaml+DEFAULT_GROUP+springboot3, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=
2025-06-05 18:02:49,241 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding-multi.yaml+DEFAULT_GROUP, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=
2025-06-05 18:02:49,241 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-router.json+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=be6548051d99309d7fa5ac4398404201,oldMd5=
2025-06-05 18:02:49,242 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-dev.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=91c29720dfb424916a769201a25200cf,oldMd5=
2025-06-05 18:02:49,243 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding-multi.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=
2025-06-05 18:02:49,242 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-dev.yaml+DEFAULT_GROUP, newMd5=f1d8102a50c7b1f59458e8f9a0112012,oldMd5=
2025-06-05 18:02:49,242 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding.yaml+DEFAULT_GROUP, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=
2025-06-05 18:02:49,242 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg.yaml+DEFAULT_GROUP+springboot3, newMd5=3a9678386fcd1b29874f358115b209d3,oldMd5=
2025-06-05 18:02:49,242 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding.yaml+DEFAULT_GROUP+springboot3, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=
2025-06-05 18:02:49,241 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=
2025-06-05 18:02:49,242 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-router.json+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=9794beb09d30bc6b835f2ee870781587,oldMd5=
2025-06-05 18:02:49,241 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding-multi.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=
2025-06-05 18:02:49,241 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-dev.yaml+DEFAULT_GROUP, newMd5=98e211c54b43a73f7189d92f1c77f815,oldMd5=
2025-06-05 18:02:49,241 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg.yaml+DEFAULT_GROUP, newMd5=20596e678c211d4322ead0000c0ffdbc,oldMd5=
2025-06-05 18:02:49,241 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-dev.yaml+DEFAULT_GROUP+springboot3, newMd5=19d7cd93eeb85a582c8a6942d499c7f7,oldMd5=
2025-06-05 18:02:49,243 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=ce1ca3b6f8431e884aed94ab29be43a9,oldMd5=
2025-06-05 18:02:49,243 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-router.json+DEFAULT_GROUP+springboot3, newMd5=9794beb09d30bc6b835f2ee870781587,oldMd5=
2025-06-05 18:02:49,242 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-dev.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=19d7cd93eeb85a582c8a6942d499c7f7,oldMd5=
2025-06-05 18:02:49,242 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-dev.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=6c0ec1ace75d0341a1f83978c864c0b3,oldMd5=
2025-06-05 18:02:49,242 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-router.json+DEFAULT_GROUP, newMd5=856da7f7ff7931c6b1932e89d87b83ba,oldMd5=
2025-06-05 18:02:49,242 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-dev.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=eeb45ae799de89f4d789139de7a7d12d,oldMd5=
2025-06-05 18:02:49,264 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-dev.yaml+DEFAULT_GROUP, newMd5=98e211c54b43a73f7189d92f1c77f815,oldMd5=,lastModifiedTs=1718093595000
2025-06-05 18:02:49,265 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-dev.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=19d7cd93eeb85a582c8a6942d499c7f7,oldMd5=,lastModifiedTs=1718094372000
2025-06-05 18:02:49,265 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-dev.yaml+DEFAULT_GROUP+springboot3, newMd5=19d7cd93eeb85a582c8a6942d499c7f7,oldMd5=,lastModifiedTs=1719040317000
2025-06-05 18:02:49,270 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-dev.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=eeb45ae799de89f4d789139de7a7d12d,oldMd5=,lastModifiedTs=1689565761000
2025-06-05 18:02:49,267 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=,lastModifiedTs=1689559506000
2025-06-05 18:02:49,269 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding.yaml+DEFAULT_GROUP+springboot3, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=,lastModifiedTs=1719040317000
2025-06-05 18:02:49,269 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding.yaml+DEFAULT_GROUP, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=,lastModifiedTs=1659849237000
2025-06-05 18:02:49,270 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-router.json+DEFAULT_GROUP+springboot3, newMd5=9794beb09d30bc6b835f2ee870781587,oldMd5=,lastModifiedTs=1719040317000
2025-06-05 18:02:49,276 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-dev.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=91c29720dfb424916a769201a25200cf,oldMd5=,lastModifiedTs=1718094286000
2025-06-05 18:02:49,270 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding-multi.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=,lastModifiedTs=1709169012000
2025-06-05 18:02:49,277 INFO [dump-all-ok] jeecg-sharding.yaml+JEECGDEV_GROUP, 1689559506000, length=1056,md5UTF8=a93fa455c32cd37ca84631d2bbe13005
2025-06-05 18:02:49,271 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=,lastModifiedTs=1709169012000
2025-06-05 18:02:49,272 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-router.json+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=be6548051d99309d7fa5ac4398404201,oldMd5=,lastModifiedTs=1689559506000
2025-06-05 18:02:49,272 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-router.json+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=9794beb09d30bc6b835f2ee870781587,oldMd5=,lastModifiedTs=1718094356000
2025-06-05 18:02:49,272 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding-multi.yaml+DEFAULT_GROUP+springboot3, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=,lastModifiedTs=1719040317000
2025-06-05 18:02:49,273 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=ce1ca3b6f8431e884aed94ab29be43a9,oldMd5=,lastModifiedTs=1718094251000
2025-06-05 18:02:49,273 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-router.json+DEFAULT_GROUP, newMd5=856da7f7ff7931c6b1932e89d87b83ba,oldMd5=,lastModifiedTs=1747777269000
2025-06-05 18:02:49,273 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=2117a96ba08e8fd0f66825e87416af27,oldMd5=,lastModifiedTs=1689559506000
2025-06-05 18:02:49,273 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding-multi.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=,lastModifiedTs=1689559506000
2025-06-05 18:02:49,274 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding-multi.yaml+DEFAULT_GROUP, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=,lastModifiedTs=1659848632000
2025-06-05 18:02:49,274 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg.yaml+DEFAULT_GROUP+springboot3, newMd5=3a9678386fcd1b29874f358115b209d3,oldMd5=,lastModifiedTs=1747282418000
2025-06-05 18:02:49,275 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-dev.yaml+DEFAULT_GROUP+springboot3, newMd5=dff588d1a47f42650e691b6621a401a8,oldMd5=,lastModifiedTs=1747619281000
2025-06-05 18:02:49,275 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg.yaml+DEFAULT_GROUP, newMd5=20596e678c211d4322ead0000c0ffdbc,oldMd5=,lastModifiedTs=1747619517000
2025-06-05 18:02:49,276 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-dev.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=6c0ec1ace75d0341a1f83978c864c0b3,oldMd5=,lastModifiedTs=1689565789000
2025-06-05 18:02:49,276 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-dev.yaml+DEFAULT_GROUP, newMd5=f1d8102a50c7b1f59458e8f9a0112012,oldMd5=,lastModifiedTs=1747627736000
2025-06-05 18:02:49,277 INFO [dump-all-ok] jeecg-dev.yaml+DEFAULT_GROUP, 1718094286000, length=4627,md5UTF8=91c29720dfb424916a769201a25200cf
2025-06-05 18:02:49,277 INFO [dump-all-ok] jeecg-sharding.yaml+DEFAULT_GROUP, 1719040317000, length=1056,md5UTF8=a93fa455c32cd37ca84631d2bbe13005
2025-06-05 18:02:49,277 INFO [dump-all-ok] jeecg-sharding.yaml+DEFAULT_GROUP, 1659849237000, length=1056,md5UTF8=a93fa455c32cd37ca84631d2bbe13005
2025-06-05 18:02:49,277 INFO [dump-all-ok] jeecg-gateway-dev.yaml+DEFAULT_GROUP, 1718094372000, length=256,md5UTF8=19d7cd93eeb85a582c8a6942d499c7f7
2025-06-05 18:02:49,277 INFO [dump-all-ok] jeecg-gateway-dev.yaml+JEECGDEV_GROUP, 1689565761000, length=206,md5UTF8=eeb45ae799de89f4d789139de7a7d12d
2025-06-05 18:02:49,277 INFO [dump-all-ok] jeecg-gateway-router.json+DEFAULT_GROUP, 1719040317000, length=1127,md5UTF8=9794beb09d30bc6b835f2ee870781587
2025-06-05 18:02:49,277 INFO [dump-all-ok] jeecg-gateway-dev.yaml+DEFAULT_GROUP, 1718093595000, length=238,md5UTF8=98e211c54b43a73f7189d92f1c77f815
2025-06-05 18:02:49,277 INFO [dump-all-ok] jeecg-sharding-multi.yaml+DEFAULT_GROUP, 1709169012000, length=1980,md5UTF8=0fc2b030ca8c0008f148c84ecbd2a8c7
2025-06-05 18:02:49,278 INFO [dump-all-ok] jeecg-sharding.yaml+DEFAULT_GROUP, 1709169012000, length=1056,md5UTF8=a93fa455c32cd37ca84631d2bbe13005
2025-06-05 18:02:49,279 INFO [dump-all-ok] jeecg-gateway-dev.yaml+DEFAULT_GROUP, 1719040317000, length=256,md5UTF8=19d7cd93eeb85a582c8a6942d499c7f7
2025-06-05 18:02:49,279 INFO [dump-all-ok] jeecg-gateway-router.json+JEECGDEV_GROUP, 1689559506000, length=1028,md5UTF8=be6548051d99309d7fa5ac4398404201
2025-06-05 18:02:49,280 INFO [dump-all-ok] jeecg-gateway-router.json+DEFAULT_GROUP, 1718094356000, length=1127,md5UTF8=9794beb09d30bc6b835f2ee870781587
2025-06-05 18:02:49,281 INFO [dump-all-ok] jeecg-sharding-multi.yaml+DEFAULT_GROUP, 1719040317000, length=1980,md5UTF8=0fc2b030ca8c0008f148c84ecbd2a8c7
2025-06-05 18:02:49,281 INFO [dump-all-ok] jeecg.yaml+DEFAULT_GROUP, 1718094251000, length=2719,md5UTF8=ce1ca3b6f8431e884aed94ab29be43a9
2025-06-05 18:02:49,283 INFO [dump-all-ok] jeecg-gateway-router.json+DEFAULT_GROUP, 1747777269000, length=1193,md5UTF8=856da7f7ff7931c6b1932e89d87b83ba
2025-06-05 18:02:49,283 INFO [dump-all-ok] jeecg.yaml+JEECGDEV_GROUP, 1689559506000, length=2563,md5UTF8=2117a96ba08e8fd0f66825e87416af27
2025-06-05 18:02:49,284 INFO [dump-all-ok] jeecg-sharding-multi.yaml+JEECGDEV_GROUP, 1689559506000, length=1980,md5UTF8=0fc2b030ca8c0008f148c84ecbd2a8c7
2025-06-05 18:02:49,284 INFO [dump-all-ok] jeecg-sharding-multi.yaml+DEFAULT_GROUP, 1659848632000, length=1980,md5UTF8=0fc2b030ca8c0008f148c84ecbd2a8c7
2025-06-05 18:02:49,285 INFO [dump-all-ok] jeecg.yaml+DEFAULT_GROUP, 1747282418000, length=2776,md5UTF8=3a9678386fcd1b29874f358115b209d3
2025-06-05 18:02:49,286 INFO [dump-all-ok] jeecg-dev.yaml+DEFAULT_GROUP, 1747619281000, length=4455,md5UTF8=dff588d1a47f42650e691b6621a401a8
2025-06-05 18:02:49,286 INFO [dump-all-ok] jeecg.yaml+DEFAULT_GROUP, 1747619517000, length=2688,md5UTF8=20596e678c211d4322ead0000c0ffdbc
2025-06-05 18:02:49,287 INFO [dump-all-ok] jeecg-dev.yaml+JEECGDEV_GROUP, 1689565789000, length=4092,md5UTF8=6c0ec1ace75d0341a1f83978c864c0b3
2025-06-05 18:02:49,287 INFO [dump-all-ok] jeecg-dev.yaml+DEFAULT_GROUP, 1747627736000, length=4462,md5UTF8=f1d8102a50c7b1f59458e8f9a0112012

View File

@@ -0,0 +1,576 @@
2025-06-09 16:19:27,882 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=2117a96ba08e8fd0f66825e87416af27,oldMd5=
2025-06-09 16:19:27,883 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-router.json+DEFAULT_GROUP+springboot3, newMd5=9794beb09d30bc6b835f2ee870781587,oldMd5=
2025-06-09 16:19:27,883 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=ce1ca3b6f8431e884aed94ab29be43a9,oldMd5=
2025-06-09 16:19:27,883 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding-multi.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=
2025-06-09 16:19:27,882 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg.yaml+DEFAULT_GROUP+springboot3, newMd5=3a9678386fcd1b29874f358115b209d3,oldMd5=
2025-06-09 16:19:27,882 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-dev.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=91c29720dfb424916a769201a25200cf,oldMd5=
2025-06-09 16:19:27,882 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=
2025-06-09 16:19:27,882 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-dev.yaml+DEFAULT_GROUP, newMd5=f1d8102a50c7b1f59458e8f9a0112012,oldMd5=
2025-06-09 16:19:27,882 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-router.json+DEFAULT_GROUP, newMd5=856da7f7ff7931c6b1932e89d87b83ba,oldMd5=
2025-06-09 16:19:27,882 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding.yaml+DEFAULT_GROUP, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=
2025-06-09 16:19:27,882 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-dev.yaml+DEFAULT_GROUP+springboot3, newMd5=19d7cd93eeb85a582c8a6942d499c7f7,oldMd5=
2025-06-09 16:19:27,882 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-dev.yaml+DEFAULT_GROUP, newMd5=98e211c54b43a73f7189d92f1c77f815,oldMd5=
2025-06-09 16:19:27,882 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=
2025-06-09 16:19:27,882 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-dev.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=eeb45ae799de89f4d789139de7a7d12d,oldMd5=
2025-06-09 16:19:27,882 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-dev.yaml+DEFAULT_GROUP+springboot3, newMd5=dff588d1a47f42650e691b6621a401a8,oldMd5=
2025-06-09 16:19:27,916 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-dev.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=eeb45ae799de89f4d789139de7a7d12d,oldMd5=,lastModifiedTs=1689565761000
2025-06-09 16:19:27,882 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-dev.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=6c0ec1ace75d0341a1f83978c864c0b3,oldMd5=
2025-06-09 16:19:27,917 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding.yaml+DEFAULT_GROUP, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=,lastModifiedTs=1659849237000
2025-06-09 16:19:27,882 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding-multi.yaml+DEFAULT_GROUP, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=
2025-06-09 16:19:27,882 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding.yaml+DEFAULT_GROUP+springboot3, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=
2025-06-09 16:19:27,882 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-dev.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=19d7cd93eeb85a582c8a6942d499c7f7,oldMd5=
2025-06-09 16:19:27,882 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding-multi.yaml+DEFAULT_GROUP+springboot3, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=
2025-06-09 16:19:27,922 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding-multi.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=,lastModifiedTs=1689559506000
2025-06-09 16:19:27,882 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-router.json+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=be6548051d99309d7fa5ac4398404201,oldMd5=
2025-06-09 16:19:27,882 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding-multi.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=
2025-06-09 16:19:27,882 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-router.json+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=9794beb09d30bc6b835f2ee870781587,oldMd5=
2025-06-09 16:19:27,882 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg.yaml+DEFAULT_GROUP, newMd5=20596e678c211d4322ead0000c0ffdbc,oldMd5=
2025-06-09 16:19:27,926 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding-multi.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=,lastModifiedTs=1709169012000
2025-06-09 16:19:27,916 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-dev.yaml+DEFAULT_GROUP, newMd5=98e211c54b43a73f7189d92f1c77f815,oldMd5=,lastModifiedTs=1718093595000
2025-06-09 16:19:27,927 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg.yaml+DEFAULT_GROUP, newMd5=20596e678c211d4322ead0000c0ffdbc,oldMd5=,lastModifiedTs=1747619517000
2025-06-09 16:19:27,917 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=,lastModifiedTs=1709169012000
2025-06-09 16:19:27,917 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-dev.yaml+DEFAULT_GROUP+springboot3, newMd5=19d7cd93eeb85a582c8a6942d499c7f7,oldMd5=,lastModifiedTs=1719040317000
2025-06-09 16:19:27,919 INFO [dump-all-ok] jeecg-gateway-dev.yaml+JEECGDEV_GROUP, 1689565761000, length=206,md5UTF8=eeb45ae799de89f4d789139de7a7d12d
2025-06-09 16:19:27,919 INFO [dump-all-ok] jeecg-sharding.yaml+DEFAULT_GROUP, 1659849237000, length=1056,md5UTF8=a93fa455c32cd37ca84631d2bbe13005
2025-06-09 16:19:27,920 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-router.json+DEFAULT_GROUP+springboot3, newMd5=9794beb09d30bc6b835f2ee870781587,oldMd5=,lastModifiedTs=1719040317000
2025-06-09 16:19:27,921 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-router.json+DEFAULT_GROUP, newMd5=856da7f7ff7931c6b1932e89d87b83ba,oldMd5=,lastModifiedTs=1747777269000
2025-06-09 16:19:27,922 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=,lastModifiedTs=1689559506000
2025-06-09 16:19:27,922 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=ce1ca3b6f8431e884aed94ab29be43a9,oldMd5=,lastModifiedTs=1718094251000
2025-06-09 16:19:27,923 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=2117a96ba08e8fd0f66825e87416af27,oldMd5=,lastModifiedTs=1689559506000
2025-06-09 16:19:27,923 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-dev.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=19d7cd93eeb85a582c8a6942d499c7f7,oldMd5=,lastModifiedTs=1718094372000
2025-06-09 16:19:27,923 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding.yaml+DEFAULT_GROUP+springboot3, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=,lastModifiedTs=1719040317000
2025-06-09 16:19:27,923 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding-multi.yaml+DEFAULT_GROUP, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=,lastModifiedTs=1659848632000
2025-06-09 16:19:27,923 INFO [dump-all-ok] jeecg-sharding-multi.yaml+JEECGDEV_GROUP, 1689559506000, length=1980,md5UTF8=0fc2b030ca8c0008f148c84ecbd2a8c7
2025-06-09 16:19:27,923 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-dev.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=91c29720dfb424916a769201a25200cf,oldMd5=,lastModifiedTs=1718094286000
2025-06-09 16:19:27,924 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-dev.yaml+DEFAULT_GROUP+springboot3, newMd5=dff588d1a47f42650e691b6621a401a8,oldMd5=,lastModifiedTs=1747619281000
2025-06-09 16:19:27,924 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding-multi.yaml+DEFAULT_GROUP+springboot3, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=,lastModifiedTs=1719040317000
2025-06-09 16:19:27,924 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-dev.yaml+DEFAULT_GROUP, newMd5=f1d8102a50c7b1f59458e8f9a0112012,oldMd5=,lastModifiedTs=1747627736000
2025-06-09 16:19:27,925 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-dev.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=6c0ec1ace75d0341a1f83978c864c0b3,oldMd5=,lastModifiedTs=1689565789000
2025-06-09 16:19:27,925 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-router.json+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=be6548051d99309d7fa5ac4398404201,oldMd5=,lastModifiedTs=1689559506000
2025-06-09 16:19:27,925 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg.yaml+DEFAULT_GROUP+springboot3, newMd5=3a9678386fcd1b29874f358115b209d3,oldMd5=,lastModifiedTs=1747282418000
2025-06-09 16:19:27,926 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-router.json+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=9794beb09d30bc6b835f2ee870781587,oldMd5=,lastModifiedTs=1718094356000
2025-06-09 16:19:27,926 INFO [dump-all-ok] jeecg-sharding-multi.yaml+DEFAULT_GROUP, 1709169012000, length=1980,md5UTF8=0fc2b030ca8c0008f148c84ecbd2a8c7
2025-06-09 16:19:27,927 INFO [dump-all-ok] jeecg-gateway-dev.yaml+DEFAULT_GROUP, 1718093595000, length=238,md5UTF8=98e211c54b43a73f7189d92f1c77f815
2025-06-09 16:19:27,928 INFO [dump-all-ok] jeecg.yaml+DEFAULT_GROUP, 1747619517000, length=2688,md5UTF8=20596e678c211d4322ead0000c0ffdbc
2025-06-09 16:19:27,929 INFO [dump-all-ok] jeecg-sharding.yaml+DEFAULT_GROUP, 1709169012000, length=1056,md5UTF8=a93fa455c32cd37ca84631d2bbe13005
2025-06-09 16:19:27,930 INFO [dump-all-ok] jeecg-gateway-dev.yaml+DEFAULT_GROUP, 1719040317000, length=256,md5UTF8=19d7cd93eeb85a582c8a6942d499c7f7
2025-06-09 16:19:27,931 INFO [dump-all-ok] jeecg-gateway-router.json+DEFAULT_GROUP, 1719040317000, length=1127,md5UTF8=9794beb09d30bc6b835f2ee870781587
2025-06-09 16:19:27,932 INFO [dump-all-ok] jeecg-gateway-router.json+DEFAULT_GROUP, 1747777269000, length=1193,md5UTF8=856da7f7ff7931c6b1932e89d87b83ba
2025-06-09 16:19:27,933 INFO [dump-all-ok] jeecg-sharding.yaml+JEECGDEV_GROUP, 1689559506000, length=1056,md5UTF8=a93fa455c32cd37ca84631d2bbe13005
2025-06-09 16:19:27,934 INFO [dump-all-ok] jeecg.yaml+DEFAULT_GROUP, 1718094251000, length=2719,md5UTF8=ce1ca3b6f8431e884aed94ab29be43a9
2025-06-09 16:19:27,935 INFO [dump-all-ok] jeecg.yaml+JEECGDEV_GROUP, 1689559506000, length=2563,md5UTF8=2117a96ba08e8fd0f66825e87416af27
2025-06-09 16:19:27,935 INFO [dump-all-ok] jeecg-gateway-dev.yaml+DEFAULT_GROUP, 1718094372000, length=256,md5UTF8=19d7cd93eeb85a582c8a6942d499c7f7
2025-06-09 16:19:27,936 INFO [dump-all-ok] jeecg-sharding.yaml+DEFAULT_GROUP, 1719040317000, length=1056,md5UTF8=a93fa455c32cd37ca84631d2bbe13005
2025-06-09 16:19:27,937 INFO [dump-all-ok] jeecg-sharding-multi.yaml+DEFAULT_GROUP, 1659848632000, length=1980,md5UTF8=0fc2b030ca8c0008f148c84ecbd2a8c7
2025-06-09 16:19:27,938 INFO [dump-all-ok] jeecg-dev.yaml+DEFAULT_GROUP, 1718094286000, length=4627,md5UTF8=91c29720dfb424916a769201a25200cf
2025-06-09 16:19:27,939 INFO [dump-all-ok] jeecg-dev.yaml+DEFAULT_GROUP, 1747619281000, length=4455,md5UTF8=dff588d1a47f42650e691b6621a401a8
2025-06-09 16:19:27,940 INFO [dump-all-ok] jeecg-sharding-multi.yaml+DEFAULT_GROUP, 1719040317000, length=1980,md5UTF8=0fc2b030ca8c0008f148c84ecbd2a8c7
2025-06-09 16:19:27,940 INFO [dump-all-ok] jeecg-dev.yaml+DEFAULT_GROUP, 1747627736000, length=4462,md5UTF8=f1d8102a50c7b1f59458e8f9a0112012
2025-06-09 16:19:27,941 INFO [dump-all-ok] jeecg-dev.yaml+JEECGDEV_GROUP, 1689565789000, length=4092,md5UTF8=6c0ec1ace75d0341a1f83978c864c0b3
2025-06-09 16:19:27,942 INFO [dump-all-ok] jeecg-gateway-router.json+JEECGDEV_GROUP, 1689559506000, length=1028,md5UTF8=be6548051d99309d7fa5ac4398404201
2025-06-09 16:19:27,943 INFO [dump-all-ok] jeecg.yaml+DEFAULT_GROUP, 1747282418000, length=2776,md5UTF8=3a9678386fcd1b29874f358115b209d3
2025-06-09 16:19:27,943 INFO [dump-all-ok] jeecg-gateway-router.json+DEFAULT_GROUP, 1718094356000, length=1127,md5UTF8=9794beb09d30bc6b835f2ee870781587
2025-06-09 16:26:49,469 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding.yaml+DEFAULT_GROUP+springboot3, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=
2025-06-09 16:26:49,470 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding-multi.yaml+DEFAULT_GROUP+springboot3, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=
2025-06-09 16:26:49,470 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-router.json+DEFAULT_GROUP, newMd5=856da7f7ff7931c6b1932e89d87b83ba,oldMd5=
2025-06-09 16:26:49,470 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=ce1ca3b6f8431e884aed94ab29be43a9,oldMd5=
2025-06-09 16:26:49,470 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-dev.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=91c29720dfb424916a769201a25200cf,oldMd5=
2025-06-09 16:26:49,470 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-router.json+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=9794beb09d30bc6b835f2ee870781587,oldMd5=
2025-06-09 16:26:49,470 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding-multi.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=
2025-06-09 16:26:49,470 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-dev.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=eeb45ae799de89f4d789139de7a7d12d,oldMd5=
2025-06-09 16:26:49,470 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-router.json+DEFAULT_GROUP+springboot3, newMd5=9794beb09d30bc6b835f2ee870781587,oldMd5=
2025-06-09 16:26:49,470 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-dev.yaml+DEFAULT_GROUP+springboot3, newMd5=19d7cd93eeb85a582c8a6942d499c7f7,oldMd5=
2025-06-09 16:26:49,470 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=2117a96ba08e8fd0f66825e87416af27,oldMd5=
2025-06-09 16:26:49,470 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-router.json+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=be6548051d99309d7fa5ac4398404201,oldMd5=
2025-06-09 16:26:49,470 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg.yaml+DEFAULT_GROUP+springboot3, newMd5=3a9678386fcd1b29874f358115b209d3,oldMd5=
2025-06-09 16:26:49,470 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-dev.yaml+DEFAULT_GROUP, newMd5=98e211c54b43a73f7189d92f1c77f815,oldMd5=
2025-06-09 16:26:49,470 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding.yaml+DEFAULT_GROUP, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=
2025-06-09 16:26:49,470 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=
2025-06-09 16:26:49,470 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=
2025-06-09 16:26:49,470 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-dev.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=6c0ec1ace75d0341a1f83978c864c0b3,oldMd5=
2025-06-09 16:26:49,470 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding-multi.yaml+DEFAULT_GROUP, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=
2025-06-09 16:26:49,470 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-dev.yaml+DEFAULT_GROUP, newMd5=f1d8102a50c7b1f59458e8f9a0112012,oldMd5=
2025-06-09 16:26:49,470 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-dev.yaml+DEFAULT_GROUP+springboot3, newMd5=dff588d1a47f42650e691b6621a401a8,oldMd5=
2025-06-09 16:26:49,489 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-dev.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=eeb45ae799de89f4d789139de7a7d12d,oldMd5=,lastModifiedTs=1689565761000
2025-06-09 16:26:49,471 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg.yaml+DEFAULT_GROUP, newMd5=20596e678c211d4322ead0000c0ffdbc,oldMd5=
2025-06-09 16:26:49,471 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding-multi.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=
2025-06-09 16:26:49,471 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-dev.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=19d7cd93eeb85a582c8a6942d499c7f7,oldMd5=
2025-06-09 16:26:49,489 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-dev.yaml+DEFAULT_GROUP, newMd5=98e211c54b43a73f7189d92f1c77f815,oldMd5=,lastModifiedTs=1718093595000
2025-06-09 16:26:49,490 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-dev.yaml+DEFAULT_GROUP+springboot3, newMd5=19d7cd93eeb85a582c8a6942d499c7f7,oldMd5=,lastModifiedTs=1719040317000
2025-06-09 16:26:49,492 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding.yaml+DEFAULT_GROUP+springboot3, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=,lastModifiedTs=1719040317000
2025-06-09 16:26:49,492 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=,lastModifiedTs=1709169012000
2025-06-09 16:26:49,494 INFO [dump-all-ok] jeecg-gateway-dev.yaml+JEECGDEV_GROUP, 1689565761000, length=206,md5UTF8=eeb45ae799de89f4d789139de7a7d12d
2025-06-09 16:26:49,494 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding-multi.yaml+DEFAULT_GROUP+springboot3, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=,lastModifiedTs=1719040317000
2025-06-09 16:26:49,492 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-router.json+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=be6548051d99309d7fa5ac4398404201,oldMd5=,lastModifiedTs=1689559506000
2025-06-09 16:26:49,496 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg.yaml+DEFAULT_GROUP, newMd5=20596e678c211d4322ead0000c0ffdbc,oldMd5=,lastModifiedTs=1747619517000
2025-06-09 16:26:49,492 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding.yaml+DEFAULT_GROUP, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=,lastModifiedTs=1659849237000
2025-06-09 16:26:49,494 INFO [dump-all-ok] jeecg-gateway-dev.yaml+DEFAULT_GROUP, 1718093595000, length=238,md5UTF8=98e211c54b43a73f7189d92f1c77f815
2025-06-09 16:26:49,498 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-dev.yaml+DEFAULT_GROUP+springboot3, newMd5=dff588d1a47f42650e691b6621a401a8,oldMd5=,lastModifiedTs=1747619281000
2025-06-09 16:26:49,493 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-dev.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=19d7cd93eeb85a582c8a6942d499c7f7,oldMd5=,lastModifiedTs=1718094372000
2025-06-09 16:26:49,494 INFO [dump-all-ok] jeecg-sharding.yaml+DEFAULT_GROUP, 1719040317000, length=1056,md5UTF8=a93fa455c32cd37ca84631d2bbe13005
2025-06-09 16:26:49,494 INFO [dump-all-ok] jeecg-gateway-dev.yaml+DEFAULT_GROUP, 1719040317000, length=256,md5UTF8=19d7cd93eeb85a582c8a6942d499c7f7
2025-06-09 16:26:49,493 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=,lastModifiedTs=1689559506000
2025-06-09 16:26:49,494 INFO [dump-all-ok] jeecg-sharding.yaml+DEFAULT_GROUP, 1709169012000, length=1056,md5UTF8=a93fa455c32cd37ca84631d2bbe13005
2025-06-09 16:26:49,493 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-router.json+DEFAULT_GROUP, newMd5=856da7f7ff7931c6b1932e89d87b83ba,oldMd5=,lastModifiedTs=1747777269000
2025-06-09 16:26:49,493 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-router.json+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=9794beb09d30bc6b835f2ee870781587,oldMd5=,lastModifiedTs=1718094356000
2025-06-09 16:26:49,494 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding-multi.yaml+DEFAULT_GROUP, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=,lastModifiedTs=1659848632000
2025-06-09 16:26:49,493 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-router.json+DEFAULT_GROUP+springboot3, newMd5=9794beb09d30bc6b835f2ee870781587,oldMd5=,lastModifiedTs=1719040317000
2025-06-09 16:26:49,495 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding-multi.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=,lastModifiedTs=1709169012000
2025-06-09 16:26:49,495 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=2117a96ba08e8fd0f66825e87416af27,oldMd5=,lastModifiedTs=1689559506000
2025-06-09 16:26:49,496 INFO [dump-all-ok] jeecg-sharding-multi.yaml+DEFAULT_GROUP, 1719040317000, length=1980,md5UTF8=0fc2b030ca8c0008f148c84ecbd2a8c7
2025-06-09 16:26:49,496 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg.yaml+DEFAULT_GROUP+springboot3, newMd5=3a9678386fcd1b29874f358115b209d3,oldMd5=,lastModifiedTs=1747282418000
2025-06-09 16:26:49,496 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=ce1ca3b6f8431e884aed94ab29be43a9,oldMd5=,lastModifiedTs=1718094251000
2025-06-09 16:26:49,496 INFO [dump-all-ok] jeecg-gateway-router.json+JEECGDEV_GROUP, 1689559506000, length=1028,md5UTF8=be6548051d99309d7fa5ac4398404201
2025-06-09 16:26:49,497 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding-multi.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=,lastModifiedTs=1689559506000
2025-06-09 16:26:49,497 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-dev.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=91c29720dfb424916a769201a25200cf,oldMd5=,lastModifiedTs=1718094286000
2025-06-09 16:26:49,497 INFO [dump-all-ok] jeecg.yaml+DEFAULT_GROUP, 1747619517000, length=2688,md5UTF8=20596e678c211d4322ead0000c0ffdbc
2025-06-09 16:26:49,497 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-dev.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=6c0ec1ace75d0341a1f83978c864c0b3,oldMd5=,lastModifiedTs=1689565789000
2025-06-09 16:26:49,498 INFO [dump-all-ok] jeecg-sharding.yaml+DEFAULT_GROUP, 1659849237000, length=1056,md5UTF8=a93fa455c32cd37ca84631d2bbe13005
2025-06-09 16:26:49,498 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-dev.yaml+DEFAULT_GROUP, newMd5=f1d8102a50c7b1f59458e8f9a0112012,oldMd5=,lastModifiedTs=1747627736000
2025-06-09 16:26:49,499 INFO [dump-all-ok] jeecg-dev.yaml+DEFAULT_GROUP, 1747619281000, length=4455,md5UTF8=dff588d1a47f42650e691b6621a401a8
2025-06-09 16:26:49,500 INFO [dump-all-ok] jeecg-gateway-dev.yaml+DEFAULT_GROUP, 1718094372000, length=256,md5UTF8=19d7cd93eeb85a582c8a6942d499c7f7
2025-06-09 16:26:49,502 INFO [dump-all-ok] jeecg-sharding.yaml+JEECGDEV_GROUP, 1689559506000, length=1056,md5UTF8=a93fa455c32cd37ca84631d2bbe13005
2025-06-09 16:26:49,503 INFO [dump-all-ok] jeecg-gateway-router.json+DEFAULT_GROUP, 1747777269000, length=1193,md5UTF8=856da7f7ff7931c6b1932e89d87b83ba
2025-06-09 16:26:49,504 INFO [dump-all-ok] jeecg-gateway-router.json+DEFAULT_GROUP, 1718094356000, length=1127,md5UTF8=9794beb09d30bc6b835f2ee870781587
2025-06-09 16:26:49,504 INFO [dump-all-ok] jeecg-sharding-multi.yaml+DEFAULT_GROUP, 1659848632000, length=1980,md5UTF8=0fc2b030ca8c0008f148c84ecbd2a8c7
2025-06-09 16:26:49,505 INFO [dump-all-ok] jeecg-gateway-router.json+DEFAULT_GROUP, 1719040317000, length=1127,md5UTF8=9794beb09d30bc6b835f2ee870781587
2025-06-09 16:26:49,506 INFO [dump-all-ok] jeecg-sharding-multi.yaml+DEFAULT_GROUP, 1709169012000, length=1980,md5UTF8=0fc2b030ca8c0008f148c84ecbd2a8c7
2025-06-09 16:26:49,506 INFO [dump-all-ok] jeecg.yaml+JEECGDEV_GROUP, 1689559506000, length=2563,md5UTF8=2117a96ba08e8fd0f66825e87416af27
2025-06-09 16:26:49,508 INFO [dump-all-ok] jeecg.yaml+DEFAULT_GROUP, 1747282418000, length=2776,md5UTF8=3a9678386fcd1b29874f358115b209d3
2025-06-09 16:26:49,508 INFO [dump-all-ok] jeecg.yaml+DEFAULT_GROUP, 1718094251000, length=2719,md5UTF8=ce1ca3b6f8431e884aed94ab29be43a9
2025-06-09 16:26:49,510 INFO [dump-all-ok] jeecg-sharding-multi.yaml+JEECGDEV_GROUP, 1689559506000, length=1980,md5UTF8=0fc2b030ca8c0008f148c84ecbd2a8c7
2025-06-09 16:26:49,511 INFO [dump-all-ok] jeecg-dev.yaml+DEFAULT_GROUP, 1718094286000, length=4627,md5UTF8=91c29720dfb424916a769201a25200cf
2025-06-09 16:26:49,512 INFO [dump-all-ok] jeecg-dev.yaml+JEECGDEV_GROUP, 1689565789000, length=4092,md5UTF8=6c0ec1ace75d0341a1f83978c864c0b3
2025-06-09 16:26:49,513 INFO [dump-all-ok] jeecg-dev.yaml+DEFAULT_GROUP, 1747627736000, length=4462,md5UTF8=f1d8102a50c7b1f59458e8f9a0112012
2025-06-09 16:35:37,902 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding.yaml+DEFAULT_GROUP, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=
2025-06-09 16:35:37,903 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-router.json+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=be6548051d99309d7fa5ac4398404201,oldMd5=
2025-06-09 16:35:37,903 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding.yaml+DEFAULT_GROUP+springboot3, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=
2025-06-09 16:35:37,902 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-dev.yaml+DEFAULT_GROUP, newMd5=f1d8102a50c7b1f59458e8f9a0112012,oldMd5=
2025-06-09 16:35:37,903 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=ce1ca3b6f8431e884aed94ab29be43a9,oldMd5=
2025-06-09 16:35:37,902 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-dev.yaml+DEFAULT_GROUP+springboot3, newMd5=19d7cd93eeb85a582c8a6942d499c7f7,oldMd5=
2025-06-09 16:35:37,903 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=
2025-06-09 16:35:37,903 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-router.json+DEFAULT_GROUP+springboot3, newMd5=9794beb09d30bc6b835f2ee870781587,oldMd5=
2025-06-09 16:35:37,904 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding-multi.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=
2025-06-09 16:35:37,904 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-dev.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=19d7cd93eeb85a582c8a6942d499c7f7,oldMd5=
2025-06-09 16:35:37,903 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg.yaml+DEFAULT_GROUP, newMd5=20596e678c211d4322ead0000c0ffdbc,oldMd5=
2025-06-09 16:35:37,903 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-router.json+DEFAULT_GROUP, newMd5=856da7f7ff7931c6b1932e89d87b83ba,oldMd5=
2025-06-09 16:35:37,903 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding-multi.yaml+DEFAULT_GROUP+springboot3, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=
2025-06-09 16:35:37,903 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-dev.yaml+DEFAULT_GROUP, newMd5=98e211c54b43a73f7189d92f1c77f815,oldMd5=
2025-06-09 16:35:37,903 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-router.json+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=9794beb09d30bc6b835f2ee870781587,oldMd5=
2025-06-09 16:35:37,902 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg.yaml+DEFAULT_GROUP+springboot3, newMd5=3a9678386fcd1b29874f358115b209d3,oldMd5=
2025-06-09 16:35:37,902 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding-multi.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=
2025-06-09 16:35:37,902 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-dev.yaml+DEFAULT_GROUP+springboot3, newMd5=dff588d1a47f42650e691b6621a401a8,oldMd5=
2025-06-09 16:35:37,902 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding-multi.yaml+DEFAULT_GROUP, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=
2025-06-09 16:35:37,902 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-dev.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=eeb45ae799de89f4d789139de7a7d12d,oldMd5=
2025-06-09 16:35:37,902 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=
2025-06-09 16:35:37,903 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-dev.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=6c0ec1ace75d0341a1f83978c864c0b3,oldMd5=
2025-06-09 16:35:37,903 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-dev.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=91c29720dfb424916a769201a25200cf,oldMd5=
2025-06-09 16:35:37,921 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-dev.yaml+DEFAULT_GROUP+springboot3, newMd5=19d7cd93eeb85a582c8a6942d499c7f7,oldMd5=,lastModifiedTs=1719040317000
2025-06-09 16:35:37,903 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=2117a96ba08e8fd0f66825e87416af27,oldMd5=
2025-06-09 16:35:37,922 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-dev.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=19d7cd93eeb85a582c8a6942d499c7f7,oldMd5=,lastModifiedTs=1718094372000
2025-06-09 16:35:37,923 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-router.json+DEFAULT_GROUP+springboot3, newMd5=9794beb09d30bc6b835f2ee870781587,oldMd5=,lastModifiedTs=1719040317000
2025-06-09 16:35:37,920 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-dev.yaml+DEFAULT_GROUP, newMd5=98e211c54b43a73f7189d92f1c77f815,oldMd5=,lastModifiedTs=1718093595000
2025-06-09 16:35:37,921 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-dev.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=eeb45ae799de89f4d789139de7a7d12d,oldMd5=,lastModifiedTs=1689565761000
2025-06-09 16:35:37,923 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=,lastModifiedTs=1689559506000
2025-06-09 16:35:37,924 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding.yaml+DEFAULT_GROUP+springboot3, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=,lastModifiedTs=1719040317000
2025-06-09 16:35:37,926 INFO [dump-all-ok] jeecg-gateway-dev.yaml+DEFAULT_GROUP, 1718094372000, length=256,md5UTF8=19d7cd93eeb85a582c8a6942d499c7f7
2025-06-09 16:35:37,924 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-router.json+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=be6548051d99309d7fa5ac4398404201,oldMd5=,lastModifiedTs=1689559506000
2025-06-09 16:35:37,928 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding-multi.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=,lastModifiedTs=1689559506000
2025-06-09 16:35:37,925 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-router.json+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=9794beb09d30bc6b835f2ee870781587,oldMd5=,lastModifiedTs=1718094356000
2025-06-09 16:35:37,926 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=,lastModifiedTs=1709169012000
2025-06-09 16:35:37,926 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding.yaml+DEFAULT_GROUP, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=,lastModifiedTs=1659849237000
2025-06-09 16:35:37,926 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-router.json+DEFAULT_GROUP, newMd5=856da7f7ff7931c6b1932e89d87b83ba,oldMd5=,lastModifiedTs=1747777269000
2025-06-09 16:35:37,926 INFO [dump-all-ok] jeecg-sharding.yaml+JEECGDEV_GROUP, 1689559506000, length=1056,md5UTF8=a93fa455c32cd37ca84631d2bbe13005
2025-06-09 16:35:37,926 INFO [dump-all-ok] jeecg-gateway-dev.yaml+DEFAULT_GROUP, 1719040317000, length=256,md5UTF8=19d7cd93eeb85a582c8a6942d499c7f7
2025-06-09 16:35:37,926 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding-multi.yaml+DEFAULT_GROUP+springboot3, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=,lastModifiedTs=1719040317000
2025-06-09 16:35:37,926 INFO [dump-all-ok] jeecg-gateway-router.json+DEFAULT_GROUP, 1719040317000, length=1127,md5UTF8=9794beb09d30bc6b835f2ee870781587
2025-06-09 16:35:37,926 INFO [dump-all-ok] jeecg-sharding.yaml+DEFAULT_GROUP, 1719040317000, length=1056,md5UTF8=a93fa455c32cd37ca84631d2bbe13005
2025-06-09 16:35:37,927 INFO [dump-all-ok] jeecg-gateway-dev.yaml+JEECGDEV_GROUP, 1689565761000, length=206,md5UTF8=eeb45ae799de89f4d789139de7a7d12d
2025-06-09 16:35:37,927 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding-multi.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=,lastModifiedTs=1709169012000
2025-06-09 16:35:37,927 INFO [dump-all-ok] jeecg-gateway-dev.yaml+DEFAULT_GROUP, 1718093595000, length=238,md5UTF8=98e211c54b43a73f7189d92f1c77f815
2025-06-09 16:35:37,927 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding-multi.yaml+DEFAULT_GROUP, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=,lastModifiedTs=1659848632000
2025-06-09 16:35:37,928 INFO [dump-all-ok] jeecg-gateway-router.json+JEECGDEV_GROUP, 1689559506000, length=1028,md5UTF8=be6548051d99309d7fa5ac4398404201
2025-06-09 16:35:37,928 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg.yaml+DEFAULT_GROUP, newMd5=20596e678c211d4322ead0000c0ffdbc,oldMd5=,lastModifiedTs=1747619517000
2025-06-09 16:35:37,928 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg.yaml+DEFAULT_GROUP+springboot3, newMd5=3a9678386fcd1b29874f358115b209d3,oldMd5=,lastModifiedTs=1747282418000
2025-06-09 16:35:37,928 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=ce1ca3b6f8431e884aed94ab29be43a9,oldMd5=,lastModifiedTs=1718094251000
2025-06-09 16:35:37,929 INFO [dump-all-ok] jeecg-sharding-multi.yaml+JEECGDEV_GROUP, 1689559506000, length=1980,md5UTF8=0fc2b030ca8c0008f148c84ecbd2a8c7
2025-06-09 16:35:37,930 INFO [dump-all-ok] jeecg-gateway-router.json+DEFAULT_GROUP, 1718094356000, length=1127,md5UTF8=9794beb09d30bc6b835f2ee870781587
2025-06-09 16:35:37,930 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-dev.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=6c0ec1ace75d0341a1f83978c864c0b3,oldMd5=,lastModifiedTs=1689565789000
2025-06-09 16:35:37,930 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-dev.yaml+DEFAULT_GROUP, newMd5=f1d8102a50c7b1f59458e8f9a0112012,oldMd5=,lastModifiedTs=1747627736000
2025-06-09 16:35:37,930 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=2117a96ba08e8fd0f66825e87416af27,oldMd5=,lastModifiedTs=1689559506000
2025-06-09 16:35:37,931 INFO [dump-all-ok] jeecg-sharding.yaml+DEFAULT_GROUP, 1659849237000, length=1056,md5UTF8=a93fa455c32cd37ca84631d2bbe13005
2025-06-09 16:35:37,931 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-dev.yaml+DEFAULT_GROUP+springboot3, newMd5=dff588d1a47f42650e691b6621a401a8,oldMd5=,lastModifiedTs=1747619281000
2025-06-09 16:35:37,930 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-dev.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=91c29720dfb424916a769201a25200cf,oldMd5=,lastModifiedTs=1718094286000
2025-06-09 16:35:37,931 INFO [dump-all-ok] jeecg-gateway-router.json+DEFAULT_GROUP, 1747777269000, length=1193,md5UTF8=856da7f7ff7931c6b1932e89d87b83ba
2025-06-09 16:35:37,932 INFO [dump-all-ok] jeecg-sharding.yaml+DEFAULT_GROUP, 1709169012000, length=1056,md5UTF8=a93fa455c32cd37ca84631d2bbe13005
2025-06-09 16:35:37,933 INFO [dump-all-ok] jeecg-sharding-multi.yaml+DEFAULT_GROUP, 1719040317000, length=1980,md5UTF8=0fc2b030ca8c0008f148c84ecbd2a8c7
2025-06-09 16:35:37,935 INFO [dump-all-ok] jeecg-sharding-multi.yaml+DEFAULT_GROUP, 1709169012000, length=1980,md5UTF8=0fc2b030ca8c0008f148c84ecbd2a8c7
2025-06-09 16:35:37,936 INFO [dump-all-ok] jeecg-sharding-multi.yaml+DEFAULT_GROUP, 1659848632000, length=1980,md5UTF8=0fc2b030ca8c0008f148c84ecbd2a8c7
2025-06-09 16:35:37,937 INFO [dump-all-ok] jeecg.yaml+DEFAULT_GROUP, 1747619517000, length=2688,md5UTF8=20596e678c211d4322ead0000c0ffdbc
2025-06-09 16:35:37,938 INFO [dump-all-ok] jeecg.yaml+DEFAULT_GROUP, 1747282418000, length=2776,md5UTF8=3a9678386fcd1b29874f358115b209d3
2025-06-09 16:35:37,938 INFO [dump-all-ok] jeecg.yaml+DEFAULT_GROUP, 1718094251000, length=2719,md5UTF8=ce1ca3b6f8431e884aed94ab29be43a9
2025-06-09 16:35:37,939 INFO [dump-all-ok] jeecg-dev.yaml+JEECGDEV_GROUP, 1689565789000, length=4092,md5UTF8=6c0ec1ace75d0341a1f83978c864c0b3
2025-06-09 16:35:37,940 INFO [dump-all-ok] jeecg-dev.yaml+DEFAULT_GROUP, 1747627736000, length=4462,md5UTF8=f1d8102a50c7b1f59458e8f9a0112012
2025-06-09 16:35:37,940 INFO [dump-all-ok] jeecg.yaml+JEECGDEV_GROUP, 1689559506000, length=2563,md5UTF8=2117a96ba08e8fd0f66825e87416af27
2025-06-09 16:35:37,942 INFO [dump-all-ok] jeecg-dev.yaml+DEFAULT_GROUP, 1747619281000, length=4455,md5UTF8=dff588d1a47f42650e691b6621a401a8
2025-06-09 16:35:37,943 INFO [dump-all-ok] jeecg-dev.yaml+DEFAULT_GROUP, 1718094286000, length=4627,md5UTF8=91c29720dfb424916a769201a25200cf
2025-06-09 18:37:35,572 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding-multi.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=
2025-06-09 18:37:35,571 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg.yaml+DEFAULT_GROUP+springboot3, newMd5=3a9678386fcd1b29874f358115b209d3,oldMd5=
2025-06-09 18:37:35,571 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-dev.yaml+DEFAULT_GROUP+springboot3, newMd5=dff588d1a47f42650e691b6621a401a8,oldMd5=
2025-06-09 18:37:35,571 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=
2025-06-09 18:37:35,571 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-dev.yaml+DEFAULT_GROUP+springboot3, newMd5=19d7cd93eeb85a582c8a6942d499c7f7,oldMd5=
2025-06-09 18:37:35,572 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=ce1ca3b6f8431e884aed94ab29be43a9,oldMd5=
2025-06-09 18:37:35,571 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-dev.yaml+DEFAULT_GROUP, newMd5=98e211c54b43a73f7189d92f1c77f815,oldMd5=
2025-06-09 18:37:35,572 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-router.json+DEFAULT_GROUP+springboot3, newMd5=9794beb09d30bc6b835f2ee870781587,oldMd5=
2025-06-09 18:37:35,572 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-dev.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=6c0ec1ace75d0341a1f83978c864c0b3,oldMd5=
2025-06-09 18:37:35,571 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding.yaml+DEFAULT_GROUP+springboot3, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=
2025-06-09 18:37:35,574 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding-multi.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=
2025-06-09 18:37:35,571 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=2117a96ba08e8fd0f66825e87416af27,oldMd5=
2025-06-09 18:37:35,571 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-router.json+DEFAULT_GROUP, newMd5=856da7f7ff7931c6b1932e89d87b83ba,oldMd5=
2025-06-09 18:37:35,571 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding-multi.yaml+DEFAULT_GROUP+springboot3, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=
2025-06-09 18:37:35,571 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding-multi.yaml+DEFAULT_GROUP, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=
2025-06-09 18:37:35,571 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-dev.yaml+DEFAULT_GROUP, newMd5=f1d8102a50c7b1f59458e8f9a0112012,oldMd5=
2025-06-09 18:37:35,571 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-router.json+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=be6548051d99309d7fa5ac4398404201,oldMd5=
2025-06-09 18:37:35,571 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-router.json+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=9794beb09d30bc6b835f2ee870781587,oldMd5=
2025-06-09 18:37:35,571 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-dev.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=19d7cd93eeb85a582c8a6942d499c7f7,oldMd5=
2025-06-09 18:37:35,571 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-gateway-dev.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=eeb45ae799de89f4d789139de7a7d12d,oldMd5=
2025-06-09 18:37:35,571 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-dev.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=91c29720dfb424916a769201a25200cf,oldMd5=
2025-06-09 18:37:35,572 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=
2025-06-09 18:37:35,572 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg.yaml+DEFAULT_GROUP, newMd5=20596e678c211d4322ead0000c0ffdbc,oldMd5=
2025-06-09 18:37:35,572 INFO [dump] md5 changed, save to disk cache ,groupKey=jeecg-sharding.yaml+DEFAULT_GROUP, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=
2025-06-09 18:37:35,620 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding.yaml+DEFAULT_GROUP, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=,lastModifiedTs=1659849237000
2025-06-09 18:37:35,621 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=,lastModifiedTs=1689559506000
2025-06-09 18:37:35,621 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-dev.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=eeb45ae799de89f4d789139de7a7d12d,oldMd5=,lastModifiedTs=1689565761000
2025-06-09 18:37:35,622 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding.yaml+DEFAULT_GROUP+springboot3, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=,lastModifiedTs=1719040317000
2025-06-09 18:37:35,622 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-dev.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=19d7cd93eeb85a582c8a6942d499c7f7,oldMd5=,lastModifiedTs=1718094372000
2025-06-09 18:37:35,623 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=a93fa455c32cd37ca84631d2bbe13005,oldMd5=,lastModifiedTs=1709169012000
2025-06-09 18:37:35,627 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg.yaml+DEFAULT_GROUP, newMd5=20596e678c211d4322ead0000c0ffdbc,oldMd5=,lastModifiedTs=1747619517000
2025-06-09 18:37:35,623 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-router.json+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=9794beb09d30bc6b835f2ee870781587,oldMd5=,lastModifiedTs=1718094356000
2025-06-09 18:37:35,624 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-router.json+DEFAULT_GROUP, newMd5=856da7f7ff7931c6b1932e89d87b83ba,oldMd5=,lastModifiedTs=1747777269000
2025-06-09 18:37:35,625 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-dev.yaml+DEFAULT_GROUP+springboot3, newMd5=19d7cd93eeb85a582c8a6942d499c7f7,oldMd5=,lastModifiedTs=1719040317000
2025-06-09 18:37:35,629 INFO [dump-all-ok] jeecg-gateway-router.json+DEFAULT_GROUP, 1718094356000, length=1127,md5UTF8=9794beb09d30bc6b835f2ee870781587
2025-06-09 18:37:35,624 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding-multi.yaml+DEFAULT_GROUP+springboot3, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=,lastModifiedTs=1719040317000
2025-06-09 18:37:35,624 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-router.json+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=be6548051d99309d7fa5ac4398404201,oldMd5=,lastModifiedTs=1689559506000
2025-06-09 18:37:35,624 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-dev.yaml+DEFAULT_GROUP, newMd5=98e211c54b43a73f7189d92f1c77f815,oldMd5=,lastModifiedTs=1718093595000
2025-06-09 18:37:35,624 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-gateway-router.json+DEFAULT_GROUP+springboot3, newMd5=9794beb09d30bc6b835f2ee870781587,oldMd5=,lastModifiedTs=1719040317000
2025-06-09 18:37:35,625 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding-multi.yaml+DEFAULT_GROUP, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=,lastModifiedTs=1659848632000
2025-06-09 18:37:35,627 INFO [dump-all-ok] jeecg-gateway-dev.yaml+DEFAULT_GROUP, 1718094372000, length=256,md5UTF8=19d7cd93eeb85a582c8a6942d499c7f7
2025-06-09 18:37:35,627 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding-multi.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=,lastModifiedTs=1689559506000
2025-06-09 18:37:35,627 INFO [dump-all-ok] jeecg-gateway-dev.yaml+JEECGDEV_GROUP, 1689565761000, length=206,md5UTF8=eeb45ae799de89f4d789139de7a7d12d
2025-06-09 18:37:35,627 INFO [dump-all-ok] jeecg-sharding.yaml+JEECGDEV_GROUP, 1689559506000, length=1056,md5UTF8=a93fa455c32cd37ca84631d2bbe13005
2025-06-09 18:37:35,627 INFO [dump-all-ok] jeecg-sharding.yaml+DEFAULT_GROUP, 1719040317000, length=1056,md5UTF8=a93fa455c32cd37ca84631d2bbe13005
2025-06-09 18:37:35,627 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-sharding-multi.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=0fc2b030ca8c0008f148c84ecbd2a8c7,oldMd5=,lastModifiedTs=1709169012000
2025-06-09 18:37:35,627 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=ce1ca3b6f8431e884aed94ab29be43a9,oldMd5=,lastModifiedTs=1718094251000
2025-06-09 18:37:35,627 INFO [dump-all-ok] jeecg-sharding.yaml+DEFAULT_GROUP, 1659849237000, length=1056,md5UTF8=a93fa455c32cd37ca84631d2bbe13005
2025-06-09 18:37:35,627 INFO [dump-all-ok] jeecg-sharding.yaml+DEFAULT_GROUP, 1709169012000, length=1056,md5UTF8=a93fa455c32cd37ca84631d2bbe13005
2025-06-09 18:37:35,627 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg.yaml+DEFAULT_GROUP+springboot3, newMd5=3a9678386fcd1b29874f358115b209d3,oldMd5=,lastModifiedTs=1747282418000
2025-06-09 18:37:35,627 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=2117a96ba08e8fd0f66825e87416af27,oldMd5=,lastModifiedTs=1689559506000
2025-06-09 18:37:35,628 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-dev.yaml+DEFAULT_GROUP+springboot3, newMd5=dff588d1a47f42650e691b6621a401a8,oldMd5=,lastModifiedTs=1747619281000
2025-06-09 18:37:35,628 INFO [dump-all-ok] jeecg.yaml+DEFAULT_GROUP, 1747619517000, length=2688,md5UTF8=20596e678c211d4322ead0000c0ffdbc
2025-06-09 18:37:35,628 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-dev.yaml+DEFAULT_GROUP, newMd5=f1d8102a50c7b1f59458e8f9a0112012,oldMd5=,lastModifiedTs=1747627736000
2025-06-09 18:37:35,628 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-dev.yaml+DEFAULT_GROUP+efc4e412-b1a1-498f-ba01-b31807649a9a, newMd5=91c29720dfb424916a769201a25200cf,oldMd5=,lastModifiedTs=1718094286000
2025-06-09 18:37:35,628 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=jeecg-dev.yaml+JEECGDEV_GROUP+ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6, newMd5=6c0ec1ace75d0341a1f83978c864c0b3,oldMd5=,lastModifiedTs=1689565789000
2025-06-09 18:37:35,630 INFO [dump-all-ok] jeecg-gateway-dev.yaml+DEFAULT_GROUP, 1719040317000, length=256,md5UTF8=19d7cd93eeb85a582c8a6942d499c7f7
2025-06-09 18:37:35,630 INFO [dump-all-ok] jeecg-gateway-router.json+DEFAULT_GROUP, 1747777269000, length=1193,md5UTF8=856da7f7ff7931c6b1932e89d87b83ba
2025-06-09 18:37:35,632 INFO [dump-all-ok] jeecg-sharding-multi.yaml+DEFAULT_GROUP, 1719040317000, length=1980,md5UTF8=0fc2b030ca8c0008f148c84ecbd2a8c7
2025-06-09 18:37:35,632 INFO [dump-all-ok] jeecg-gateway-router.json+JEECGDEV_GROUP, 1689559506000, length=1028,md5UTF8=be6548051d99309d7fa5ac4398404201
2025-06-09 18:37:35,633 INFO [dump-all-ok] jeecg-gateway-dev.yaml+DEFAULT_GROUP, 1718093595000, length=238,md5UTF8=98e211c54b43a73f7189d92f1c77f815
2025-06-09 18:37:35,633 INFO [dump-all-ok] jeecg-gateway-router.json+DEFAULT_GROUP, 1719040317000, length=1127,md5UTF8=9794beb09d30bc6b835f2ee870781587
2025-06-09 18:37:35,634 INFO [dump-all-ok] jeecg-sharding-multi.yaml+DEFAULT_GROUP, 1659848632000, length=1980,md5UTF8=0fc2b030ca8c0008f148c84ecbd2a8c7
2025-06-09 18:37:35,635 INFO [dump-all-ok] jeecg-sharding-multi.yaml+JEECGDEV_GROUP, 1689559506000, length=1980,md5UTF8=0fc2b030ca8c0008f148c84ecbd2a8c7
2025-06-09 18:37:35,638 INFO [dump-all-ok] jeecg-sharding-multi.yaml+DEFAULT_GROUP, 1709169012000, length=1980,md5UTF8=0fc2b030ca8c0008f148c84ecbd2a8c7
2025-06-09 18:37:35,638 INFO [dump-all-ok] jeecg.yaml+DEFAULT_GROUP, 1718094251000, length=2719,md5UTF8=ce1ca3b6f8431e884aed94ab29be43a9
2025-06-09 18:37:35,640 INFO [dump-all-ok] jeecg.yaml+DEFAULT_GROUP, 1747282418000, length=2776,md5UTF8=3a9678386fcd1b29874f358115b209d3
2025-06-09 18:37:35,640 INFO [dump-all-ok] jeecg.yaml+JEECGDEV_GROUP, 1689559506000, length=2563,md5UTF8=2117a96ba08e8fd0f66825e87416af27
2025-06-09 18:37:35,641 INFO [dump-all-ok] jeecg-dev.yaml+DEFAULT_GROUP, 1747619281000, length=4455,md5UTF8=dff588d1a47f42650e691b6621a401a8
2025-06-09 18:37:35,643 INFO [dump-all-ok] jeecg-dev.yaml+DEFAULT_GROUP, 1747627736000, length=4462,md5UTF8=f1d8102a50c7b1f59458e8f9a0112012
2025-06-09 18:37:35,643 INFO [dump-all-ok] jeecg-dev.yaml+DEFAULT_GROUP, 1718094286000, length=4627,md5UTF8=91c29720dfb424916a769201a25200cf
2025-06-09 18:37:35,644 INFO [dump-all-ok] jeecg-dev.yaml+JEECGDEV_GROUP, 1689565789000, length=4092,md5UTF8=6c0ec1ace75d0341a1f83978c864c0b3

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,45 @@
2025-06-05 18:09:03,227|2dc99c6b3203|system-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-05 18:09:29,046|2dc99c6b3203|bpm-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-05 18:09:39,059|2dc99c6b3203|infra-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-05 18:09:43,984|2dc99c6b3203|gateway-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-05 18:10:33,786|2dc99c6b3203|system-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-05 18:11:12,914|2dc99c6b3203|infra-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-05 18:13:32,926|2dc99c6b3203|bpm-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-05 18:18:33,916|2dc99c6b3203|system-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-05 18:18:41,831|2dc99c6b3203|system-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-05 18:18:47,625|2dc99c6b3203|system-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-05 18:18:51,170|2dc99c6b3203|system-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-05 18:18:54,548|2dc99c6b3203|system-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-05 18:18:57,713|2dc99c6b3203|system-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-05 18:18:57,879|2dc99c6b3203|system-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-05 18:19:00,704|2dc99c6b3203|system-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-05 18:19:03,575|2dc99c6b3203|system-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-05 18:19:07,347|2dc99c6b3203|system-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-05 18:19:11,143|2dc99c6b3203|system-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-05 18:19:14,273|2dc99c6b3203|system-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-05 18:19:17,859|2dc99c6b3203|system-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-05 18:19:21,056|2dc99c6b3203|system-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-05 18:19:24,481|2dc99c6b3203|system-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-05 18:19:24,956|2dc99c6b3203|system-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-05 18:19:28,033|2dc99c6b3203|system-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-05 18:19:32,884|2dc99c6b3203|system-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-05 18:19:36,249|2dc99c6b3203|system-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-05 18:19:39,837|2dc99c6b3203|system-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-05 18:19:42,789|2dc99c6b3203|system-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-05 18:19:45,776|2dc99c6b3203|system-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-05 18:19:48,710|2dc99c6b3203|system-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-05 18:19:51,787|2dc99c6b3203|system-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-05 18:19:52,061|2dc99c6b3203|system-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-05 18:19:57,732|2dc99c6b3203|system-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-05 18:20:00,723|2dc99c6b3203|system-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-05 18:20:03,600|2dc99c6b3203|system-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-05 18:20:06,716|2dc99c6b3203|system-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-05 18:20:29,788|2dc99c6b3203|infra-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-05 18:20:50,185|2dc99c6b3203|infra-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-05 18:20:54,359|2dc99c6b3203|infra-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-05 18:20:58,769|2dc99c6b3203|infra-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-05 18:21:03,201|2dc99c6b3203|infra-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-05 18:21:07,950|2dc99c6b3203|infra-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-05 18:21:12,878|2dc99c6b3203|infra-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-05 18:21:13,493|2dc99c6b3203|infra-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-05 18:22:01,064|2dc99c6b3203|infra-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc

View File

@@ -0,0 +1,5 @@
2025-06-09 16:39:25,910|2dc99c6b3203|gateway-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-09 16:40:41,575|2dc99c6b3203|system-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-09 16:41:17,685|2dc99c6b3203|infra-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-09 16:41:53,005|2dc99c6b3203|bpm-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc
2025-06-09 16:42:09,003|2dc99c6b3203|system-server-local.yaml|DEFAULT_GROUP|dev|null|-1|pull|not-found|-1|192.168.220.1|false|grpc

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,492 @@
2025-06-06 08:38:54,661 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:39:14,773 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:39:34,629 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:39:55,472 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:40:13,540 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:40:33,575 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:40:53,205 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:41:10,889 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:41:31,431 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:41:51,031 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:42:09,120 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:42:30,228 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:42:49,292 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:43:07,548 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:43:26,311 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:43:47,821 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:44:06,888 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:44:25,628 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:44:46,975 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:45:05,689 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:45:24,764 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:45:45,673 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:46:04,799 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:46:24,196 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:46:42,768 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:47:03,764 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:47:24,186 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:47:43,585 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:48:04,316 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:48:23,085 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:48:42,255 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:49:01,951 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:49:23,872 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:49:48,096 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:50:08,497 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:50:30,663 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:50:52,261 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:51:12,278 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:51:30,879 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:51:56,325 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:52:20,762 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:52:43,068 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:53:04,667 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:53:33,699 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:53:55,202 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:54:14,879 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:54:37,432 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:55:01,578 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:55:19,482 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:55:39,002 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:56:00,473 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:56:20,274 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:56:38,462 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:56:56,899 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:57:17,917 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:57:36,530 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:57:54,935 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:58:16,336 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:58:35,119 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:58:53,575 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:59:15,638 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:59:37,466 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 08:59:58,917 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:00:27,229 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:00:47,766 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:01:06,328 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:01:27,923 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:01:46,964 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:02:05,682 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:02:26,601 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:02:45,216 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:03:03,286 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:03:21,505 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:03:42,472 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:04:00,706 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:04:19,266 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:04:41,114 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:05:00,202 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:05:18,782 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:05:39,532 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:05:57,827 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:06:16,808 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:06:35,606 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:06:57,207 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:07:16,047 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:07:34,996 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:07:56,467 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:08:15,391 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:08:34,375 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:08:53,748 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:09:16,041 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:09:36,207 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:09:56,018 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:10:15,471 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:10:37,600 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:10:56,368 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:11:15,858 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:11:37,721 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:11:57,319 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:12:17,356 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:12:37,064 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:12:59,332 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:13:18,704 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:13:37,834 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:13:56,398 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:14:18,231 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:14:37,047 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:14:56,683 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:15:15,893 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:15:36,906 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:15:55,102 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:16:13,930 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:16:34,776 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:16:53,236 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:17:11,449 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:17:32,620 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:17:50,913 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:18:09,679 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:18:30,670 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:18:51,534 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:19:07,296 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:19:26,690 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:19:47,873 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:20:06,623 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:20:26,174 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:20:45,091 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:21:06,333 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:21:24,835 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:21:43,725 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:22:04,897 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:22:23,953 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:22:43,159 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:23:01,434 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:23:22,997 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:23:43,580 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:24:02,240 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:24:21,419 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:24:41,498 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:24:59,615 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:25:20,180 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:25:39,860 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:25:58,223 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:26:17,045 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:26:38,234 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:26:56,949 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:27:15,660 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:27:36,277 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:27:55,319 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:28:13,426 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:28:34,260 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:28:52,853 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:29:11,034 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:29:32,265 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:29:51,038 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:30:09,617 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:30:28,635 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:30:50,495 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:31:10,227 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:31:30,297 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:31:50,206 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:32:12,824 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:32:32,543 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:32:51,157 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:33:12,559 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:33:31,097 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:33:49,159 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:34:07,379 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:34:28,407 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:34:47,467 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:35:05,850 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:35:26,528 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:35:45,273 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:36:04,111 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:36:25,016 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:36:43,694 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:37:02,226 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:37:21,054 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:37:42,273 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:38:01,020 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:38:19,667 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:38:41,012 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:38:59,547 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:39:18,244 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:39:38,856 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:39:58,213 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:40:16,834 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:40:35,526 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:40:56,659 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:41:14,889 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:41:33,059 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:41:54,082 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:42:12,754 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:42:31,929 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:42:50,248 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:43:10,845 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:43:28,703 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:43:47,375 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:44:08,907 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:44:27,591 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:44:45,848 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:45:06,815 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:45:25,052 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:45:43,277 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:46:01,716 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:46:22,910 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:46:41,447 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:46:59,705 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:47:20,980 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:47:40,001 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:47:58,511 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:48:17,342 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:48:39,155 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:48:57,588 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:49:15,658 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:49:36,767 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:49:55,448 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:50:14,445 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:50:33,019 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:50:53,815 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:51:12,784 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:51:31,535 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:51:52,680 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:52:10,901 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:52:29,682 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:52:50,915 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:53:09,493 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:53:27,996 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:53:46,483 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:54:07,380 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:54:25,546 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:54:44,113 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:55:05,149 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:55:23,879 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:55:43,291 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:56:02,858 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:56:24,548 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:56:43,320 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:57:01,561 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:57:22,846 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:57:41,346 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:57:59,537 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:58:18,521 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:58:39,639 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:58:57,999 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:59:16,649 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-06 09:59:37,986 INFO Current addressing mode selection : StandaloneMemberLookup

View File

@@ -0,0 +1,258 @@
2025-06-09 16:19:04,860 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 16:19:25,637 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 16:19:27,186 INFO [ClusterRpcClientProxy] success to refresh cluster rpc client on start up,members =[]
2025-06-09 16:19:33,868 INFO This node is ready to provide external services
2025-06-09 16:26:47,160 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 16:26:48,879 INFO [ClusterRpcClientProxy] success to refresh cluster rpc client on start up,members =[]
2025-06-09 16:26:55,298 INFO This node is ready to provide external services
2025-06-09 16:34:53,473 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 16:35:14,420 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 16:35:35,087 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 16:35:37,284 INFO [ClusterRpcClientProxy] success to refresh cluster rpc client on start up,members =[]
2025-06-09 16:35:42,657 INFO This node is ready to provide external services
2025-06-09 18:07:34,468 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:07:56,284 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:08:16,851 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:08:38,406 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:08:59,627 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:09:19,827 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:09:39,878 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:09:59,820 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:10:19,814 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:10:39,519 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:11:00,383 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:11:20,408 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:11:40,632 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:12:00,314 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:12:20,228 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:12:40,791 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:13:01,003 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:13:29,841 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:13:49,909 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:14:16,475 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:14:44,789 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:17:47,559 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:18:18,563 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:18:41,606 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:19:01,483 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:19:21,231 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:19:41,285 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:20:01,934 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:20:23,572 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:20:43,642 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:21:03,326 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:21:23,170 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:21:42,903 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:22:02,696 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:22:22,818 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:22:42,807 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:23:02,546 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:23:22,334 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:23:42,267 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:24:02,041 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:24:21,654 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:24:41,497 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:25:01,307 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:25:21,045 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:25:40,936 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:26:00,711 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:26:20,603 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:26:40,544 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:27:00,309 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:27:19,944 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:27:39,590 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:27:59,385 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:28:19,343 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:28:39,071 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:28:58,984 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:29:19,250 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:29:39,135 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:29:59,045 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:30:18,874 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:30:38,435 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:30:58,241 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:31:18,163 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:31:38,008 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:31:57,659 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:32:17,208 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:32:36,981 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:32:56,805 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:33:16,585 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:33:36,306 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:33:55,933 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:34:15,665 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:34:35,384 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:34:55,186 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:35:15,115 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:35:34,772 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:35:54,382 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:36:14,179 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:36:33,859 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:36:53,521 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:37:13,355 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:37:33,291 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:37:34,921 INFO [ClusterRpcClientProxy] success to refresh cluster rpc client on start up,members =[]
2025-06-09 18:37:41,465 INFO This node is ready to provide external services
2025-06-09 18:56:39,279 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:56:57,516 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:57:17,805 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:57:36,113 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:57:54,103 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:58:10,990 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:58:28,057 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:58:45,898 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:59:02,567 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:59:20,333 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:59:37,487 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 18:59:54,503 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 19:00:12,306 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 19:00:29,126 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 19:00:47,334 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 19:01:04,370 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 19:01:22,030 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 19:01:40,673 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 19:01:58,004 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 19:02:15,940 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 19:02:33,205 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 19:02:50,249 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 19:03:08,496 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 19:03:25,662 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 19:03:44,014 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 19:04:00,756 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 19:04:17,677 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 19:04:35,442 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 19:04:52,250 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 19:05:10,601 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 19:05:27,983 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 19:05:46,383 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 19:06:04,781 INFO Current addressing mode selection : StandaloneMemberLookup
2025-06-09 19:06:24,161 INFO Current addressing mode selection : StandaloneMemberLookup

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,35 @@
OpenJDK 64-Bit Server VM (25.442-b06) for linux-amd64 JRE (1.8.0_442-b06), built on Feb 13 2025 10:11:18 by "buildozer" with gcc 14.2.0
Memory: 4k page, physical 65617704k(63127356k free), swap 10485760k(10485760k free)
CommandLine flags: -XX:+CMSClassUnloadingEnabled -XX:CMSInitiatingOccupancyFraction=70 -XX:+CMSParallelRemarkEnabled -XX:GCLogFileSize=104857600 -XX:InitialHeapSize=1073741824 -XX:MaxHeapSize=1073741824 -XX:MaxNewSize=536870912 -XX:NewSize=536870912 -XX:NumberOfGCLogFiles=10 -XX:OldPLABSize=16 -XX:+PrintGC -XX:+PrintGCDateStamps -XX:+PrintGCDetails -XX:+PrintGCTimeStamps -XX:SoftRefLRUPolicyMSPerMB=0 -XX:SurvivorRatio=8 -XX:+UseCMSCompactAtFullCollection -XX:+UseCompressedClassPointers -XX:+UseCompressedOops -XX:+UseConcMarkSweepGC -XX:+UseGCLogFileRotation -XX:+UseParNewGC
2025-06-10T02:24:00.046+0000: 1.831: [GC (Allocation Failure) 2025-06-10T02:24:00.047+0000: 1.832: [ParNew: 419456K->6116K(471872K), 0.0130492 secs] 419456K->6116K(996160K), 0.0141843 secs] [Times: user=0.02 sys=0.13, real=0.02 secs]
2025-06-10T02:24:01.237+0000: 3.022: [GC (Allocation Failure) 2025-06-10T02:24:01.238+0000: 3.023: [ParNew: 425572K->15025K(471872K), 0.0270210 secs] 425572K->15025K(996160K), 0.0285941 secs] [Times: user=0.22 sys=0.06, real=0.03 secs]
2025-06-10T02:24:01.269+0000: 3.054: [GC (CMS Initial Mark) [1 CMS-initial-mark: 0K(524288K)] 20644K(996160K), 0.0053373 secs] [Times: user=0.02 sys=0.00, real=0.01 secs]
2025-06-10T02:24:01.276+0000: 3.061: [CMS-concurrent-mark-start]
2025-06-10T02:24:01.277+0000: 3.062: [CMS-concurrent-mark: 0.001/0.001 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2025-06-10T02:24:01.278+0000: 3.063: [CMS-concurrent-preclean-start]
2025-06-10T02:24:01.279+0000: 3.064: [CMS-concurrent-preclean: 0.001/0.001 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
2025-06-10T02:24:01.279+0000: 3.065: [CMS-concurrent-abortable-preclean-start]
2025-06-10T02:24:01.893+0000: 3.678: [CMS-concurrent-abortable-preclean: 0.224/0.614 secs] [Times: user=2.95 sys=0.24, real=0.62 secs]
2025-06-10T02:24:01.895+0000: 3.680: [GC (CMS Final Remark) [YG occupancy: 274494 K (471872 K)]2025-06-10T02:24:01.895+0000: 3.680: [Rescan (parallel) , 0.0128737 secs]2025-06-10T02:24:01.909+0000: 3.694: [weak refs processing, 0.0003348 secs]2025-06-10T02:24:01.909+0000: 3.694: [class unloading, 0.0042162 secs]2025-06-10T02:24:01.914+0000: 3.699: [scrub symbol table, 0.0023222 secs]2025-06-10T02:24:01.917+0000: 3.702: [scrub string table, 0.0005816 secs][1 CMS-remark: 0K(524288K)] 274494K(996160K), 0.0237572 secs] [Times: user=0.24 sys=0.01, real=0.02 secs]
2025-06-10T02:24:01.919+0000: 3.704: [CMS-concurrent-sweep-start]
2025-06-10T02:24:01.919+0000: 3.704: [CMS-concurrent-sweep: 0.000/0.000 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
2025-06-10T02:24:01.920+0000: 3.705: [CMS-concurrent-reset-start]
2025-06-10T02:24:01.925+0000: 3.710: [CMS-concurrent-reset: 0.005/0.005 secs] [Times: user=0.02 sys=0.01, real=0.01 secs]
2025-06-10T02:24:02.214+0000: 3.999: [GC (Allocation Failure) 2025-06-10T02:24:02.215+0000: 4.000: [ParNew: 434481K->23059K(471872K), 0.0190815 secs] 434481K->23059K(996160K), 0.0202457 secs] [Times: user=0.22 sys=0.06, real=0.02 secs]
2025-06-10T02:24:03.409+0000: 5.195: [GC (Allocation Failure) 2025-06-10T02:24:03.410+0000: 5.195: [ParNew: 442515K->36101K(471872K), 0.0120594 secs] 442515K->36101K(996160K), 0.0129789 secs] [Times: user=0.16 sys=0.01, real=0.02 secs]
2025-06-10T02:24:05.424+0000: 7.210: [GC (CMS Initial Mark) [1 CMS-initial-mark: 0K(524288K)] 308634K(996160K), 0.0137214 secs] [Times: user=0.18 sys=0.00, real=0.01 secs]
2025-06-10T02:24:05.439+0000: 7.224: [CMS-concurrent-mark-start]
2025-06-10T02:24:05.440+0000: 7.225: [CMS-concurrent-mark: 0.001/0.001 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
2025-06-10T02:24:05.441+0000: 7.226: [CMS-concurrent-preclean-start]
2025-06-10T02:24:05.442+0000: 7.227: [CMS-concurrent-preclean: 0.001/0.001 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
2025-06-10T02:24:05.443+0000: 7.228: [CMS-concurrent-abortable-preclean-start]
2025-06-10T02:24:06.261+0000: 8.046: [GC (Allocation Failure) 2025-06-10T02:24:06.262+0000: 8.047: [ParNew: 455557K->45821K(471872K), 0.0200464 secs] 455557K->45821K(996160K), 0.0211869 secs] [Times: user=0.19 sys=0.08, real=0.02 secs]
2025-06-10T02:24:07.301+0000: 9.086: [CMS-concurrent-abortable-preclean: 1.416/1.858 secs] [Times: user=8.55 sys=0.64, real=1.86 secs]
2025-06-10T02:24:07.302+0000: 9.087: [GC (CMS Final Remark) [YG occupancy: 266842 K (471872 K)]2025-06-10T02:24:07.303+0000: 9.088: [Rescan (parallel) , 0.0128470 secs]2025-06-10T02:24:07.316+0000: 9.101: [weak refs processing, 0.0007546 secs]2025-06-10T02:24:07.318+0000: 9.103: [class unloading, 0.0097977 secs]2025-06-10T02:24:07.328+0000: 9.113: [scrub symbol table, 0.0154569 secs]2025-06-10T02:24:07.344+0000: 9.129: [scrub string table, 0.0012513 secs][1 CMS-remark: 0K(524288K)] 266842K(996160K), 0.0475227 secs] [Times: user=0.36 sys=0.00, real=0.04 secs]
2025-06-10T02:24:07.351+0000: 9.136: [CMS-concurrent-sweep-start]
2025-06-10T02:24:07.351+0000: 9.136: [CMS-concurrent-sweep: 0.000/0.000 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
2025-06-10T02:24:07.352+0000: 9.137: [CMS-concurrent-reset-start]
2025-06-10T02:24:07.352+0000: 9.137: [CMS-concurrent-reset: 0.001/0.001 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
2025-06-10T02:24:08.406+0000: 10.191: [GC (Allocation Failure) 2025-06-10T02:24:08.406+0000: 10.191: [ParNew: 465277K->52416K(471872K), 0.0609761 secs] 465277K->69765K(996160K), 0.0620257 secs] [Times: user=0.39 sys=0.11, real=0.06 secs]
2025-06-10T02:24:09.892+0000: 11.677: [GC (Allocation Failure) 2025-06-10T02:24:09.893+0000: 11.678: [ParNew: 471872K->50340K(471872K), 0.0454666 secs] 489221K->88654K(996160K), 0.0466152 secs] [Times: user=0.33 sys=0.03, real=0.04 secs]
2025-06-10T02:45:04.521+0000: 1266.358: [GC (Allocation Failure) 2025-06-10T02:45:04.521+0000: 1266.359: [ParNew: 469796K->52416K(471872K), 0.0330963 secs] 508110K->104357K(996160K), 0.0345863 secs] [Times: user=0.27 sys=0.01, real=0.03 secs]

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,6 @@
2025-06-05 18:12:42,294 INFO [PUSH-SUCC] 25ms, all delay time 552ms for subscriber 192.168.220.1, Service{namespace='dev', group='DEFAULT_GROUP', name='system-server', ephemeral=true, revision=1}, originalSize=1, DataSize=1
2025-06-05 18:12:44,196 INFO [PUSH-SUCC] 22ms, all delay time 526ms for subscriber 192.168.220.1, Service{namespace='dev', group='DEFAULT_GROUP', name='infra-server', ephemeral=true, revision=1}, originalSize=1, DataSize=1
2025-06-05 18:43:11,760 INFO [PUSH-SUCC] 9ms, all delay time 617ms for subscriber 192.168.220.1, Service{namespace='dev', group='DEFAULT_GROUP', name='system-server', ephemeral=true, revision=1}, originalSize=1, DataSize=1

View File

@@ -0,0 +1,12 @@
2025-06-09 16:44:45,084 INFO [PUSH-SUCC] 26ms, all delay time 610ms for subscriber 192.168.220.1, Service{namespace='dev', group='DEFAULT_GROUP', name='system-server', ephemeral=true, revision=1}, originalSize=1, DataSize=1
2025-06-09 16:44:47,453 INFO [PUSH-SUCC] 16ms, all delay time 587ms for subscriber 192.168.220.1, Service{namespace='dev', group='DEFAULT_GROUP', name='system-server', ephemeral=true, revision=1}, originalSize=1, DataSize=1
2025-06-09 16:44:47,759 INFO [PUSH-SUCC] 13ms, all delay time 541ms for subscriber 192.168.220.1, Service{namespace='dev', group='DEFAULT_GROUP', name='infra-server', ephemeral=true, revision=1}, originalSize=1, DataSize=1
2025-06-09 16:45:30,352 INFO [PUSH-SUCC] 10ms, all delay time 528ms for subscriber 192.168.220.1, Service{namespace='dev', group='DEFAULT_GROUP', name='bpm-server', ephemeral=true, revision=1}, originalSize=1, DataSize=1
2025-06-09 16:45:30,985 INFO [PUSH-SUCC] 14ms, all delay time 543ms for subscriber 192.168.220.1, Service{namespace='dev', group='DEFAULT_GROUP', name='system-server', ephemeral=true, revision=1}, originalSize=1, DataSize=1
2025-06-09 17:24:06,545 INFO [PUSH-SUCC] 33ms, all delay time 568ms, SLA 569ms, Service{namespace='dev', group='DEFAULT_GROUP', name='system-server', ephemeral=true, revision=2}, originalSize=0, DataSize=0, target=192.168.220.1

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,552 @@
2025-06-05 18:00:12,315 INFO Not configure type of control plugin, no limit control for current node.
2025-06-05 18:00:12,319 INFO Load connection metrics collector,size=2,[com.alibaba.nacos.config.server.service.LongPollingConnectionMetricsCollector@2b95e48b, com.alibaba.nacos.core.remote.LongConnectionMetricsCollector@3dddefd8]
2025-06-05 18:00:12,321 INFO No connection rule content found ,use default empty rule
2025-06-05 18:00:12,358 INFO No tps control rule of CONFIG_PUSH_COUNT found,content =null
2025-06-05 18:00:12,361 WARN Tps point for CONFIG_PUSH_COUNT registered, But tps control manager is no limit implementation.
2025-06-05 18:00:12,362 INFO No tps control rule of CONFIG_PUSH_SUCCESS found,content =null
2025-06-05 18:00:12,363 WARN Tps point for CONFIG_PUSH_SUCCESS registered, But tps control manager is no limit implementation.
2025-06-05 18:00:12,364 INFO No tps control rule of CONFIG_PUSH_FAIL found,content =null
2025-06-05 18:00:12,366 WARN Tps point for CONFIG_PUSH_FAIL registered, But tps control manager is no limit implementation.
2025-06-05 18:00:21,807 INFO Not configure type of control plugin, no limit control for current node.
2025-06-05 18:00:21,814 INFO Load connection metrics collector,size=2,[com.alibaba.nacos.config.server.service.LongPollingConnectionMetricsCollector@3dddefd8, com.alibaba.nacos.core.remote.LongConnectionMetricsCollector@12bfd80d]
2025-06-05 18:00:21,816 INFO No connection rule content found ,use default empty rule
2025-06-05 18:00:21,850 INFO No tps control rule of CONFIG_PUSH_COUNT found,content =null
2025-06-05 18:00:21,852 WARN Tps point for CONFIG_PUSH_COUNT registered, But tps control manager is no limit implementation.
2025-06-05 18:00:21,853 INFO No tps control rule of CONFIG_PUSH_SUCCESS found,content =null
2025-06-05 18:00:21,854 WARN Tps point for CONFIG_PUSH_SUCCESS registered, But tps control manager is no limit implementation.
2025-06-05 18:00:21,855 INFO No tps control rule of CONFIG_PUSH_FAIL found,content =null
2025-06-05 18:00:21,856 WARN Tps point for CONFIG_PUSH_FAIL registered, But tps control manager is no limit implementation.
2025-06-05 18:00:34,025 INFO Not configure type of control plugin, no limit control for current node.
2025-06-05 18:00:34,030 INFO Load connection metrics collector,size=2,[com.alibaba.nacos.config.server.service.LongPollingConnectionMetricsCollector@79da1ec0, com.alibaba.nacos.core.remote.LongConnectionMetricsCollector@192d74fb]
2025-06-05 18:00:34,032 INFO No connection rule content found ,use default empty rule
2025-06-05 18:00:34,058 INFO No tps control rule of CONFIG_PUSH_COUNT found,content =null
2025-06-05 18:00:34,060 WARN Tps point for CONFIG_PUSH_COUNT registered, But tps control manager is no limit implementation.
2025-06-05 18:00:34,061 INFO No tps control rule of CONFIG_PUSH_SUCCESS found,content =null
2025-06-05 18:00:34,061 WARN Tps point for CONFIG_PUSH_SUCCESS registered, But tps control manager is no limit implementation.
2025-06-05 18:00:34,062 INFO No tps control rule of CONFIG_PUSH_FAIL found,content =null
2025-06-05 18:00:34,064 WARN Tps point for CONFIG_PUSH_FAIL registered, But tps control manager is no limit implementation.
2025-06-05 18:00:45,733 INFO Not configure type of control plugin, no limit control for current node.
2025-06-05 18:00:45,741 INFO Load connection metrics collector,size=2,[com.alibaba.nacos.config.server.service.LongPollingConnectionMetricsCollector@4cc6fa2a, com.alibaba.nacos.core.remote.LongConnectionMetricsCollector@7a791b66]
2025-06-05 18:00:45,743 INFO No connection rule content found ,use default empty rule
2025-06-05 18:00:45,773 INFO No tps control rule of CONFIG_PUSH_COUNT found,content =null
2025-06-05 18:00:45,775 WARN Tps point for CONFIG_PUSH_COUNT registered, But tps control manager is no limit implementation.
2025-06-05 18:00:45,776 INFO No tps control rule of CONFIG_PUSH_SUCCESS found,content =null
2025-06-05 18:00:45,776 WARN Tps point for CONFIG_PUSH_SUCCESS registered, But tps control manager is no limit implementation.
2025-06-05 18:00:45,777 INFO No tps control rule of CONFIG_PUSH_FAIL found,content =null
2025-06-05 18:00:45,779 WARN Tps point for CONFIG_PUSH_FAIL registered, But tps control manager is no limit implementation.
2025-06-05 18:00:55,602 INFO Not configure type of control plugin, no limit control for current node.
2025-06-05 18:00:55,607 INFO Load connection metrics collector,size=2,[com.alibaba.nacos.config.server.service.LongPollingConnectionMetricsCollector@61884cb1, com.alibaba.nacos.core.remote.LongConnectionMetricsCollector@4fc5e095]
2025-06-05 18:00:55,609 INFO No connection rule content found ,use default empty rule
2025-06-05 18:00:55,653 INFO No tps control rule of CONFIG_PUSH_COUNT found,content =null
2025-06-05 18:00:55,655 WARN Tps point for CONFIG_PUSH_COUNT registered, But tps control manager is no limit implementation.
2025-06-05 18:00:55,656 INFO No tps control rule of CONFIG_PUSH_SUCCESS found,content =null
2025-06-05 18:00:55,657 WARN Tps point for CONFIG_PUSH_SUCCESS registered, But tps control manager is no limit implementation.
2025-06-05 18:00:55,658 INFO No tps control rule of CONFIG_PUSH_FAIL found,content =null
2025-06-05 18:00:55,660 WARN Tps point for CONFIG_PUSH_FAIL registered, But tps control manager is no limit implementation.
2025-06-05 18:01:08,280 INFO Not configure type of control plugin, no limit control for current node.
2025-06-05 18:01:08,289 INFO Load connection metrics collector,size=2,[com.alibaba.nacos.config.server.service.LongPollingConnectionMetricsCollector@45cff11c, com.alibaba.nacos.core.remote.LongConnectionMetricsCollector@4bff1903]
2025-06-05 18:01:08,292 INFO No connection rule content found ,use default empty rule
2025-06-05 18:01:08,333 INFO No tps control rule of CONFIG_PUSH_COUNT found,content =null
2025-06-05 18:01:08,337 WARN Tps point for CONFIG_PUSH_COUNT registered, But tps control manager is no limit implementation.
2025-06-05 18:01:08,338 INFO No tps control rule of CONFIG_PUSH_SUCCESS found,content =null
2025-06-05 18:01:08,339 WARN Tps point for CONFIG_PUSH_SUCCESS registered, But tps control manager is no limit implementation.
2025-06-05 18:01:08,339 INFO No tps control rule of CONFIG_PUSH_FAIL found,content =null
2025-06-05 18:01:08,341 WARN Tps point for CONFIG_PUSH_FAIL registered, But tps control manager is no limit implementation.
2025-06-05 18:01:17,980 INFO Not configure type of control plugin, no limit control for current node.
2025-06-05 18:01:17,985 INFO Load connection metrics collector,size=2,[com.alibaba.nacos.config.server.service.LongPollingConnectionMetricsCollector@3dddefd8, com.alibaba.nacos.core.remote.LongConnectionMetricsCollector@12bfd80d]
2025-06-05 18:01:17,986 INFO No connection rule content found ,use default empty rule
2025-06-05 18:01:18,013 INFO No tps control rule of CONFIG_PUSH_COUNT found,content =null
2025-06-05 18:01:18,014 WARN Tps point for CONFIG_PUSH_COUNT registered, But tps control manager is no limit implementation.
2025-06-05 18:01:18,015 INFO No tps control rule of CONFIG_PUSH_SUCCESS found,content =null
2025-06-05 18:01:18,016 WARN Tps point for CONFIG_PUSH_SUCCESS registered, But tps control manager is no limit implementation.
2025-06-05 18:01:18,017 INFO No tps control rule of CONFIG_PUSH_FAIL found,content =null
2025-06-05 18:01:18,018 WARN Tps point for CONFIG_PUSH_FAIL registered, But tps control manager is no limit implementation.
2025-06-05 18:01:29,837 INFO Not configure type of control plugin, no limit control for current node.
2025-06-05 18:01:29,842 INFO Load connection metrics collector,size=2,[com.alibaba.nacos.config.server.service.LongPollingConnectionMetricsCollector@160ac7fb, com.alibaba.nacos.core.remote.LongConnectionMetricsCollector@41925502]
2025-06-05 18:01:29,843 INFO No connection rule content found ,use default empty rule
2025-06-05 18:01:29,873 INFO No tps control rule of CONFIG_PUSH_COUNT found,content =null
2025-06-05 18:01:29,875 WARN Tps point for CONFIG_PUSH_COUNT registered, But tps control manager is no limit implementation.
2025-06-05 18:01:29,876 INFO No tps control rule of CONFIG_PUSH_SUCCESS found,content =null
2025-06-05 18:01:29,877 WARN Tps point for CONFIG_PUSH_SUCCESS registered, But tps control manager is no limit implementation.
2025-06-05 18:01:29,879 INFO No tps control rule of CONFIG_PUSH_FAIL found,content =null
2025-06-05 18:01:29,880 WARN Tps point for CONFIG_PUSH_FAIL registered, But tps control manager is no limit implementation.
2025-06-05 18:01:39,214 INFO Not configure type of control plugin, no limit control for current node.
2025-06-05 18:01:39,220 INFO Load connection metrics collector,size=2,[com.alibaba.nacos.config.server.service.LongPollingConnectionMetricsCollector@1d8062d2, com.alibaba.nacos.core.remote.LongConnectionMetricsCollector@3b956878]
2025-06-05 18:01:39,222 INFO No connection rule content found ,use default empty rule
2025-06-05 18:01:39,254 INFO No tps control rule of CONFIG_PUSH_COUNT found,content =null
2025-06-05 18:01:39,257 WARN Tps point for CONFIG_PUSH_COUNT registered, But tps control manager is no limit implementation.
2025-06-05 18:01:39,258 INFO No tps control rule of CONFIG_PUSH_SUCCESS found,content =null
2025-06-05 18:01:39,259 WARN Tps point for CONFIG_PUSH_SUCCESS registered, But tps control manager is no limit implementation.
2025-06-05 18:01:39,259 INFO No tps control rule of CONFIG_PUSH_FAIL found,content =null
2025-06-05 18:01:39,261 WARN Tps point for CONFIG_PUSH_FAIL registered, But tps control manager is no limit implementation.
2025-06-05 18:01:51,684 INFO Not configure type of control plugin, no limit control for current node.
2025-06-05 18:01:51,688 INFO Load connection metrics collector,size=2,[com.alibaba.nacos.config.server.service.LongPollingConnectionMetricsCollector@75ed9710, com.alibaba.nacos.core.remote.LongConnectionMetricsCollector@435871cb]
2025-06-05 18:01:51,690 INFO No connection rule content found ,use default empty rule
2025-06-05 18:01:51,713 INFO No tps control rule of CONFIG_PUSH_COUNT found,content =null
2025-06-05 18:01:51,715 WARN Tps point for CONFIG_PUSH_COUNT registered, But tps control manager is no limit implementation.
2025-06-05 18:01:51,716 INFO No tps control rule of CONFIG_PUSH_SUCCESS found,content =null
2025-06-05 18:01:51,717 WARN Tps point for CONFIG_PUSH_SUCCESS registered, But tps control manager is no limit implementation.
2025-06-05 18:01:51,717 INFO No tps control rule of CONFIG_PUSH_FAIL found,content =null
2025-06-05 18:01:51,719 WARN Tps point for CONFIG_PUSH_FAIL registered, But tps control manager is no limit implementation.
2025-06-05 18:02:04,255 INFO Not configure type of control plugin, no limit control for current node.
2025-06-05 18:02:04,263 INFO Load connection metrics collector,size=2,[com.alibaba.nacos.config.server.service.LongPollingConnectionMetricsCollector@3b220bcb, com.alibaba.nacos.core.remote.LongConnectionMetricsCollector@4a3329b9]
2025-06-05 18:02:04,265 INFO No connection rule content found ,use default empty rule
2025-06-05 18:02:04,300 INFO No tps control rule of CONFIG_PUSH_COUNT found,content =null
2025-06-05 18:02:04,302 WARN Tps point for CONFIG_PUSH_COUNT registered, But tps control manager is no limit implementation.
2025-06-05 18:02:04,303 INFO No tps control rule of CONFIG_PUSH_SUCCESS found,content =null
2025-06-05 18:02:04,303 WARN Tps point for CONFIG_PUSH_SUCCESS registered, But tps control manager is no limit implementation.
2025-06-05 18:02:04,304 INFO No tps control rule of CONFIG_PUSH_FAIL found,content =null
2025-06-05 18:02:04,305 WARN Tps point for CONFIG_PUSH_FAIL registered, But tps control manager is no limit implementation.
2025-06-05 18:02:14,365 INFO Not configure type of control plugin, no limit control for current node.
2025-06-05 18:02:14,370 INFO Load connection metrics collector,size=2,[com.alibaba.nacos.config.server.service.LongPollingConnectionMetricsCollector@62ea3440, com.alibaba.nacos.core.remote.LongConnectionMetricsCollector@556d0826]
2025-06-05 18:02:14,371 INFO No connection rule content found ,use default empty rule
2025-06-05 18:02:14,408 INFO No tps control rule of CONFIG_PUSH_COUNT found,content =null
2025-06-05 18:02:14,410 WARN Tps point for CONFIG_PUSH_COUNT registered, But tps control manager is no limit implementation.
2025-06-05 18:02:14,412 INFO No tps control rule of CONFIG_PUSH_SUCCESS found,content =null
2025-06-05 18:02:14,413 WARN Tps point for CONFIG_PUSH_SUCCESS registered, But tps control manager is no limit implementation.
2025-06-05 18:02:14,414 INFO No tps control rule of CONFIG_PUSH_FAIL found,content =null
2025-06-05 18:02:14,416 WARN Tps point for CONFIG_PUSH_FAIL registered, But tps control manager is no limit implementation.
2025-06-05 18:02:30,203 INFO Not configure type of control plugin, no limit control for current node.
2025-06-05 18:02:30,209 INFO Load connection metrics collector,size=2,[com.alibaba.nacos.config.server.service.LongPollingConnectionMetricsCollector@30d4b288, com.alibaba.nacos.core.remote.LongConnectionMetricsCollector@40f1be1b]
2025-06-05 18:02:30,212 INFO No connection rule content found ,use default empty rule
2025-06-05 18:02:30,252 INFO No tps control rule of CONFIG_PUSH_COUNT found,content =null
2025-06-05 18:02:30,255 WARN Tps point for CONFIG_PUSH_COUNT registered, But tps control manager is no limit implementation.
2025-06-05 18:02:30,256 INFO No tps control rule of CONFIG_PUSH_SUCCESS found,content =null
2025-06-05 18:02:30,257 WARN Tps point for CONFIG_PUSH_SUCCESS registered, But tps control manager is no limit implementation.
2025-06-05 18:02:30,258 INFO No tps control rule of CONFIG_PUSH_FAIL found,content =null
2025-06-05 18:02:30,261 WARN Tps point for CONFIG_PUSH_FAIL registered, But tps control manager is no limit implementation.
2025-06-05 18:02:34,451 INFO No tps control rule of ConfigQuery found,content =null
2025-06-05 18:02:34,452 WARN Tps point for ConfigQuery registered, But tps control manager is no limit implementation.
2025-06-05 18:02:34,453 INFO No tps control rule of ClusterConfigChangeNotify found,content =null
2025-06-05 18:02:34,455 WARN Tps point for ClusterConfigChangeNotify registered, But tps control manager is no limit implementation.
2025-06-05 18:02:34,475 INFO No tps control rule of ConfigListen found,content =null
2025-06-05 18:02:34,475 WARN Tps point for ConfigListen registered, But tps control manager is no limit implementation.
2025-06-05 18:02:34,476 INFO No tps control rule of ConfigRemove found,content =null
2025-06-05 18:02:34,478 WARN Tps point for ConfigRemove registered, But tps control manager is no limit implementation.
2025-06-05 18:02:34,478 INFO No tps control rule of ConfigPublish found,content =null
2025-06-05 18:02:34,479 WARN Tps point for ConfigPublish registered, But tps control manager is no limit implementation.
2025-06-05 18:02:34,480 INFO No tps control rule of HealthCheck found,content =null
2025-06-05 18:02:34,481 WARN Tps point for HealthCheck registered, But tps control manager is no limit implementation.
2025-06-05 18:02:34,481 INFO No tps control rule of RemoteNamingServiceQuery found,content =null
2025-06-05 18:02:34,482 WARN Tps point for RemoteNamingServiceQuery registered, But tps control manager is no limit implementation.
2025-06-05 18:02:34,483 INFO No tps control rule of RemoteNamingInstanceBatchRegister found,content =null
2025-06-05 18:02:34,484 WARN Tps point for RemoteNamingInstanceBatchRegister registered, But tps control manager is no limit implementation.
2025-06-05 18:02:34,485 INFO No tps control rule of RemoteNamingInstanceRegisterDeregister found,content =null
2025-06-05 18:02:34,485 WARN Tps point for RemoteNamingInstanceRegisterDeregister registered, But tps control manager is no limit implementation.
2025-06-05 18:02:34,486 INFO No tps control rule of RemoteNamingServiceListQuery found,content =null
2025-06-05 18:02:34,486 WARN Tps point for RemoteNamingServiceListQuery registered, But tps control manager is no limit implementation.
2025-06-05 18:02:34,487 INFO No tps control rule of RemoteNamingServiceSubscribeUnSubscribe found,content =null
2025-06-05 18:02:34,488 WARN Tps point for RemoteNamingServiceSubscribeUnSubscribe registered, But tps control manager is no limit implementation.
2025-06-05 18:02:34,489 WARN Tps point for RemoteNamingInstanceRegisterDeregister registered, But tps control manager is no limit implementation.
2025-06-05 18:02:34,491 INFO No tps control rule of HttpHealthCheck found,content =null
2025-06-05 18:02:34,491 WARN Tps point for HttpHealthCheck registered, But tps control manager is no limit implementation.
2025-06-05 18:02:34,492 INFO No tps control rule of NamingInstanceRegister found,content =null
2025-06-05 18:02:34,492 WARN Tps point for NamingInstanceRegister registered, But tps control manager is no limit implementation.
2025-06-05 18:02:34,493 INFO No tps control rule of NamingServiceQuery found,content =null
2025-06-05 18:02:34,494 WARN Tps point for NamingServiceQuery registered, But tps control manager is no limit implementation.
2025-06-05 18:02:34,494 INFO No tps control rule of NamingServiceUpdate found,content =null
2025-06-05 18:02:34,495 WARN Tps point for NamingServiceUpdate registered, But tps control manager is no limit implementation.
2025-06-05 18:02:34,496 WARN Tps point for ConfigPublish registered, But tps control manager is no limit implementation.
2025-06-05 18:02:34,496 WARN Tps point for NamingInstanceRegister registered, But tps control manager is no limit implementation.
2025-06-05 18:02:34,497 INFO No tps control rule of NamingInstanceMetadataUpdate found,content =null
2025-06-05 18:02:34,498 WARN Tps point for NamingInstanceMetadataUpdate registered, But tps control manager is no limit implementation.
2025-06-05 18:02:34,498 INFO No tps control rule of NamingServiceSubscribe found,content =null
2025-06-05 18:02:34,499 WARN Tps point for NamingServiceSubscribe registered, But tps control manager is no limit implementation.
2025-06-05 18:02:34,499 INFO No tps control rule of NamingInstanceDeregister found,content =null
2025-06-05 18:02:34,500 WARN Tps point for NamingInstanceDeregister registered, But tps control manager is no limit implementation.
2025-06-05 18:02:34,500 INFO No tps control rule of NamingServiceRegister found,content =null
2025-06-05 18:02:34,501 WARN Tps point for NamingServiceRegister registered, But tps control manager is no limit implementation.
2025-06-05 18:02:34,502 WARN Tps point for NamingServiceQuery registered, But tps control manager is no limit implementation.
2025-06-05 18:02:34,502 WARN Tps point for NamingServiceSubscribe registered, But tps control manager is no limit implementation.
2025-06-05 18:02:34,503 WARN Tps point for NamingInstanceDeregister registered, But tps control manager is no limit implementation.
2025-06-05 18:02:34,503 INFO No tps control rule of NamingInstanceUpdate found,content =null
2025-06-05 18:02:34,504 WARN Tps point for NamingInstanceUpdate registered, But tps control manager is no limit implementation.
2025-06-05 18:02:34,504 WARN Tps point for HttpHealthCheck registered, But tps control manager is no limit implementation.
2025-06-05 18:02:34,505 INFO No tps control rule of NamingServiceListQuery found,content =null
2025-06-05 18:02:34,505 WARN Tps point for NamingServiceListQuery registered, But tps control manager is no limit implementation.
2025-06-05 18:02:34,506 WARN Tps point for NamingServiceRegister registered, But tps control manager is no limit implementation.
2025-06-05 18:02:34,506 INFO No tps control rule of NamingServiceDeregister found,content =null
2025-06-05 18:02:34,507 WARN Tps point for NamingServiceDeregister registered, But tps control manager is no limit implementation.
2025-06-05 18:02:34,508 INFO No tps control rule of NamingInstanceQuery found,content =null
2025-06-05 18:02:34,508 WARN Tps point for NamingInstanceQuery registered, But tps control manager is no limit implementation.
2025-06-05 18:02:34,508 WARN Tps point for NamingInstanceUpdate registered, But tps control manager is no limit implementation.
2025-06-05 18:02:34,510 WARN Tps point for NamingInstanceMetadataUpdate registered, But tps control manager is no limit implementation.
2025-06-05 18:02:34,510 WARN Tps point for NamingInstanceMetadataUpdate registered, But tps control manager is no limit implementation.
2025-06-05 18:02:34,511 WARN Tps point for NamingServiceUpdate registered, But tps control manager is no limit implementation.
2025-06-05 18:02:34,512 WARN Tps point for NamingServiceDeregister registered, But tps control manager is no limit implementation.
2025-06-05 18:02:34,512 WARN Tps point for NamingInstanceMetadataUpdate registered, But tps control manager is no limit implementation.
2025-06-05 18:02:34,513 WARN Tps point for NamingServiceListQuery registered, But tps control manager is no limit implementation.
2025-06-05 18:02:34,513 WARN Tps point for NamingInstanceQuery registered, But tps control manager is no limit implementation.
2025-06-05 18:02:34,514 WARN Tps point for ConfigQuery registered, But tps control manager is no limit implementation.
2025-06-05 18:02:48,890 INFO Not configure type of control plugin, no limit control for current node.
2025-06-05 18:02:48,897 INFO Load connection metrics collector,size=2,[com.alibaba.nacos.config.server.service.LongPollingConnectionMetricsCollector@40499e4f, com.alibaba.nacos.core.remote.LongConnectionMetricsCollector@30d4b288]
2025-06-05 18:02:48,899 INFO No connection rule content found ,use default empty rule
2025-06-05 18:02:48,928 INFO No tps control rule of CONFIG_PUSH_COUNT found,content =null
2025-06-05 18:02:48,930 WARN Tps point for CONFIG_PUSH_COUNT registered, But tps control manager is no limit implementation.
2025-06-05 18:02:48,931 INFO No tps control rule of CONFIG_PUSH_SUCCESS found,content =null
2025-06-05 18:02:48,932 WARN Tps point for CONFIG_PUSH_SUCCESS registered, But tps control manager is no limit implementation.
2025-06-05 18:02:48,933 INFO No tps control rule of CONFIG_PUSH_FAIL found,content =null
2025-06-05 18:02:48,934 WARN Tps point for CONFIG_PUSH_FAIL registered, But tps control manager is no limit implementation.
2025-06-05 18:02:55,376 INFO No tps control rule of ConfigQuery found,content =null
2025-06-05 18:02:55,378 WARN Tps point for ConfigQuery registered, But tps control manager is no limit implementation.
2025-06-05 18:02:55,379 INFO No tps control rule of ClusterConfigChangeNotify found,content =null
2025-06-05 18:02:55,381 WARN Tps point for ClusterConfigChangeNotify registered, But tps control manager is no limit implementation.
2025-06-05 18:02:55,394 INFO No tps control rule of ConfigListen found,content =null
2025-06-05 18:02:55,395 WARN Tps point for ConfigListen registered, But tps control manager is no limit implementation.
2025-06-05 18:02:55,396 INFO No tps control rule of ConfigRemove found,content =null
2025-06-05 18:02:55,397 WARN Tps point for ConfigRemove registered, But tps control manager is no limit implementation.
2025-06-05 18:02:55,398 INFO No tps control rule of ConfigPublish found,content =null
2025-06-05 18:02:55,398 WARN Tps point for ConfigPublish registered, But tps control manager is no limit implementation.
2025-06-05 18:02:55,399 INFO No tps control rule of HealthCheck found,content =null
2025-06-05 18:02:55,400 WARN Tps point for HealthCheck registered, But tps control manager is no limit implementation.
2025-06-05 18:02:55,401 INFO No tps control rule of RemoteNamingServiceQuery found,content =null
2025-06-05 18:02:55,401 WARN Tps point for RemoteNamingServiceQuery registered, But tps control manager is no limit implementation.
2025-06-05 18:02:55,402 INFO No tps control rule of RemoteNamingInstanceBatchRegister found,content =null
2025-06-05 18:02:55,402 WARN Tps point for RemoteNamingInstanceBatchRegister registered, But tps control manager is no limit implementation.
2025-06-05 18:02:55,403 INFO No tps control rule of RemoteNamingInstanceRegisterDeregister found,content =null
2025-06-05 18:02:55,404 WARN Tps point for RemoteNamingInstanceRegisterDeregister registered, But tps control manager is no limit implementation.
2025-06-05 18:02:55,405 INFO No tps control rule of RemoteNamingServiceListQuery found,content =null
2025-06-05 18:02:55,406 WARN Tps point for RemoteNamingServiceListQuery registered, But tps control manager is no limit implementation.
2025-06-05 18:02:55,407 INFO No tps control rule of RemoteNamingServiceSubscribeUnSubscribe found,content =null
2025-06-05 18:02:55,407 WARN Tps point for RemoteNamingServiceSubscribeUnSubscribe registered, But tps control manager is no limit implementation.
2025-06-05 18:02:55,408 WARN Tps point for RemoteNamingInstanceRegisterDeregister registered, But tps control manager is no limit implementation.
2025-06-05 18:02:55,410 INFO No tps control rule of NamingServiceUpdate found,content =null
2025-06-05 18:02:55,411 WARN Tps point for NamingServiceUpdate registered, But tps control manager is no limit implementation.
2025-06-05 18:02:55,411 INFO No tps control rule of NamingInstanceRegister found,content =null
2025-06-05 18:02:55,412 WARN Tps point for NamingInstanceRegister registered, But tps control manager is no limit implementation.
2025-06-05 18:02:55,413 WARN Tps point for NamingServiceUpdate registered, But tps control manager is no limit implementation.
2025-06-05 18:02:55,413 INFO No tps control rule of NamingServiceDeregister found,content =null
2025-06-05 18:02:55,414 WARN Tps point for NamingServiceDeregister registered, But tps control manager is no limit implementation.
2025-06-05 18:02:55,414 INFO No tps control rule of HttpHealthCheck found,content =null
2025-06-05 18:02:55,415 WARN Tps point for HttpHealthCheck registered, But tps control manager is no limit implementation.
2025-06-05 18:02:55,415 INFO No tps control rule of NamingServiceQuery found,content =null
2025-06-05 18:02:55,416 WARN Tps point for NamingServiceQuery registered, But tps control manager is no limit implementation.
2025-06-05 18:02:55,416 INFO No tps control rule of NamingInstanceUpdate found,content =null
2025-06-05 18:02:55,417 WARN Tps point for NamingInstanceUpdate registered, But tps control manager is no limit implementation.
2025-06-05 18:02:55,417 WARN Tps point for NamingInstanceUpdate registered, But tps control manager is no limit implementation.
2025-06-05 18:02:55,418 INFO No tps control rule of NamingServiceRegister found,content =null
2025-06-05 18:02:55,418 WARN Tps point for NamingServiceRegister registered, But tps control manager is no limit implementation.
2025-06-05 18:02:55,419 INFO No tps control rule of NamingServiceListQuery found,content =null
2025-06-05 18:02:55,420 WARN Tps point for NamingServiceListQuery registered, But tps control manager is no limit implementation.
2025-06-05 18:02:55,421 INFO No tps control rule of NamingInstanceQuery found,content =null
2025-06-05 18:02:55,421 WARN Tps point for NamingInstanceQuery registered, But tps control manager is no limit implementation.
2025-06-05 18:02:55,421 INFO No tps control rule of NamingInstanceMetadataUpdate found,content =null
2025-06-05 18:02:55,422 WARN Tps point for NamingInstanceMetadataUpdate registered, But tps control manager is no limit implementation.
2025-06-05 18:02:55,422 WARN Tps point for NamingInstanceMetadataUpdate registered, But tps control manager is no limit implementation.
2025-06-05 18:02:55,423 INFO No tps control rule of NamingInstanceDeregister found,content =null
2025-06-05 18:02:55,423 WARN Tps point for NamingInstanceDeregister registered, But tps control manager is no limit implementation.
2025-06-05 18:02:55,424 WARN Tps point for NamingInstanceDeregister registered, But tps control manager is no limit implementation.
2025-06-05 18:02:55,424 WARN Tps point for ConfigPublish registered, But tps control manager is no limit implementation.
2025-06-05 18:02:55,425 WARN Tps point for NamingServiceDeregister registered, But tps control manager is no limit implementation.
2025-06-05 18:02:55,425 WARN Tps point for HttpHealthCheck registered, But tps control manager is no limit implementation.
2025-06-05 18:02:55,426 WARN Tps point for NamingServiceRegister registered, But tps control manager is no limit implementation.
2025-06-05 18:02:55,427 WARN Tps point for ConfigQuery registered, But tps control manager is no limit implementation.
2025-06-05 18:02:55,427 WARN Tps point for NamingInstanceMetadataUpdate registered, But tps control manager is no limit implementation.
2025-06-05 18:02:55,428 WARN Tps point for NamingInstanceMetadataUpdate registered, But tps control manager is no limit implementation.
2025-06-05 18:02:55,429 INFO No tps control rule of NamingServiceSubscribe found,content =null
2025-06-05 18:02:55,430 WARN Tps point for NamingServiceSubscribe registered, But tps control manager is no limit implementation.
2025-06-05 18:02:55,430 WARN Tps point for NamingInstanceRegister registered, But tps control manager is no limit implementation.
2025-06-05 18:02:55,431 WARN Tps point for NamingServiceQuery registered, But tps control manager is no limit implementation.
2025-06-05 18:02:55,431 WARN Tps point for NamingInstanceQuery registered, But tps control manager is no limit implementation.
2025-06-05 18:02:55,431 WARN Tps point for NamingServiceListQuery registered, But tps control manager is no limit implementation.
2025-06-05 18:02:55,432 WARN Tps point for NamingServiceSubscribe registered, But tps control manager is no limit implementation.
2025-06-05 18:12:42,307 INFO No tps control rule of NAMING_RPC_PUSH found,content =null
2025-06-05 18:12:42,308 WARN Tps point for NAMING_RPC_PUSH registered, But tps control manager is no limit implementation.
2025-06-05 18:12:42,309 INFO No tps control rule of NAMING_RPC_PUSH_SUCCESS found,content =null
2025-06-05 18:12:42,310 WARN Tps point for NAMING_RPC_PUSH_SUCCESS registered, But tps control manager is no limit implementation.
2025-06-05 18:12:42,310 INFO No tps control rule of NAMING_RPC_PUSH_FAIL found,content =null
2025-06-05 18:12:42,311 WARN Tps point for NAMING_RPC_PUSH_FAIL registered, But tps control manager is no limit implementation.
2025-06-05 18:12:42,312 INFO No tps control rule of NAMING_UDP_PUSH found,content =null
2025-06-05 18:12:42,312 WARN Tps point for NAMING_UDP_PUSH registered, But tps control manager is no limit implementation.
2025-06-05 18:12:42,315 INFO No tps control rule of NAMING_UDP_PUSH_SUCCESS found,content =null
2025-06-05 18:12:42,315 WARN Tps point for NAMING_UDP_PUSH_SUCCESS registered, But tps control manager is no limit implementation.
2025-06-05 18:12:42,315 INFO No tps control rule of NAMING_UDP_PUSH_FAIL found,content =null
2025-06-05 18:12:42,316 WARN Tps point for NAMING_UDP_PUSH_FAIL registered, But tps control manager is no limit implementation.
2025-06-05 18:12:42,316 INFO No tps control rule of NAMING_DISTRO_SYNC found,content =null
2025-06-05 18:12:42,317 WARN Tps point for NAMING_DISTRO_SYNC registered, But tps control manager is no limit implementation.
2025-06-05 18:12:42,318 INFO No tps control rule of NAMING_DISTRO_SYNC_SUCCESS found,content =null
2025-06-05 18:12:42,318 WARN Tps point for NAMING_DISTRO_SYNC_SUCCESS registered, But tps control manager is no limit implementation.
2025-06-05 18:12:42,319 INFO No tps control rule of NAMING_DISTRO_SYNC_FAIL found,content =null
2025-06-05 18:12:42,320 WARN Tps point for NAMING_DISTRO_SYNC_FAIL registered, But tps control manager is no limit implementation.
2025-06-05 18:12:42,320 INFO No tps control rule of NAMING_DISTRO_VERIFY found,content =null
2025-06-05 18:12:42,321 WARN Tps point for NAMING_DISTRO_VERIFY registered, But tps control manager is no limit implementation.
2025-06-05 18:12:42,321 INFO No tps control rule of NAMING_DISTRO_VERIFY_SUCCESS found,content =null
2025-06-05 18:12:42,322 WARN Tps point for NAMING_DISTRO_VERIFY_SUCCESS registered, But tps control manager is no limit implementation.
2025-06-05 18:12:42,322 INFO No tps control rule of NAMING_DISTRO_VERIFY_FAIL found,content =null
2025-06-05 18:12:42,323 WARN Tps point for NAMING_DISTRO_VERIFY_FAIL registered, But tps control manager is no limit implementation.

View File

@@ -0,0 +1,624 @@
2025-06-09 16:19:27,502 INFO Not configure type of control plugin, no limit control for current node.
2025-06-09 16:19:27,519 INFO Load connection metrics collector,size=2,[com.alibaba.nacos.config.server.service.LongPollingConnectionMetricsCollector@665e9289, com.alibaba.nacos.core.remote.LongConnectionMetricsCollector@6f603e89]
2025-06-09 16:19:27,521 INFO No connection rule content found ,use default empty rule
2025-06-09 16:19:27,558 INFO No tps control rule of CONFIG_PUSH_COUNT found,content =null
2025-06-09 16:19:27,559 WARN Tps point for CONFIG_PUSH_COUNT registered, But tps control manager is no limit implementation.
2025-06-09 16:19:27,562 INFO No tps control rule of CONFIG_PUSH_SUCCESS found,content =null
2025-06-09 16:19:27,563 WARN Tps point for CONFIG_PUSH_SUCCESS registered, But tps control manager is no limit implementation.
2025-06-09 16:19:27,564 INFO No tps control rule of CONFIG_PUSH_FAIL found,content =null
2025-06-09 16:19:27,564 WARN Tps point for CONFIG_PUSH_FAIL registered, But tps control manager is no limit implementation.
2025-06-09 16:19:33,899 INFO No tps control rule of ConfigQuery found,content =null
2025-06-09 16:19:33,901 WARN Tps point for ConfigQuery registered, But tps control manager is no limit implementation.
2025-06-09 16:19:33,901 INFO No tps control rule of ClusterConfigChangeNotify found,content =null
2025-06-09 16:19:33,902 WARN Tps point for ClusterConfigChangeNotify registered, But tps control manager is no limit implementation.
2025-06-09 16:19:33,917 INFO No tps control rule of ConfigListen found,content =null
2025-06-09 16:19:33,918 WARN Tps point for ConfigListen registered, But tps control manager is no limit implementation.
2025-06-09 16:19:33,919 INFO No tps control rule of ConfigRemove found,content =null
2025-06-09 16:19:33,919 WARN Tps point for ConfigRemove registered, But tps control manager is no limit implementation.
2025-06-09 16:19:33,921 INFO No tps control rule of ConfigPublish found,content =null
2025-06-09 16:19:33,922 WARN Tps point for ConfigPublish registered, But tps control manager is no limit implementation.
2025-06-09 16:19:33,923 INFO No tps control rule of HealthCheck found,content =null
2025-06-09 16:19:33,923 WARN Tps point for HealthCheck registered, But tps control manager is no limit implementation.
2025-06-09 16:19:33,924 INFO No tps control rule of RemoteNamingServiceQuery found,content =null
2025-06-09 16:19:33,925 WARN Tps point for RemoteNamingServiceQuery registered, But tps control manager is no limit implementation.
2025-06-09 16:19:33,925 INFO No tps control rule of RemoteNamingInstanceBatchRegister found,content =null
2025-06-09 16:19:33,926 WARN Tps point for RemoteNamingInstanceBatchRegister registered, But tps control manager is no limit implementation.
2025-06-09 16:19:33,926 INFO No tps control rule of RemoteNamingInstanceRegisterDeregister found,content =null
2025-06-09 16:19:33,927 WARN Tps point for RemoteNamingInstanceRegisterDeregister registered, But tps control manager is no limit implementation.
2025-06-09 16:19:33,928 INFO No tps control rule of RemoteNamingServiceListQuery found,content =null
2025-06-09 16:19:33,928 WARN Tps point for RemoteNamingServiceListQuery registered, But tps control manager is no limit implementation.
2025-06-09 16:19:33,929 INFO No tps control rule of RemoteNamingServiceSubscribeUnSubscribe found,content =null
2025-06-09 16:19:33,930 WARN Tps point for RemoteNamingServiceSubscribeUnSubscribe registered, But tps control manager is no limit implementation.
2025-06-09 16:19:33,930 WARN Tps point for RemoteNamingInstanceRegisterDeregister registered, But tps control manager is no limit implementation.
2025-06-09 16:19:33,931 INFO No tps control rule of NamingServiceUpdate found,content =null
2025-06-09 16:19:33,933 WARN Tps point for NamingServiceUpdate registered, But tps control manager is no limit implementation.
2025-06-09 16:19:33,934 INFO No tps control rule of NamingServiceListQuery found,content =null
2025-06-09 16:19:33,935 WARN Tps point for NamingServiceListQuery registered, But tps control manager is no limit implementation.
2025-06-09 16:19:33,935 INFO No tps control rule of NamingInstanceQuery found,content =null
2025-06-09 16:19:33,936 WARN Tps point for NamingInstanceQuery registered, But tps control manager is no limit implementation.
2025-06-09 16:19:33,936 INFO No tps control rule of NamingInstanceMetadataUpdate found,content =null
2025-06-09 16:19:33,937 WARN Tps point for NamingInstanceMetadataUpdate registered, But tps control manager is no limit implementation.
2025-06-09 16:19:33,938 INFO No tps control rule of NamingServiceSubscribe found,content =null
2025-06-09 16:19:33,938 WARN Tps point for NamingServiceSubscribe registered, But tps control manager is no limit implementation.
2025-06-09 16:19:33,939 INFO No tps control rule of NamingServiceRegister found,content =null
2025-06-09 16:19:33,939 WARN Tps point for NamingServiceRegister registered, But tps control manager is no limit implementation.
2025-06-09 16:19:33,940 INFO No tps control rule of NamingServiceDeregister found,content =null
2025-06-09 16:19:33,940 WARN Tps point for NamingServiceDeregister registered, But tps control manager is no limit implementation.
2025-06-09 16:19:33,941 WARN Tps point for NamingServiceDeregister registered, But tps control manager is no limit implementation.
2025-06-09 16:19:33,941 WARN Tps point for NamingServiceRegister registered, But tps control manager is no limit implementation.
2025-06-09 16:19:33,942 INFO No tps control rule of NamingInstanceUpdate found,content =null
2025-06-09 16:19:33,942 WARN Tps point for NamingInstanceUpdate registered, But tps control manager is no limit implementation.
2025-06-09 16:19:33,943 INFO No tps control rule of NamingServiceQuery found,content =null
2025-06-09 16:19:33,943 WARN Tps point for NamingServiceQuery registered, But tps control manager is no limit implementation.
2025-06-09 16:19:33,944 WARN Tps point for NamingInstanceMetadataUpdate registered, But tps control manager is no limit implementation.
2025-06-09 16:19:33,945 WARN Tps point for NamingServiceListQuery registered, But tps control manager is no limit implementation.
2025-06-09 16:19:33,945 INFO No tps control rule of NamingInstanceRegister found,content =null
2025-06-09 16:19:33,946 WARN Tps point for NamingInstanceRegister registered, But tps control manager is no limit implementation.
2025-06-09 16:19:33,946 WARN Tps point for NamingInstanceMetadataUpdate registered, But tps control manager is no limit implementation.
2025-06-09 16:19:33,947 INFO No tps control rule of NamingInstanceDeregister found,content =null
2025-06-09 16:19:33,947 WARN Tps point for NamingInstanceDeregister registered, But tps control manager is no limit implementation.
2025-06-09 16:19:33,948 WARN Tps point for NamingServiceQuery registered, But tps control manager is no limit implementation.
2025-06-09 16:19:33,951 INFO No tps control rule of HttpHealthCheck found,content =null
2025-06-09 16:19:33,951 WARN Tps point for HttpHealthCheck registered, But tps control manager is no limit implementation.
2025-06-09 16:19:33,952 WARN Tps point for HttpHealthCheck registered, But tps control manager is no limit implementation.
2025-06-09 16:19:33,952 WARN Tps point for NamingInstanceQuery registered, But tps control manager is no limit implementation.
2025-06-09 16:19:33,953 WARN Tps point for ConfigPublish registered, But tps control manager is no limit implementation.
2025-06-09 16:19:33,954 WARN Tps point for NamingServiceUpdate registered, But tps control manager is no limit implementation.
2025-06-09 16:19:33,955 WARN Tps point for NamingInstanceMetadataUpdate registered, But tps control manager is no limit implementation.
2025-06-09 16:19:33,955 WARN Tps point for NamingInstanceUpdate registered, But tps control manager is no limit implementation.
2025-06-09 16:19:33,955 WARN Tps point for ConfigQuery registered, But tps control manager is no limit implementation.
2025-06-09 16:19:33,956 WARN Tps point for NamingServiceSubscribe registered, But tps control manager is no limit implementation.
2025-06-09 16:19:33,956 WARN Tps point for NamingInstanceRegister registered, But tps control manager is no limit implementation.
2025-06-09 16:19:33,956 WARN Tps point for NamingInstanceDeregister registered, But tps control manager is no limit implementation.
2025-06-09 16:26:49,161 INFO Not configure type of control plugin, no limit control for current node.
2025-06-09 16:26:49,165 INFO Load connection metrics collector,size=2,[com.alibaba.nacos.config.server.service.LongPollingConnectionMetricsCollector@38f57b3d, com.alibaba.nacos.core.remote.LongConnectionMetricsCollector@3ce3db41]
2025-06-09 16:26:49,167 INFO No connection rule content found ,use default empty rule
2025-06-09 16:26:49,192 INFO No tps control rule of CONFIG_PUSH_COUNT found,content =null
2025-06-09 16:26:49,194 WARN Tps point for CONFIG_PUSH_COUNT registered, But tps control manager is no limit implementation.
2025-06-09 16:26:49,194 INFO No tps control rule of CONFIG_PUSH_SUCCESS found,content =null
2025-06-09 16:26:49,195 WARN Tps point for CONFIG_PUSH_SUCCESS registered, But tps control manager is no limit implementation.
2025-06-09 16:26:49,195 INFO No tps control rule of CONFIG_PUSH_FAIL found,content =null
2025-06-09 16:26:49,197 WARN Tps point for CONFIG_PUSH_FAIL registered, But tps control manager is no limit implementation.
2025-06-09 16:26:55,336 INFO No tps control rule of ConfigQuery found,content =null
2025-06-09 16:26:55,337 WARN Tps point for ConfigQuery registered, But tps control manager is no limit implementation.
2025-06-09 16:26:55,338 INFO No tps control rule of ClusterConfigChangeNotify found,content =null
2025-06-09 16:26:55,339 WARN Tps point for ClusterConfigChangeNotify registered, But tps control manager is no limit implementation.
2025-06-09 16:26:55,352 INFO No tps control rule of ConfigListen found,content =null
2025-06-09 16:26:55,353 WARN Tps point for ConfigListen registered, But tps control manager is no limit implementation.
2025-06-09 16:26:55,353 INFO No tps control rule of ConfigRemove found,content =null
2025-06-09 16:26:55,354 WARN Tps point for ConfigRemove registered, But tps control manager is no limit implementation.
2025-06-09 16:26:55,355 INFO No tps control rule of ConfigPublish found,content =null
2025-06-09 16:26:55,355 WARN Tps point for ConfigPublish registered, But tps control manager is no limit implementation.
2025-06-09 16:26:55,356 INFO No tps control rule of HealthCheck found,content =null
2025-06-09 16:26:55,356 WARN Tps point for HealthCheck registered, But tps control manager is no limit implementation.
2025-06-09 16:26:55,357 INFO No tps control rule of RemoteNamingServiceQuery found,content =null
2025-06-09 16:26:55,357 WARN Tps point for RemoteNamingServiceQuery registered, But tps control manager is no limit implementation.
2025-06-09 16:26:55,358 INFO No tps control rule of RemoteNamingInstanceBatchRegister found,content =null
2025-06-09 16:26:55,358 WARN Tps point for RemoteNamingInstanceBatchRegister registered, But tps control manager is no limit implementation.
2025-06-09 16:26:55,359 INFO No tps control rule of RemoteNamingInstanceRegisterDeregister found,content =null
2025-06-09 16:26:55,359 WARN Tps point for RemoteNamingInstanceRegisterDeregister registered, But tps control manager is no limit implementation.
2025-06-09 16:26:55,360 INFO No tps control rule of RemoteNamingServiceListQuery found,content =null
2025-06-09 16:26:55,360 WARN Tps point for RemoteNamingServiceListQuery registered, But tps control manager is no limit implementation.
2025-06-09 16:26:55,361 INFO No tps control rule of RemoteNamingServiceSubscribeUnSubscribe found,content =null
2025-06-09 16:26:55,361 WARN Tps point for RemoteNamingServiceSubscribeUnSubscribe registered, But tps control manager is no limit implementation.
2025-06-09 16:26:55,361 WARN Tps point for RemoteNamingInstanceRegisterDeregister registered, But tps control manager is no limit implementation.
2025-06-09 16:26:55,363 INFO No tps control rule of NamingInstanceUpdate found,content =null
2025-06-09 16:26:55,363 WARN Tps point for NamingInstanceUpdate registered, But tps control manager is no limit implementation.
2025-06-09 16:26:55,364 INFO No tps control rule of NamingInstanceRegister found,content =null
2025-06-09 16:26:55,365 WARN Tps point for NamingInstanceRegister registered, But tps control manager is no limit implementation.
2025-06-09 16:26:55,365 INFO No tps control rule of HttpHealthCheck found,content =null
2025-06-09 16:26:55,366 WARN Tps point for HttpHealthCheck registered, But tps control manager is no limit implementation.
2025-06-09 16:26:55,366 INFO No tps control rule of NamingInstanceMetadataUpdate found,content =null
2025-06-09 16:26:55,367 WARN Tps point for NamingInstanceMetadataUpdate registered, But tps control manager is no limit implementation.
2025-06-09 16:26:55,367 INFO No tps control rule of NamingInstanceDeregister found,content =null
2025-06-09 16:26:55,368 WARN Tps point for NamingInstanceDeregister registered, But tps control manager is no limit implementation.
2025-06-09 16:26:55,369 WARN Tps point for NamingInstanceRegister registered, But tps control manager is no limit implementation.
2025-06-09 16:26:55,369 WARN Tps point for NamingInstanceUpdate registered, But tps control manager is no limit implementation.
2025-06-09 16:26:55,370 WARN Tps point for NamingInstanceMetadataUpdate registered, But tps control manager is no limit implementation.
2025-06-09 16:26:55,370 WARN Tps point for ConfigPublish registered, But tps control manager is no limit implementation.
2025-06-09 16:26:55,371 WARN Tps point for ConfigQuery registered, But tps control manager is no limit implementation.
2025-06-09 16:26:55,372 INFO No tps control rule of NamingServiceQuery found,content =null
2025-06-09 16:26:55,372 WARN Tps point for NamingServiceQuery registered, But tps control manager is no limit implementation.
2025-06-09 16:26:55,373 WARN Tps point for NamingInstanceMetadataUpdate registered, But tps control manager is no limit implementation.
2025-06-09 16:26:55,373 INFO No tps control rule of NamingServiceDeregister found,content =null
2025-06-09 16:26:55,374 WARN Tps point for NamingServiceDeregister registered, But tps control manager is no limit implementation.
2025-06-09 16:26:55,374 WARN Tps point for NamingServiceDeregister registered, But tps control manager is no limit implementation.
2025-06-09 16:26:55,375 INFO No tps control rule of NamingServiceRegister found,content =null
2025-06-09 16:26:55,375 WARN Tps point for NamingServiceRegister registered, But tps control manager is no limit implementation.
2025-06-09 16:26:55,375 INFO No tps control rule of NamingInstanceQuery found,content =null
2025-06-09 16:26:55,376 WARN Tps point for NamingInstanceQuery registered, But tps control manager is no limit implementation.
2025-06-09 16:26:55,376 INFO No tps control rule of NamingServiceUpdate found,content =null
2025-06-09 16:26:55,377 WARN Tps point for NamingServiceUpdate registered, But tps control manager is no limit implementation.
2025-06-09 16:26:55,377 INFO No tps control rule of NamingServiceListQuery found,content =null
2025-06-09 16:26:55,378 WARN Tps point for NamingServiceListQuery registered, But tps control manager is no limit implementation.
2025-06-09 16:26:55,379 WARN Tps point for NamingServiceRegister registered, But tps control manager is no limit implementation.
2025-06-09 16:26:55,379 WARN Tps point for NamingInstanceDeregister registered, But tps control manager is no limit implementation.
2025-06-09 16:26:55,379 WARN Tps point for NamingInstanceMetadataUpdate registered, But tps control manager is no limit implementation.
2025-06-09 16:26:55,381 INFO No tps control rule of NamingServiceSubscribe found,content =null
2025-06-09 16:26:55,381 WARN Tps point for NamingServiceSubscribe registered, But tps control manager is no limit implementation.
2025-06-09 16:26:55,382 WARN Tps point for NamingServiceSubscribe registered, But tps control manager is no limit implementation.
2025-06-09 16:26:55,383 WARN Tps point for NamingServiceQuery registered, But tps control manager is no limit implementation.
2025-06-09 16:26:55,383 WARN Tps point for NamingServiceListQuery registered, But tps control manager is no limit implementation.
2025-06-09 16:26:55,384 WARN Tps point for HttpHealthCheck registered, But tps control manager is no limit implementation.
2025-06-09 16:26:55,384 WARN Tps point for NamingServiceUpdate registered, But tps control manager is no limit implementation.
2025-06-09 16:26:55,385 WARN Tps point for NamingInstanceQuery registered, But tps control manager is no limit implementation.
2025-06-09 16:35:37,573 INFO Not configure type of control plugin, no limit control for current node.
2025-06-09 16:35:37,577 INFO Load connection metrics collector,size=2,[com.alibaba.nacos.config.server.service.LongPollingConnectionMetricsCollector@38f57b3d, com.alibaba.nacos.core.remote.LongConnectionMetricsCollector@3ce3db41]
2025-06-09 16:35:37,579 INFO No connection rule content found ,use default empty rule
2025-06-09 16:35:37,613 INFO No tps control rule of CONFIG_PUSH_COUNT found,content =null
2025-06-09 16:35:37,614 WARN Tps point for CONFIG_PUSH_COUNT registered, But tps control manager is no limit implementation.
2025-06-09 16:35:37,615 INFO No tps control rule of CONFIG_PUSH_SUCCESS found,content =null
2025-06-09 16:35:37,616 WARN Tps point for CONFIG_PUSH_SUCCESS registered, But tps control manager is no limit implementation.
2025-06-09 16:35:37,616 INFO No tps control rule of CONFIG_PUSH_FAIL found,content =null
2025-06-09 16:35:37,617 WARN Tps point for CONFIG_PUSH_FAIL registered, But tps control manager is no limit implementation.
2025-06-09 16:35:42,689 INFO No tps control rule of ConfigQuery found,content =null
2025-06-09 16:35:42,691 WARN Tps point for ConfigQuery registered, But tps control manager is no limit implementation.
2025-06-09 16:35:42,691 INFO No tps control rule of ClusterConfigChangeNotify found,content =null
2025-06-09 16:35:42,692 WARN Tps point for ClusterConfigChangeNotify registered, But tps control manager is no limit implementation.
2025-06-09 16:35:42,708 INFO No tps control rule of ConfigListen found,content =null
2025-06-09 16:35:42,708 WARN Tps point for ConfigListen registered, But tps control manager is no limit implementation.
2025-06-09 16:35:42,709 INFO No tps control rule of ConfigRemove found,content =null
2025-06-09 16:35:42,710 WARN Tps point for ConfigRemove registered, But tps control manager is no limit implementation.
2025-06-09 16:35:42,710 INFO No tps control rule of ConfigPublish found,content =null
2025-06-09 16:35:42,711 WARN Tps point for ConfigPublish registered, But tps control manager is no limit implementation.
2025-06-09 16:35:42,711 INFO No tps control rule of HealthCheck found,content =null
2025-06-09 16:35:42,712 WARN Tps point for HealthCheck registered, But tps control manager is no limit implementation.
2025-06-09 16:35:42,712 INFO No tps control rule of RemoteNamingServiceQuery found,content =null
2025-06-09 16:35:42,713 WARN Tps point for RemoteNamingServiceQuery registered, But tps control manager is no limit implementation.
2025-06-09 16:35:42,713 INFO No tps control rule of RemoteNamingInstanceBatchRegister found,content =null
2025-06-09 16:35:42,714 WARN Tps point for RemoteNamingInstanceBatchRegister registered, But tps control manager is no limit implementation.
2025-06-09 16:35:42,714 INFO No tps control rule of RemoteNamingInstanceRegisterDeregister found,content =null
2025-06-09 16:35:42,715 WARN Tps point for RemoteNamingInstanceRegisterDeregister registered, But tps control manager is no limit implementation.
2025-06-09 16:35:42,715 INFO No tps control rule of RemoteNamingServiceListQuery found,content =null
2025-06-09 16:35:42,716 WARN Tps point for RemoteNamingServiceListQuery registered, But tps control manager is no limit implementation.
2025-06-09 16:35:42,716 INFO No tps control rule of RemoteNamingServiceSubscribeUnSubscribe found,content =null
2025-06-09 16:35:42,717 WARN Tps point for RemoteNamingServiceSubscribeUnSubscribe registered, But tps control manager is no limit implementation.
2025-06-09 16:35:42,717 WARN Tps point for RemoteNamingInstanceRegisterDeregister registered, But tps control manager is no limit implementation.
2025-06-09 16:35:42,718 INFO No tps control rule of NamingServiceListQuery found,content =null
2025-06-09 16:35:42,719 WARN Tps point for NamingServiceListQuery registered, But tps control manager is no limit implementation.
2025-06-09 16:35:42,719 INFO No tps control rule of NamingInstanceDeregister found,content =null
2025-06-09 16:35:42,720 WARN Tps point for NamingInstanceDeregister registered, But tps control manager is no limit implementation.
2025-06-09 16:35:42,720 INFO No tps control rule of NamingServiceRegister found,content =null
2025-06-09 16:35:42,720 WARN Tps point for NamingServiceRegister registered, But tps control manager is no limit implementation.
2025-06-09 16:35:42,721 INFO No tps control rule of NamingInstanceMetadataUpdate found,content =null
2025-06-09 16:35:42,721 WARN Tps point for NamingInstanceMetadataUpdate registered, But tps control manager is no limit implementation.
2025-06-09 16:35:42,722 INFO No tps control rule of NamingServiceDeregister found,content =null
2025-06-09 16:35:42,722 WARN Tps point for NamingServiceDeregister registered, But tps control manager is no limit implementation.
2025-06-09 16:35:42,723 WARN Tps point for NamingInstanceMetadataUpdate registered, But tps control manager is no limit implementation.
2025-06-09 16:35:42,723 WARN Tps point for ConfigQuery registered, But tps control manager is no limit implementation.
2025-06-09 16:35:42,724 INFO No tps control rule of HttpHealthCheck found,content =null
2025-06-09 16:35:42,724 WARN Tps point for HttpHealthCheck registered, But tps control manager is no limit implementation.
2025-06-09 16:35:42,724 WARN Tps point for NamingServiceDeregister registered, But tps control manager is no limit implementation.
2025-06-09 16:35:42,725 WARN Tps point for NamingInstanceMetadataUpdate registered, But tps control manager is no limit implementation.
2025-06-09 16:35:42,725 INFO No tps control rule of NamingInstanceQuery found,content =null
2025-06-09 16:35:42,725 WARN Tps point for NamingInstanceQuery registered, But tps control manager is no limit implementation.
2025-06-09 16:35:42,726 INFO No tps control rule of NamingServiceSubscribe found,content =null
2025-06-09 16:35:42,726 WARN Tps point for NamingServiceSubscribe registered, But tps control manager is no limit implementation.
2025-06-09 16:35:42,727 INFO No tps control rule of NamingServiceQuery found,content =null
2025-06-09 16:35:42,727 WARN Tps point for NamingServiceQuery registered, But tps control manager is no limit implementation.
2025-06-09 16:35:42,727 WARN Tps point for NamingInstanceDeregister registered, But tps control manager is no limit implementation.
2025-06-09 16:35:42,728 WARN Tps point for NamingServiceSubscribe registered, But tps control manager is no limit implementation.
2025-06-09 16:35:42,728 INFO No tps control rule of NamingInstanceRegister found,content =null
2025-06-09 16:35:42,728 WARN Tps point for NamingInstanceRegister registered, But tps control manager is no limit implementation.
2025-06-09 16:35:42,729 INFO No tps control rule of NamingServiceUpdate found,content =null
2025-06-09 16:35:42,729 WARN Tps point for NamingServiceUpdate registered, But tps control manager is no limit implementation.
2025-06-09 16:35:42,730 WARN Tps point for NamingServiceUpdate registered, But tps control manager is no limit implementation.
2025-06-09 16:35:42,730 WARN Tps point for NamingServiceQuery registered, But tps control manager is no limit implementation.
2025-06-09 16:35:42,730 WARN Tps point for NamingServiceListQuery registered, But tps control manager is no limit implementation.
2025-06-09 16:35:42,731 WARN Tps point for NamingInstanceRegister registered, But tps control manager is no limit implementation.
2025-06-09 16:35:42,732 INFO No tps control rule of NamingInstanceUpdate found,content =null
2025-06-09 16:35:42,732 WARN Tps point for NamingInstanceUpdate registered, But tps control manager is no limit implementation.
2025-06-09 16:35:42,733 WARN Tps point for ConfigPublish registered, But tps control manager is no limit implementation.
2025-06-09 16:35:42,733 WARN Tps point for NamingInstanceQuery registered, But tps control manager is no limit implementation.
2025-06-09 16:35:42,733 WARN Tps point for HttpHealthCheck registered, But tps control manager is no limit implementation.
2025-06-09 16:35:42,734 WARN Tps point for NamingServiceRegister registered, But tps control manager is no limit implementation.
2025-06-09 16:35:42,734 WARN Tps point for NamingInstanceMetadataUpdate registered, But tps control manager is no limit implementation.
2025-06-09 16:35:42,734 WARN Tps point for NamingInstanceUpdate registered, But tps control manager is no limit implementation.
2025-06-09 16:44:45,110 INFO No tps control rule of NAMING_RPC_PUSH found,content =null
2025-06-09 16:44:45,111 WARN Tps point for NAMING_RPC_PUSH registered, But tps control manager is no limit implementation.
2025-06-09 16:44:45,112 INFO No tps control rule of NAMING_RPC_PUSH_SUCCESS found,content =null
2025-06-09 16:44:45,113 WARN Tps point for NAMING_RPC_PUSH_SUCCESS registered, But tps control manager is no limit implementation.
2025-06-09 16:44:45,113 INFO No tps control rule of NAMING_RPC_PUSH_FAIL found,content =null
2025-06-09 16:44:45,114 WARN Tps point for NAMING_RPC_PUSH_FAIL registered, But tps control manager is no limit implementation.
2025-06-09 16:44:45,115 INFO No tps control rule of NAMING_UDP_PUSH found,content =null
2025-06-09 16:44:45,115 WARN Tps point for NAMING_UDP_PUSH registered, But tps control manager is no limit implementation.
2025-06-09 16:44:45,116 INFO No tps control rule of NAMING_UDP_PUSH_SUCCESS found,content =null
2025-06-09 16:44:45,118 WARN Tps point for NAMING_UDP_PUSH_SUCCESS registered, But tps control manager is no limit implementation.
2025-06-09 16:44:45,118 INFO No tps control rule of NAMING_UDP_PUSH_FAIL found,content =null
2025-06-09 16:44:45,119 WARN Tps point for NAMING_UDP_PUSH_FAIL registered, But tps control manager is no limit implementation.
2025-06-09 16:44:45,119 INFO No tps control rule of NAMING_DISTRO_SYNC found,content =null
2025-06-09 16:44:45,119 WARN Tps point for NAMING_DISTRO_SYNC registered, But tps control manager is no limit implementation.
2025-06-09 16:44:45,120 INFO No tps control rule of NAMING_DISTRO_SYNC_SUCCESS found,content =null
2025-06-09 16:44:45,120 WARN Tps point for NAMING_DISTRO_SYNC_SUCCESS registered, But tps control manager is no limit implementation.
2025-06-09 16:44:45,121 INFO No tps control rule of NAMING_DISTRO_SYNC_FAIL found,content =null
2025-06-09 16:44:45,122 WARN Tps point for NAMING_DISTRO_SYNC_FAIL registered, But tps control manager is no limit implementation.
2025-06-09 16:44:45,122 INFO No tps control rule of NAMING_DISTRO_VERIFY found,content =null
2025-06-09 16:44:45,123 WARN Tps point for NAMING_DISTRO_VERIFY registered, But tps control manager is no limit implementation.
2025-06-09 16:44:45,123 INFO No tps control rule of NAMING_DISTRO_VERIFY_SUCCESS found,content =null
2025-06-09 16:44:45,124 WARN Tps point for NAMING_DISTRO_VERIFY_SUCCESS registered, But tps control manager is no limit implementation.
2025-06-09 16:44:45,124 INFO No tps control rule of NAMING_DISTRO_VERIFY_FAIL found,content =null
2025-06-09 16:44:45,125 WARN Tps point for NAMING_DISTRO_VERIFY_FAIL registered, But tps control manager is no limit implementation.
2025-06-09 18:37:35,242 INFO Not configure type of control plugin, no limit control for current node.
2025-06-09 18:37:35,250 INFO Load connection metrics collector,size=2,[com.alibaba.nacos.config.server.service.LongPollingConnectionMetricsCollector@4275c20c, com.alibaba.nacos.core.remote.LongConnectionMetricsCollector@3fc9dfc5]
2025-06-09 18:37:35,253 INFO No connection rule content found ,use default empty rule
2025-06-09 18:37:35,289 INFO No tps control rule of CONFIG_PUSH_COUNT found,content =null
2025-06-09 18:37:35,290 WARN Tps point for CONFIG_PUSH_COUNT registered, But tps control manager is no limit implementation.
2025-06-09 18:37:35,291 INFO No tps control rule of CONFIG_PUSH_SUCCESS found,content =null
2025-06-09 18:37:35,292 WARN Tps point for CONFIG_PUSH_SUCCESS registered, But tps control manager is no limit implementation.
2025-06-09 18:37:35,293 INFO No tps control rule of CONFIG_PUSH_FAIL found,content =null
2025-06-09 18:37:35,294 WARN Tps point for CONFIG_PUSH_FAIL registered, But tps control manager is no limit implementation.
2025-06-09 18:37:41,502 INFO No tps control rule of ConfigQuery found,content =null
2025-06-09 18:37:41,503 WARN Tps point for ConfigQuery registered, But tps control manager is no limit implementation.
2025-06-09 18:37:41,504 INFO No tps control rule of ClusterConfigChangeNotify found,content =null
2025-06-09 18:37:41,505 WARN Tps point for ClusterConfigChangeNotify registered, But tps control manager is no limit implementation.
2025-06-09 18:37:41,521 INFO No tps control rule of ConfigListen found,content =null
2025-06-09 18:37:41,522 WARN Tps point for ConfigListen registered, But tps control manager is no limit implementation.
2025-06-09 18:37:41,524 INFO No tps control rule of ConfigRemove found,content =null
2025-06-09 18:37:41,525 WARN Tps point for ConfigRemove registered, But tps control manager is no limit implementation.
2025-06-09 18:37:41,526 INFO No tps control rule of ConfigPublish found,content =null
2025-06-09 18:37:41,527 WARN Tps point for ConfigPublish registered, But tps control manager is no limit implementation.
2025-06-09 18:37:41,527 INFO No tps control rule of HealthCheck found,content =null
2025-06-09 18:37:41,528 WARN Tps point for HealthCheck registered, But tps control manager is no limit implementation.
2025-06-09 18:37:41,529 INFO No tps control rule of RemoteNamingServiceQuery found,content =null
2025-06-09 18:37:41,529 WARN Tps point for RemoteNamingServiceQuery registered, But tps control manager is no limit implementation.
2025-06-09 18:37:41,530 INFO No tps control rule of RemoteNamingInstanceBatchRegister found,content =null
2025-06-09 18:37:41,531 WARN Tps point for RemoteNamingInstanceBatchRegister registered, But tps control manager is no limit implementation.
2025-06-09 18:37:41,532 INFO No tps control rule of RemoteNamingInstanceRegisterDeregister found,content =null
2025-06-09 18:37:41,533 WARN Tps point for RemoteNamingInstanceRegisterDeregister registered, But tps control manager is no limit implementation.
2025-06-09 18:37:41,533 INFO No tps control rule of RemoteNamingServiceListQuery found,content =null
2025-06-09 18:37:41,534 WARN Tps point for RemoteNamingServiceListQuery registered, But tps control manager is no limit implementation.
2025-06-09 18:37:41,535 INFO No tps control rule of RemoteNamingServiceSubscribeUnSubscribe found,content =null
2025-06-09 18:37:41,535 WARN Tps point for RemoteNamingServiceSubscribeUnSubscribe registered, But tps control manager is no limit implementation.
2025-06-09 18:37:41,536 WARN Tps point for RemoteNamingInstanceRegisterDeregister registered, But tps control manager is no limit implementation.
2025-06-09 18:37:41,538 INFO No tps control rule of NamingServiceSubscribe found,content =null
2025-06-09 18:37:41,538 WARN Tps point for NamingServiceSubscribe registered, But tps control manager is no limit implementation.
2025-06-09 18:37:41,539 INFO No tps control rule of NamingInstanceQuery found,content =null
2025-06-09 18:37:41,540 WARN Tps point for NamingInstanceQuery registered, But tps control manager is no limit implementation.
2025-06-09 18:37:41,540 INFO No tps control rule of NamingInstanceDeregister found,content =null
2025-06-09 18:37:41,541 WARN Tps point for NamingInstanceDeregister registered, But tps control manager is no limit implementation.
2025-06-09 18:37:41,541 INFO No tps control rule of HttpHealthCheck found,content =null
2025-06-09 18:37:41,542 WARN Tps point for HttpHealthCheck registered, But tps control manager is no limit implementation.
2025-06-09 18:37:41,542 WARN Tps point for ConfigQuery registered, But tps control manager is no limit implementation.
2025-06-09 18:37:41,543 INFO No tps control rule of NamingServiceUpdate found,content =null
2025-06-09 18:37:41,543 WARN Tps point for NamingServiceUpdate registered, But tps control manager is no limit implementation.
2025-06-09 18:37:41,544 INFO No tps control rule of NamingInstanceRegister found,content =null
2025-06-09 18:37:41,544 WARN Tps point for NamingInstanceRegister registered, But tps control manager is no limit implementation.
2025-06-09 18:37:41,544 INFO No tps control rule of NamingInstanceMetadataUpdate found,content =null
2025-06-09 18:37:41,545 WARN Tps point for NamingInstanceMetadataUpdate registered, But tps control manager is no limit implementation.
2025-06-09 18:37:41,545 INFO No tps control rule of NamingServiceRegister found,content =null
2025-06-09 18:37:41,545 WARN Tps point for NamingServiceRegister registered, But tps control manager is no limit implementation.
2025-06-09 18:37:41,545 INFO No tps control rule of NamingServiceListQuery found,content =null
2025-06-09 18:37:41,546 WARN Tps point for NamingServiceListQuery registered, But tps control manager is no limit implementation.
2025-06-09 18:37:41,546 WARN Tps point for NamingInstanceMetadataUpdate registered, But tps control manager is no limit implementation.
2025-06-09 18:37:41,547 WARN Tps point for NamingInstanceQuery registered, But tps control manager is no limit implementation.
2025-06-09 18:37:41,547 WARN Tps point for NamingInstanceMetadataUpdate registered, But tps control manager is no limit implementation.
2025-06-09 18:37:41,548 WARN Tps point for NamingInstanceDeregister registered, But tps control manager is no limit implementation.
2025-06-09 18:37:41,548 INFO No tps control rule of NamingInstanceUpdate found,content =null
2025-06-09 18:37:41,549 WARN Tps point for NamingInstanceUpdate registered, But tps control manager is no limit implementation.
2025-06-09 18:37:41,549 WARN Tps point for NamingInstanceUpdate registered, But tps control manager is no limit implementation.
2025-06-09 18:37:41,549 WARN Tps point for NamingServiceSubscribe registered, But tps control manager is no limit implementation.
2025-06-09 18:37:41,550 INFO No tps control rule of NamingServiceDeregister found,content =null
2025-06-09 18:37:41,550 WARN Tps point for NamingServiceDeregister registered, But tps control manager is no limit implementation.
2025-06-09 18:37:41,551 INFO No tps control rule of NamingServiceQuery found,content =null
2025-06-09 18:37:41,551 WARN Tps point for NamingServiceQuery registered, But tps control manager is no limit implementation.
2025-06-09 18:37:41,551 WARN Tps point for NamingServiceRegister registered, But tps control manager is no limit implementation.
2025-06-09 18:37:41,552 WARN Tps point for NamingInstanceMetadataUpdate registered, But tps control manager is no limit implementation.
2025-06-09 18:37:41,552 WARN Tps point for NamingServiceDeregister registered, But tps control manager is no limit implementation.
2025-06-09 18:37:41,553 WARN Tps point for ConfigPublish registered, But tps control manager is no limit implementation.
2025-06-09 18:37:41,553 WARN Tps point for NamingServiceUpdate registered, But tps control manager is no limit implementation.
2025-06-09 18:37:41,553 WARN Tps point for NamingInstanceRegister registered, But tps control manager is no limit implementation.
2025-06-09 18:37:41,554 WARN Tps point for NamingServiceListQuery registered, But tps control manager is no limit implementation.
2025-06-09 18:37:41,554 WARN Tps point for HttpHealthCheck registered, But tps control manager is no limit implementation.
2025-06-09 18:37:41,555 WARN Tps point for NamingServiceQuery registered, But tps control manager is no limit implementation.

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,50 @@
2025-06-05 18:02:32,711 INFO Initializes the Raft protocol, raft-config info : {"data":{},"members":["2dc99c6b3203:7848"],"strictMode":false,"selfMember":"2dc99c6b3203:7848"}
2025-06-05 18:02:33,384 INFO ========= The raft protocol is starting... =========
2025-06-05 18:02:33,480 INFO ========= The raft protocol start finished... =========
2025-06-05 18:02:33,486 INFO create raft group : naming_persistent_service
2025-06-05 18:02:34,106 INFO This Raft event changes : RaftEvent{groupId='naming_persistent_service', leader='2dc99c6b3203:7848', term=1, raftClusterInfo=[2dc99c6b3203:7848]}
2025-06-05 18:02:34,203 INFO create raft group : naming_persistent_service_v2
2025-06-05 18:02:34,368 INFO create raft group : naming_instance_metadata
2025-06-05 18:02:34,375 INFO This Raft event changes : RaftEvent{groupId='naming_persistent_service_v2', leader='2dc99c6b3203:7848', term=1, raftClusterInfo=[2dc99c6b3203:7848]}
2025-06-05 18:02:34,535 INFO create raft group : naming_service_metadata
2025-06-05 18:02:34,546 INFO This Raft event changes : RaftEvent{groupId='naming_instance_metadata', leader='2dc99c6b3203:7848', term=1, raftClusterInfo=[2dc99c6b3203:7848]}
2025-06-05 18:02:34,788 INFO This Raft event changes : RaftEvent{groupId='naming_service_metadata', leader='2dc99c6b3203:7848', term=1, raftClusterInfo=[2dc99c6b3203:7848]}
2025-06-05 18:02:35,718 INFO shutdown jraft server
2025-06-05 18:02:35,721 INFO ========= The raft protocol is starting to close =========
2025-06-05 18:02:35,915 INFO ========= The raft protocol has been closed =========
2025-06-05 18:02:51,234 INFO Initializes the Raft protocol, raft-config info : {"data":{},"members":["2dc99c6b3203:7848"],"strictMode":false,"selfMember":"2dc99c6b3203:7848"}
2025-06-05 18:02:51,701 INFO ========= The raft protocol is starting... =========
2025-06-05 18:02:51,742 INFO ========= The raft protocol start finished... =========
2025-06-05 18:02:51,751 INFO create raft group : naming_persistent_service
2025-06-05 18:02:52,365 INFO This Raft event changes : RaftEvent{groupId='naming_persistent_service', leader='2dc99c6b3203:7848', term=2, raftClusterInfo=[2dc99c6b3203:7848]}
2025-06-05 18:02:52,464 INFO create raft group : naming_persistent_service_v2
2025-06-05 18:02:52,620 INFO This Raft event changes : RaftEvent{groupId='naming_persistent_service_v2', leader='2dc99c6b3203:7848', term=2, raftClusterInfo=[2dc99c6b3203:7848]}
2025-06-05 18:02:52,625 INFO create raft group : naming_instance_metadata
2025-06-05 18:02:52,779 INFO create raft group : naming_service_metadata
2025-06-05 18:02:52,780 INFO This Raft event changes : RaftEvent{groupId='naming_instance_metadata', leader='2dc99c6b3203:7848', term=2, raftClusterInfo=[2dc99c6b3203:7848]}
2025-06-05 18:02:52,987 INFO This Raft event changes : RaftEvent{groupId='naming_service_metadata', leader='2dc99c6b3203:7848', term=2, raftClusterInfo=[2dc99c6b3203:7848]}

View File

@@ -0,0 +1,130 @@
2025-06-09 16:19:30,005 INFO Initializes the Raft protocol, raft-config info : {"data":{},"members":["2dc99c6b3203:7848"],"strictMode":false,"selfMember":"2dc99c6b3203:7848"}
2025-06-09 16:19:30,442 INFO ========= The raft protocol is starting... =========
2025-06-09 16:19:30,482 INFO ========= The raft protocol start finished... =========
2025-06-09 16:19:30,486 INFO create raft group : naming_persistent_service
2025-06-09 16:19:31,029 INFO This Raft event changes : RaftEvent{groupId='naming_persistent_service', leader='null', term=null, raftClusterInfo=[2dc99c6b3203:7848]}
2025-06-09 16:19:31,103 INFO This Raft event changes : RaftEvent{groupId='naming_persistent_service', leader='2dc99c6b3203:7848', term=3, raftClusterInfo=[2dc99c6b3203:7848]}
2025-06-09 16:19:31,181 INFO create raft group : naming_persistent_service_v2
2025-06-09 16:19:31,337 INFO snapshot start to load from : /home/nacos/data/protocol/raft/naming_persistent_service_v2/snapshot/snapshot_2
2025-06-09 16:19:31,347 INFO snapshot success to load from : /home/nacos/data/protocol/raft/naming_persistent_service_v2/snapshot/snapshot_2
2025-06-09 16:19:31,349 INFO This Raft event changes : RaftEvent{groupId='naming_persistent_service_v2', leader='null', term=null, raftClusterInfo=[2dc99c6b3203:7848]}
2025-06-09 16:19:31,379 INFO This Raft event changes : RaftEvent{groupId='naming_persistent_service_v2', leader='2dc99c6b3203:7848', term=3, raftClusterInfo=[2dc99c6b3203:7848]}
2025-06-09 16:19:31,394 INFO create raft group : naming_instance_metadata
2025-06-09 16:19:31,528 INFO This Raft event changes : RaftEvent{groupId='naming_instance_metadata', leader='null', term=null, raftClusterInfo=[2dc99c6b3203:7848]}
2025-06-09 16:19:31,557 INFO create raft group : naming_service_metadata
2025-06-09 16:19:31,560 INFO This Raft event changes : RaftEvent{groupId='naming_instance_metadata', leader='2dc99c6b3203:7848', term=3, raftClusterInfo=[2dc99c6b3203:7848]}
2025-06-09 16:19:31,666 INFO This Raft event changes : RaftEvent{groupId='naming_service_metadata', leader='null', term=null, raftClusterInfo=[2dc99c6b3203:7848]}
2025-06-09 16:19:31,702 INFO This Raft event changes : RaftEvent{groupId='naming_service_metadata', leader='2dc99c6b3203:7848', term=3, raftClusterInfo=[2dc99c6b3203:7848]}
2025-06-09 16:26:37,003 INFO shutdown jraft server
2025-06-09 16:26:37,005 INFO ========= The raft protocol is starting to close =========
2025-06-09 16:26:37,174 INFO ========= The raft protocol has been closed =========
2025-06-09 16:26:51,392 INFO Initializes the Raft protocol, raft-config info : {"data":{},"members":["2dc99c6b3203:7848"],"strictMode":false,"selfMember":"2dc99c6b3203:7848"}
2025-06-09 16:26:51,777 INFO ========= The raft protocol is starting... =========
2025-06-09 16:26:51,815 INFO ========= The raft protocol start finished... =========
2025-06-09 16:26:51,819 INFO create raft group : naming_persistent_service
2025-06-09 16:26:52,367 INFO This Raft event changes : RaftEvent{groupId='naming_persistent_service', leader='null', term=null, raftClusterInfo=[2dc99c6b3203:7848]}
2025-06-09 16:26:52,445 INFO This Raft event changes : RaftEvent{groupId='naming_persistent_service', leader='2dc99c6b3203:7848', term=4, raftClusterInfo=[2dc99c6b3203:7848]}
2025-06-09 16:26:52,517 INFO create raft group : naming_persistent_service_v2
2025-06-09 16:26:52,685 INFO snapshot start to load from : /home/nacos/data/protocol/raft/naming_persistent_service_v2/snapshot/snapshot_2
2025-06-09 16:26:52,695 INFO snapshot success to load from : /home/nacos/data/protocol/raft/naming_persistent_service_v2/snapshot/snapshot_2
2025-06-09 16:26:52,697 INFO This Raft event changes : RaftEvent{groupId='naming_persistent_service_v2', leader='null', term=null, raftClusterInfo=[2dc99c6b3203:7848]}
2025-06-09 16:26:52,732 INFO This Raft event changes : RaftEvent{groupId='naming_persistent_service_v2', leader='2dc99c6b3203:7848', term=4, raftClusterInfo=[2dc99c6b3203:7848]}
2025-06-09 16:26:52,744 INFO create raft group : naming_instance_metadata
2025-06-09 16:26:52,889 INFO This Raft event changes : RaftEvent{groupId='naming_instance_metadata', leader='null', term=null, raftClusterInfo=[2dc99c6b3203:7848]}
2025-06-09 16:26:52,924 INFO create raft group : naming_service_metadata
2025-06-09 16:26:52,924 INFO This Raft event changes : RaftEvent{groupId='naming_instance_metadata', leader='2dc99c6b3203:7848', term=4, raftClusterInfo=[2dc99c6b3203:7848]}
2025-06-09 16:26:53,027 INFO This Raft event changes : RaftEvent{groupId='naming_service_metadata', leader='null', term=null, raftClusterInfo=[2dc99c6b3203:7848]}
2025-06-09 16:26:53,080 INFO This Raft event changes : RaftEvent{groupId='naming_service_metadata', leader='2dc99c6b3203:7848', term=4, raftClusterInfo=[2dc99c6b3203:7848]}
2025-06-09 16:35:39,598 INFO Initializes the Raft protocol, raft-config info : {"data":{},"members":["2dc99c6b3203:7848"],"strictMode":false,"selfMember":"2dc99c6b3203:7848"}
2025-06-09 16:35:39,081 INFO ========= The raft protocol is starting... =========
2025-06-09 16:35:39,124 INFO ========= The raft protocol start finished... =========
2025-06-09 16:35:39,130 INFO create raft group : naming_persistent_service
2025-06-09 16:35:39,669 INFO This Raft event changes : RaftEvent{groupId='naming_persistent_service', leader='null', term=null, raftClusterInfo=[2dc99c6b3203:7848]}
2025-06-09 16:35:39,765 INFO This Raft event changes : RaftEvent{groupId='naming_persistent_service', leader='2dc99c6b3203:7848', term=5, raftClusterInfo=[2dc99c6b3203:7848]}
2025-06-09 16:35:39,855 INFO create raft group : naming_persistent_service_v2
2025-06-09 16:35:40,011 INFO snapshot start to load from : /home/nacos/data/protocol/raft/naming_persistent_service_v2/snapshot/snapshot_2
2025-06-09 16:35:40,022 INFO snapshot success to load from : /home/nacos/data/protocol/raft/naming_persistent_service_v2/snapshot/snapshot_2
2025-06-09 16:35:40,023 INFO This Raft event changes : RaftEvent{groupId='naming_persistent_service_v2', leader='null', term=null, raftClusterInfo=[2dc99c6b3203:7848]}
2025-06-09 16:35:40,055 INFO This Raft event changes : RaftEvent{groupId='naming_persistent_service_v2', leader='2dc99c6b3203:7848', term=5, raftClusterInfo=[2dc99c6b3203:7848]}
2025-06-09 16:35:40,067 INFO create raft group : naming_instance_metadata
2025-06-09 16:35:40,189 INFO This Raft event changes : RaftEvent{groupId='naming_instance_metadata', leader='null', term=null, raftClusterInfo=[2dc99c6b3203:7848]}
2025-06-09 16:35:40,225 INFO create raft group : naming_service_metadata
2025-06-09 16:35:40,230 INFO This Raft event changes : RaftEvent{groupId='naming_instance_metadata', leader='2dc99c6b3203:7848', term=5, raftClusterInfo=[2dc99c6b3203:7848]}
2025-06-09 16:35:40,327 INFO This Raft event changes : RaftEvent{groupId='naming_service_metadata', leader='null', term=null, raftClusterInfo=[2dc99c6b3203:7848]}
2025-06-09 16:35:40,377 INFO This Raft event changes : RaftEvent{groupId='naming_service_metadata', leader='2dc99c6b3203:7848', term=5, raftClusterInfo=[2dc99c6b3203:7848]}
2025-06-09 18:37:37,588 INFO Initializes the Raft protocol, raft-config info : {"data":{},"members":["d229613e5681:7848"],"strictMode":false,"selfMember":"d229613e5681:7848"}
2025-06-09 18:37:38,041 INFO ========= The raft protocol is starting... =========
2025-06-09 18:37:38,084 INFO ========= The raft protocol start finished... =========
2025-06-09 18:37:38,089 INFO create raft group : naming_persistent_service
2025-06-09 18:37:38,639 INFO This Raft event changes : RaftEvent{groupId='naming_persistent_service', leader='d229613e5681:7848', term=1, raftClusterInfo=[d229613e5681:7848]}
2025-06-09 18:37:38,712 INFO create raft group : naming_persistent_service_v2
2025-06-09 18:37:38,922 INFO This Raft event changes : RaftEvent{groupId='naming_persistent_service_v2', leader='d229613e5681:7848', term=1, raftClusterInfo=[d229613e5681:7848]}
2025-06-09 18:37:38,929 INFO create raft group : naming_instance_metadata
2025-06-09 18:37:39,071 INFO create raft group : naming_service_metadata
2025-06-09 18:37:39,080 INFO This Raft event changes : RaftEvent{groupId='naming_instance_metadata', leader='d229613e5681:7848', term=1, raftClusterInfo=[d229613e5681:7848]}
2025-06-09 18:37:39,233 INFO This Raft event changes : RaftEvent{groupId='naming_service_metadata', leader='d229613e5681:7848', term=1, raftClusterInfo=[d229613e5681:7848]}

View File

@@ -0,0 +1,228 @@
2025-06-05 18:09:02,571 INFO Connection transportReady,connectionId = 1749118142571_172.21.0.1_33128
2025-06-05 18:09:24,884 INFO Connection transportTerminated,connectionId = 1749118142571_172.21.0.1_33128
2025-06-05 18:09:24,892 INFO [1749118142571_172.21.0.1_33128]client disconnected,clear config listen context
2025-06-05 18:09:28,619 INFO Connection transportReady,connectionId = 1749118168619_172.21.0.1_38994
2025-06-05 18:09:38,598 INFO Connection transportReady,connectionId = 1749118178598_172.21.0.1_41178
2025-06-05 18:09:43,665 INFO Connection transportReady,connectionId = 1749118183665_172.21.0.1_41190
2025-06-05 18:09:53,894 INFO Connection transportTerminated,connectionId = 1749118168619_172.21.0.1_38994
2025-06-05 18:09:53,898 INFO [1749118168619_172.21.0.1_38994]client disconnected,clear config listen context
2025-06-05 18:09:58,983 INFO Connection transportReady,connectionId = 1749118198983_172.21.0.1_39662
2025-06-05 18:10:00,482 INFO Connection transportTerminated,connectionId = 1749118178598_172.21.0.1_41178
2025-06-05 18:10:00,485 INFO [1749118178598_172.21.0.1_41178]client disconnected,clear config listen context
2025-06-05 18:10:33,359 INFO Connection transportReady,connectionId = 1749118233359_172.21.0.1_41996
2025-06-05 18:11:00,740 INFO Connection transportReady,connectionId = 1749118260740_172.21.0.1_55768
2025-06-05 18:11:12,517 INFO Connection transportReady,connectionId = 1749118272517_172.21.0.1_44198
2025-06-05 18:11:50,105 INFO Connection transportReady,connectionId = 1749118310105_172.21.0.1_55718
2025-06-05 18:13:32,532 INFO Connection transportReady,connectionId = 1749118412532_172.21.0.1_50000
2025-06-05 18:13:59,082 INFO Connection transportReady,connectionId = 1749118439082_172.21.0.1_33538
2025-06-05 18:18:33,651 INFO Connection transportReady,connectionId = 1749118713651_172.21.0.1_59180
2025-06-05 18:20:10,876 INFO Connection transportTerminated,connectionId = 1749118713651_172.21.0.1_59180
2025-06-05 18:20:10,887 INFO [1749118713651_172.21.0.1_59180]client disconnected,clear config listen context
2025-06-05 18:20:29,459 INFO Connection transportReady,connectionId = 1749118829459_172.21.0.1_43302
2025-06-05 18:21:17,506 INFO Connection transportTerminated,connectionId = 1749118829459_172.21.0.1_43302
2025-06-05 18:21:17,508 INFO [1749118829459_172.21.0.1_43302]client disconnected,clear config listen context
2025-06-05 18:22:00,634 INFO Connection transportReady,connectionId = 1749118920634_172.21.0.1_49042
2025-06-05 18:22:31,504 INFO Connection transportTerminated,connectionId = 1749118920634_172.21.0.1_49042
2025-06-05 18:22:31,507 INFO [1749118920634_172.21.0.1_49042]client disconnected,clear config listen context
2025-06-05 18:54:11,981 INFO Connection transportTerminated,connectionId = 1749118198983_172.21.0.1_39662
2025-06-05 18:54:11,991 WARN [1749118198983_172.21.0.1_39662] connection close bi stream exception : {}
java.lang.IllegalStateException: call already closed
at com.google.common.base.Preconditions.checkState(Preconditions.java:512)
at io.grpc.internal.ServerCallImpl.closeInternal(ServerCallImpl.java:218)
at io.grpc.internal.ServerCallImpl.close(ServerCallImpl.java:213)
at io.grpc.stub.ServerCalls$ServerCallStreamObserverImpl.onCompleted(ServerCalls.java:395)
at com.alibaba.nacos.core.remote.grpc.GrpcConnection.closeBiStream(GrpcConnection.java:205)
at com.alibaba.nacos.core.remote.grpc.GrpcConnection.close(GrpcConnection.java:190)
at com.alibaba.nacos.core.remote.ConnectionManager.unregister(ConnectionManager.java:158)
at com.alibaba.nacos.core.remote.grpc.AddressTransportFilter.transportTerminated(AddressTransportFilter.java:77)
at io.grpc.internal.ServerImpl$ServerTransportListenerImpl.transportTerminated(ServerImpl.java:456)
at io.grpc.netty.shaded.io.grpc.netty.NettyServerTransport.notifyTerminated(NettyServerTransport.java:213)
at io.grpc.netty.shaded.io.grpc.netty.NettyServerTransport.access$100(NettyServerTransport.java:51)
at io.grpc.netty.shaded.io.grpc.netty.NettyServerTransport$1TerminationNotifier.operationComplete(NettyServerTransport.java:147)
at io.grpc.netty.shaded.io.grpc.netty.NettyServerTransport$1TerminationNotifier.operationComplete(NettyServerTransport.java:140)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.notifyListeners0(DefaultPromise.java:583)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:559)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.setSuccess0(DefaultPromise.java:625)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.trySuccess(DefaultPromise.java:105)
at io.grpc.netty.shaded.io.netty.channel.DefaultChannelPromise.trySuccess(DefaultChannelPromise.java:84)
at io.grpc.netty.shaded.io.netty.channel.AbstractChannel$CloseFuture.setClosed(AbstractChannel.java:1164)
at io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.doClose0(AbstractChannel.java:755)
at io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.close(AbstractChannel.java:731)
at io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.close(AbstractChannel.java:620)
at io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollChannel$AbstractEpollUnsafe.shutdownInput(AbstractEpollChannel.java:522)
at io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady(AbstractEpollStreamChannel.java:823)
at io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.processReady(EpollEventLoop.java:509)
at io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:407)
at io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
at io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.lang.Thread.run(Thread.java:750)
2025-06-05 18:54:11,997 INFO [1749118198983_172.21.0.1_39662]client disconnected,clear config listen context
2025-06-05 18:54:12,573 INFO Connection transportTerminated,connectionId = 1749118183665_172.21.0.1_41190
2025-06-05 18:54:12,576 INFO [1749118183665_172.21.0.1_41190]client disconnected,clear config listen context
2025-06-05 18:54:12,590 INFO Connection transportTerminated,connectionId = 1749118260740_172.21.0.1_55768
2025-06-05 18:54:12,592 WARN [1749118260740_172.21.0.1_55768] connection close bi stream exception : {}
java.lang.IllegalStateException: call already closed
at com.google.common.base.Preconditions.checkState(Preconditions.java:512)
at io.grpc.internal.ServerCallImpl.closeInternal(ServerCallImpl.java:218)
at io.grpc.internal.ServerCallImpl.close(ServerCallImpl.java:213)
at io.grpc.stub.ServerCalls$ServerCallStreamObserverImpl.onCompleted(ServerCalls.java:395)
at com.alibaba.nacos.core.remote.grpc.GrpcConnection.closeBiStream(GrpcConnection.java:205)
at com.alibaba.nacos.core.remote.grpc.GrpcConnection.close(GrpcConnection.java:190)
at com.alibaba.nacos.core.remote.ConnectionManager.unregister(ConnectionManager.java:158)
at com.alibaba.nacos.core.remote.grpc.AddressTransportFilter.transportTerminated(AddressTransportFilter.java:77)
at io.grpc.internal.ServerImpl$ServerTransportListenerImpl.transportTerminated(ServerImpl.java:456)
at io.grpc.netty.shaded.io.grpc.netty.NettyServerTransport.notifyTerminated(NettyServerTransport.java:213)
at io.grpc.netty.shaded.io.grpc.netty.NettyServerTransport.access$100(NettyServerTransport.java:51)
at io.grpc.netty.shaded.io.grpc.netty.NettyServerTransport$1TerminationNotifier.operationComplete(NettyServerTransport.java:147)
at io.grpc.netty.shaded.io.grpc.netty.NettyServerTransport$1TerminationNotifier.operationComplete(NettyServerTransport.java:140)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.notifyListeners0(DefaultPromise.java:583)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:559)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.setSuccess0(DefaultPromise.java:625)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.trySuccess(DefaultPromise.java:105)
at io.grpc.netty.shaded.io.netty.channel.DefaultChannelPromise.trySuccess(DefaultChannelPromise.java:84)
at io.grpc.netty.shaded.io.netty.channel.AbstractChannel$CloseFuture.setClosed(AbstractChannel.java:1164)
at io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.doClose0(AbstractChannel.java:755)
at io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.close(AbstractChannel.java:731)
at io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.close(AbstractChannel.java:620)
at io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollChannel$AbstractEpollUnsafe.shutdownInput(AbstractEpollChannel.java:522)
at io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady(AbstractEpollStreamChannel.java:823)
at io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.processReady(EpollEventLoop.java:509)
at io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:407)
at io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
at io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.lang.Thread.run(Thread.java:750)
2025-06-05 18:54:12,595 INFO [1749118260740_172.21.0.1_55768]client disconnected,clear config listen context
2025-06-05 18:54:12,623 INFO Connection transportTerminated,connectionId = 1749118439082_172.21.0.1_33538
2025-06-05 18:54:12,626 WARN [1749118439082_172.21.0.1_33538] connection close bi stream exception : {}
java.lang.IllegalStateException: call already closed
at com.google.common.base.Preconditions.checkState(Preconditions.java:512)
at io.grpc.internal.ServerCallImpl.closeInternal(ServerCallImpl.java:218)
at io.grpc.internal.ServerCallImpl.close(ServerCallImpl.java:213)
at io.grpc.stub.ServerCalls$ServerCallStreamObserverImpl.onCompleted(ServerCalls.java:395)
at com.alibaba.nacos.core.remote.grpc.GrpcConnection.closeBiStream(GrpcConnection.java:205)
at com.alibaba.nacos.core.remote.grpc.GrpcConnection.close(GrpcConnection.java:190)
at com.alibaba.nacos.core.remote.ConnectionManager.unregister(ConnectionManager.java:158)
at com.alibaba.nacos.core.remote.grpc.AddressTransportFilter.transportTerminated(AddressTransportFilter.java:77)
at io.grpc.internal.ServerImpl$ServerTransportListenerImpl.transportTerminated(ServerImpl.java:456)
at io.grpc.netty.shaded.io.grpc.netty.NettyServerTransport.notifyTerminated(NettyServerTransport.java:213)
at io.grpc.netty.shaded.io.grpc.netty.NettyServerTransport.access$100(NettyServerTransport.java:51)
at io.grpc.netty.shaded.io.grpc.netty.NettyServerTransport$1TerminationNotifier.operationComplete(NettyServerTransport.java:147)
at io.grpc.netty.shaded.io.grpc.netty.NettyServerTransport$1TerminationNotifier.operationComplete(NettyServerTransport.java:140)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.notifyListeners0(DefaultPromise.java:583)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:559)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.setSuccess0(DefaultPromise.java:625)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.trySuccess(DefaultPromise.java:105)
at io.grpc.netty.shaded.io.netty.channel.DefaultChannelPromise.trySuccess(DefaultChannelPromise.java:84)
at io.grpc.netty.shaded.io.netty.channel.AbstractChannel$CloseFuture.setClosed(AbstractChannel.java:1164)
at io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.doClose0(AbstractChannel.java:755)
at io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.close(AbstractChannel.java:731)
at io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.close(AbstractChannel.java:620)
at io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollChannel$AbstractEpollUnsafe.shutdownInput(AbstractEpollChannel.java:522)
at io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady(AbstractEpollStreamChannel.java:823)
at io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.processReady(EpollEventLoop.java:509)
at io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:407)
at io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
at io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.lang.Thread.run(Thread.java:750)
2025-06-05 18:54:12,632 INFO [1749118439082_172.21.0.1_33538]client disconnected,clear config listen context
2025-06-05 18:54:12,673 INFO Connection transportTerminated,connectionId = 1749118310105_172.21.0.1_55718
2025-06-05 18:54:12,674 WARN [1749118310105_172.21.0.1_55718] connection close bi stream exception : {}
java.lang.IllegalStateException: call already closed
at com.google.common.base.Preconditions.checkState(Preconditions.java:512)
at io.grpc.internal.ServerCallImpl.closeInternal(ServerCallImpl.java:218)
at io.grpc.internal.ServerCallImpl.close(ServerCallImpl.java:213)
at io.grpc.stub.ServerCalls$ServerCallStreamObserverImpl.onCompleted(ServerCalls.java:395)
at com.alibaba.nacos.core.remote.grpc.GrpcConnection.closeBiStream(GrpcConnection.java:205)
at com.alibaba.nacos.core.remote.grpc.GrpcConnection.close(GrpcConnection.java:190)
at com.alibaba.nacos.core.remote.ConnectionManager.unregister(ConnectionManager.java:158)
at com.alibaba.nacos.core.remote.grpc.AddressTransportFilter.transportTerminated(AddressTransportFilter.java:77)
at io.grpc.internal.ServerImpl$ServerTransportListenerImpl.transportTerminated(ServerImpl.java:456)
at io.grpc.netty.shaded.io.grpc.netty.NettyServerTransport.notifyTerminated(NettyServerTransport.java:213)
at io.grpc.netty.shaded.io.grpc.netty.NettyServerTransport.access$100(NettyServerTransport.java:51)
at io.grpc.netty.shaded.io.grpc.netty.NettyServerTransport$1TerminationNotifier.operationComplete(NettyServerTransport.java:147)
at io.grpc.netty.shaded.io.grpc.netty.NettyServerTransport$1TerminationNotifier.operationComplete(NettyServerTransport.java:140)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.notifyListeners0(DefaultPromise.java:583)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:559)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.setSuccess0(DefaultPromise.java:625)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.trySuccess(DefaultPromise.java:105)
at io.grpc.netty.shaded.io.netty.channel.DefaultChannelPromise.trySuccess(DefaultChannelPromise.java:84)
at io.grpc.netty.shaded.io.netty.channel.AbstractChannel$CloseFuture.setClosed(AbstractChannel.java:1164)
at io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.doClose0(AbstractChannel.java:755)
at io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.close(AbstractChannel.java:731)
at io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.close(AbstractChannel.java:620)
at io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollChannel$AbstractEpollUnsafe.shutdownInput(AbstractEpollChannel.java:522)
at io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady(AbstractEpollStreamChannel.java:823)
at io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.processReady(EpollEventLoop.java:509)
at io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:407)
at io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
at io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.lang.Thread.run(Thread.java:750)
2025-06-05 18:54:12,677 INFO [1749118310105_172.21.0.1_55718]client disconnected,clear config listen context
2025-06-05 18:54:13,168 INFO Connection transportTerminated,connectionId = 1749118233359_172.21.0.1_41996
2025-06-05 18:54:13,171 INFO [1749118233359_172.21.0.1_41996]client disconnected,clear config listen context
2025-06-05 18:54:13,195 INFO Connection transportTerminated,connectionId = 1749118272517_172.21.0.1_44198
2025-06-05 18:54:13,197 INFO [1749118272517_172.21.0.1_44198]client disconnected,clear config listen context
2025-06-05 18:54:13,371 INFO Connection transportTerminated,connectionId = 1749118412532_172.21.0.1_50000
2025-06-05 18:54:13,372 INFO [1749118412532_172.21.0.1_50000]client disconnected,clear config listen context

View File

@@ -0,0 +1,198 @@
2025-06-09 16:39:25,306 INFO Connection transportReady,connectionId = 1749458365306_172.21.0.1_36354
2025-06-09 16:39:40,901 INFO Connection transportReady,connectionId = 1749458380901_172.21.0.1_44348
2025-06-09 16:40:41,147 INFO Connection transportReady,connectionId = 1749458441147_172.21.0.1_37762
2025-06-09 16:41:03,528 INFO Connection transportTerminated,connectionId = 1749458441147_172.21.0.1_37762
2025-06-09 16:41:03,574 INFO [1749458441147_172.21.0.1_37762]client disconnected,clear config listen context
2025-06-09 16:41:17,293 INFO Connection transportReady,connectionId = 1749458477293_172.21.0.1_47430
2025-06-09 16:41:46,392 INFO Connection transportReady,connectionId = 1749458506391_172.21.0.1_45666
2025-06-09 16:41:52,640 INFO Connection transportReady,connectionId = 1749458512640_172.21.0.1_38770
2025-06-09 16:42:08,608 INFO Connection transportReady,connectionId = 1749458528608_172.21.0.1_49848
2025-06-09 16:42:20,340 INFO Connection transportReady,connectionId = 1749458540340_172.21.0.1_48948
2025-06-09 16:42:34,670 INFO Connection transportReady,connectionId = 1749458554670_172.21.0.1_37300
2025-06-09 17:24:02,206 INFO Connection transportTerminated,connectionId = 1749458380901_172.21.0.1_44348
2025-06-09 17:24:02,215 WARN [1749458380901_172.21.0.1_44348] connection close bi stream exception : {}
java.lang.IllegalStateException: call already closed
at com.google.common.base.Preconditions.checkState(Preconditions.java:512)
at io.grpc.internal.ServerCallImpl.closeInternal(ServerCallImpl.java:218)
at io.grpc.internal.ServerCallImpl.close(ServerCallImpl.java:213)
at io.grpc.stub.ServerCalls$ServerCallStreamObserverImpl.onCompleted(ServerCalls.java:395)
at com.alibaba.nacos.core.remote.grpc.GrpcConnection.closeBiStream(GrpcConnection.java:205)
at com.alibaba.nacos.core.remote.grpc.GrpcConnection.close(GrpcConnection.java:190)
at com.alibaba.nacos.core.remote.ConnectionManager.unregister(ConnectionManager.java:158)
at com.alibaba.nacos.core.remote.grpc.AddressTransportFilter.transportTerminated(AddressTransportFilter.java:77)
at io.grpc.internal.ServerImpl$ServerTransportListenerImpl.transportTerminated(ServerImpl.java:456)
at io.grpc.netty.shaded.io.grpc.netty.NettyServerTransport.notifyTerminated(NettyServerTransport.java:213)
at io.grpc.netty.shaded.io.grpc.netty.NettyServerTransport.access$100(NettyServerTransport.java:51)
at io.grpc.netty.shaded.io.grpc.netty.NettyServerTransport$1TerminationNotifier.operationComplete(NettyServerTransport.java:147)
at io.grpc.netty.shaded.io.grpc.netty.NettyServerTransport$1TerminationNotifier.operationComplete(NettyServerTransport.java:140)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.notifyListeners0(DefaultPromise.java:583)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:559)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.setSuccess0(DefaultPromise.java:625)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.trySuccess(DefaultPromise.java:105)
at io.grpc.netty.shaded.io.netty.channel.DefaultChannelPromise.trySuccess(DefaultChannelPromise.java:84)
at io.grpc.netty.shaded.io.netty.channel.AbstractChannel$CloseFuture.setClosed(AbstractChannel.java:1164)
at io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.doClose0(AbstractChannel.java:755)
at io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.close(AbstractChannel.java:731)
at io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.close(AbstractChannel.java:620)
at io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollChannel$AbstractEpollUnsafe.shutdownInput(AbstractEpollChannel.java:522)
at io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady(AbstractEpollStreamChannel.java:823)
at io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.processReady(EpollEventLoop.java:509)
at io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:407)
at io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
at io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.lang.Thread.run(Thread.java:750)
2025-06-09 17:24:02,220 INFO [1749458380901_172.21.0.1_44348]client disconnected,clear config listen context
2025-06-09 17:24:02,770 INFO Connection transportTerminated,connectionId = 1749458365306_172.21.0.1_36354
2025-06-09 17:24:02,775 INFO [1749458365306_172.21.0.1_36354]client disconnected,clear config listen context
2025-06-09 17:24:05,995 INFO Connection transportTerminated,connectionId = 1749458554670_172.21.0.1_37300
2025-06-09 17:24:05,997 WARN [1749458554670_172.21.0.1_37300] connection close bi stream exception : {}
java.lang.IllegalStateException: call already closed
at com.google.common.base.Preconditions.checkState(Preconditions.java:512)
at io.grpc.internal.ServerCallImpl.closeInternal(ServerCallImpl.java:218)
at io.grpc.internal.ServerCallImpl.close(ServerCallImpl.java:213)
at io.grpc.stub.ServerCalls$ServerCallStreamObserverImpl.onCompleted(ServerCalls.java:395)
at com.alibaba.nacos.core.remote.grpc.GrpcConnection.closeBiStream(GrpcConnection.java:205)
at com.alibaba.nacos.core.remote.grpc.GrpcConnection.close(GrpcConnection.java:190)
at com.alibaba.nacos.core.remote.ConnectionManager.unregister(ConnectionManager.java:158)
at com.alibaba.nacos.core.remote.grpc.AddressTransportFilter.transportTerminated(AddressTransportFilter.java:77)
at io.grpc.internal.ServerImpl$ServerTransportListenerImpl.transportTerminated(ServerImpl.java:456)
at io.grpc.netty.shaded.io.grpc.netty.NettyServerTransport.notifyTerminated(NettyServerTransport.java:213)
at io.grpc.netty.shaded.io.grpc.netty.NettyServerTransport.access$100(NettyServerTransport.java:51)
at io.grpc.netty.shaded.io.grpc.netty.NettyServerTransport$1TerminationNotifier.operationComplete(NettyServerTransport.java:147)
at io.grpc.netty.shaded.io.grpc.netty.NettyServerTransport$1TerminationNotifier.operationComplete(NettyServerTransport.java:140)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.notifyListeners0(DefaultPromise.java:583)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:559)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.setSuccess0(DefaultPromise.java:625)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.trySuccess(DefaultPromise.java:105)
at io.grpc.netty.shaded.io.netty.channel.DefaultChannelPromise.trySuccess(DefaultChannelPromise.java:84)
at io.grpc.netty.shaded.io.netty.channel.AbstractChannel$CloseFuture.setClosed(AbstractChannel.java:1164)
at io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.doClose0(AbstractChannel.java:755)
at io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.close(AbstractChannel.java:731)
at io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.close(AbstractChannel.java:620)
at io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollChannel$AbstractEpollUnsafe.shutdownInput(AbstractEpollChannel.java:522)
at io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady(AbstractEpollStreamChannel.java:823)
at io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.processReady(EpollEventLoop.java:509)
at io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:407)
at io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
at io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.lang.Thread.run(Thread.java:750)
2025-06-09 17:24:06,003 INFO [1749458554670_172.21.0.1_37300]client disconnected,clear config listen context
2025-06-09 17:24:06,521 INFO Connection transportTerminated,connectionId = 1749458528608_172.21.0.1_49848
2025-06-09 17:24:06,524 INFO [1749458528608_172.21.0.1_49848]client disconnected,clear config listen context
2025-06-09 17:24:08,579 INFO Connection transportTerminated,connectionId = 1749458506391_172.21.0.1_45666
2025-06-09 17:24:08,581 WARN [1749458506391_172.21.0.1_45666] connection close bi stream exception : {}
java.lang.IllegalStateException: call already closed
at com.google.common.base.Preconditions.checkState(Preconditions.java:512)
at io.grpc.internal.ServerCallImpl.closeInternal(ServerCallImpl.java:218)
at io.grpc.internal.ServerCallImpl.close(ServerCallImpl.java:213)
at io.grpc.stub.ServerCalls$ServerCallStreamObserverImpl.onCompleted(ServerCalls.java:395)
at com.alibaba.nacos.core.remote.grpc.GrpcConnection.closeBiStream(GrpcConnection.java:205)
at com.alibaba.nacos.core.remote.grpc.GrpcConnection.close(GrpcConnection.java:190)
at com.alibaba.nacos.core.remote.ConnectionManager.unregister(ConnectionManager.java:158)
at com.alibaba.nacos.core.remote.grpc.AddressTransportFilter.transportTerminated(AddressTransportFilter.java:77)
at io.grpc.internal.ServerImpl$ServerTransportListenerImpl.transportTerminated(ServerImpl.java:456)
at io.grpc.netty.shaded.io.grpc.netty.NettyServerTransport.notifyTerminated(NettyServerTransport.java:213)
at io.grpc.netty.shaded.io.grpc.netty.NettyServerTransport.access$100(NettyServerTransport.java:51)
at io.grpc.netty.shaded.io.grpc.netty.NettyServerTransport$1TerminationNotifier.operationComplete(NettyServerTransport.java:147)
at io.grpc.netty.shaded.io.grpc.netty.NettyServerTransport$1TerminationNotifier.operationComplete(NettyServerTransport.java:140)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.notifyListeners0(DefaultPromise.java:583)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:559)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.setSuccess0(DefaultPromise.java:625)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.trySuccess(DefaultPromise.java:105)
at io.grpc.netty.shaded.io.netty.channel.DefaultChannelPromise.trySuccess(DefaultChannelPromise.java:84)
at io.grpc.netty.shaded.io.netty.channel.AbstractChannel$CloseFuture.setClosed(AbstractChannel.java:1164)
at io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.doClose0(AbstractChannel.java:755)
at io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.close(AbstractChannel.java:731)
at io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.close(AbstractChannel.java:620)
at io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollChannel$AbstractEpollUnsafe.shutdownInput(AbstractEpollChannel.java:522)
at io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady(AbstractEpollStreamChannel.java:823)
at io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.processReady(EpollEventLoop.java:509)
at io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:407)
at io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
at io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.lang.Thread.run(Thread.java:750)
2025-06-09 17:24:08,584 INFO [1749458506391_172.21.0.1_45666]client disconnected,clear config listen context
2025-06-09 17:24:08,014 INFO Connection transportTerminated,connectionId = 1749458477293_172.21.0.1_47430
2025-06-09 17:24:08,019 INFO [1749458477293_172.21.0.1_47430]client disconnected,clear config listen context
2025-06-09 17:24:11,800 INFO Connection transportTerminated,connectionId = 1749458540340_172.21.0.1_48948
2025-06-09 17:24:11,801 WARN [1749458540340_172.21.0.1_48948] connection close bi stream exception : {}
java.lang.IllegalStateException: call already closed
at com.google.common.base.Preconditions.checkState(Preconditions.java:512)
at io.grpc.internal.ServerCallImpl.closeInternal(ServerCallImpl.java:218)
at io.grpc.internal.ServerCallImpl.close(ServerCallImpl.java:213)
at io.grpc.stub.ServerCalls$ServerCallStreamObserverImpl.onCompleted(ServerCalls.java:395)
at com.alibaba.nacos.core.remote.grpc.GrpcConnection.closeBiStream(GrpcConnection.java:205)
at com.alibaba.nacos.core.remote.grpc.GrpcConnection.close(GrpcConnection.java:190)
at com.alibaba.nacos.core.remote.ConnectionManager.unregister(ConnectionManager.java:158)
at com.alibaba.nacos.core.remote.grpc.AddressTransportFilter.transportTerminated(AddressTransportFilter.java:77)
at io.grpc.internal.ServerImpl$ServerTransportListenerImpl.transportTerminated(ServerImpl.java:456)
at io.grpc.netty.shaded.io.grpc.netty.NettyServerTransport.notifyTerminated(NettyServerTransport.java:213)
at io.grpc.netty.shaded.io.grpc.netty.NettyServerTransport.access$100(NettyServerTransport.java:51)
at io.grpc.netty.shaded.io.grpc.netty.NettyServerTransport$1TerminationNotifier.operationComplete(NettyServerTransport.java:147)
at io.grpc.netty.shaded.io.grpc.netty.NettyServerTransport$1TerminationNotifier.operationComplete(NettyServerTransport.java:140)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.notifyListeners0(DefaultPromise.java:583)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:559)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.setSuccess0(DefaultPromise.java:625)
at io.grpc.netty.shaded.io.netty.util.concurrent.DefaultPromise.trySuccess(DefaultPromise.java:105)
at io.grpc.netty.shaded.io.netty.channel.DefaultChannelPromise.trySuccess(DefaultChannelPromise.java:84)
at io.grpc.netty.shaded.io.netty.channel.AbstractChannel$CloseFuture.setClosed(AbstractChannel.java:1164)
at io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.doClose0(AbstractChannel.java:755)
at io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.close(AbstractChannel.java:731)
at io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AbstractUnsafe.close(AbstractChannel.java:620)
at io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollChannel$AbstractEpollUnsafe.shutdownInput(AbstractEpollChannel.java:522)
at io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady(AbstractEpollStreamChannel.java:823)
at io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.processReady(EpollEventLoop.java:509)
at io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:407)
at io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
at io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.lang.Thread.run(Thread.java:750)
2025-06-09 17:24:11,805 INFO [1749458540340_172.21.0.1_48948]client disconnected,clear config listen context
2025-06-09 17:24:12,310 INFO Connection transportTerminated,connectionId = 1749458512640_172.21.0.1_38770
2025-06-09 17:24:12,313 INFO [1749458512640_172.21.0.1_38770]client disconnected,clear config listen context

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,492 @@
2025-06-06 08:38:54,875 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:39:14,931 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:39:34,807 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:39:55,643 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:40:13,704 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:40:33,731 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:40:53,372 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:41:11,073 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:41:31,627 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:41:51,180 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:42:09,345 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:42:30,407 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:42:49,460 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:43:07,724 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:43:26,456 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:43:47,987 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:44:07,077 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:44:25,849 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:44:47,154 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:45:05,859 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:45:25,016 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:45:45,904 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:46:04,974 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:46:24,371 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:46:42,921 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:47:03,926 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:47:24,372 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:47:43,776 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:48:04,462 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:48:23,261 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:48:42,434 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:49:02,192 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:49:24,153 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:49:48,318 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:50:08,728 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:50:30,828 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:50:52,525 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:51:12,490 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:51:31,044 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:51:56,562 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:52:20,935 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:52:43,267 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:53:04,850 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:53:33,884 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:53:55,430 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:54:15,030 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:54:37,644 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:55:01,758 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:55:19,677 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:55:39,207 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:56:00,654 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:56:20,438 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:56:38,633 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:56:57,092 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:57:18,114 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:57:36,731 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:57:55,110 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:58:16,502 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:58:35,311 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:58:53,734 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:59:15,777 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:59:37,594 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 08:59:59,094 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:00:27,372 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:00:47,917 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:01:06,433 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:01:28,106 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:01:47,145 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:02:05,835 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:02:26,807 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:02:45,380 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:03:03,433 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:03:21,724 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:03:42,646 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:04:00,849 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:04:19,438 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:04:41,301 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:05:00,385 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:05:18,937 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:05:39,670 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:05:58,002 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:06:16,999 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:06:35,753 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:06:57,385 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:07:16,243 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:07:35,182 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:07:56,652 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:08:15,535 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:08:34,579 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:08:53,887 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:09:16,194 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:09:36,444 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:09:56,190 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:10:15,640 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:10:37,787 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:10:56,515 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:11:16,074 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:11:37,893 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:11:57,516 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:12:17,593 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:12:37,240 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:12:59,553 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:13:18,867 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:13:37,989 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:13:56,593 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:14:18,385 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:14:37,226 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:14:56,849 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:15:16,050 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:15:37,061 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:15:55,263 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:16:14,103 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:16:34,978 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:16:53,412 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:17:11,609 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:17:32,771 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:17:51,089 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:18:09,871 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:18:30,855 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:18:51,692 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:19:07,481 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:19:26,862 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:19:48,064 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:20:06,853 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:20:26,370 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:20:45,256 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:21:06,513 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:21:24,994 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:21:43,870 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:22:05,088 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:22:24,160 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:22:43,313 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:23:01,610 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:23:23,188 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:23:43,730 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:24:02,434 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:24:21,588 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:24:41,664 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:24:59,758 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:25:20,351 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:25:40,022 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:25:58,380 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:26:17,234 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:26:38,397 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:26:57,156 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:27:15,821 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:27:36,432 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:27:55,484 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:28:13,589 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:28:34,421 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:28:53,023 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:29:11,193 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:29:32,182 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:29:51,186 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:30:09,792 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:30:28,785 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:30:50,693 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:31:10,397 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:31:30,513 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:31:50,371 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:32:13,036 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:32:32,719 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:32:51,337 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:33:12,749 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:33:31,259 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:33:49,330 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:34:07,548 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:34:28,592 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:34:47,633 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:35:06,027 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:35:26,683 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:35:45,448 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:36:04,290 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:36:25,180 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:36:43,867 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:37:02,437 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:37:21,227 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:37:42,471 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:38:01,196 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:38:19,806 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:38:41,234 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:38:59,702 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:39:18,418 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:39:38,384 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:39:58,418 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:40:16,995 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:40:35,697 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:40:56,852 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:41:15,062 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:41:33,254 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:41:54,296 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:42:12,995 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:42:32,036 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:42:50,381 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:43:11,009 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:43:28,911 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:43:47,542 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:44:09,080 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:44:27,747 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:44:45,996 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:45:06,960 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:45:25,206 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:45:43,447 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:46:01,887 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:46:23,106 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:46:41,653 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:46:59,867 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:47:21,146 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:47:40,219 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:47:58,672 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:48:17,525 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:48:39,344 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:48:57,723 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:49:15,808 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:49:36,923 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:49:55,665 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:50:14,610 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:50:33,199 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:50:54,030 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:51:12,951 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:51:31,755 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:51:52,863 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:52:11,116 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:52:29,874 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:52:51,101 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:53:09,682 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:53:28,179 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:53:46,684 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:54:07,561 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:54:25,729 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:54:44,319 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:55:05,304 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:55:24,058 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:55:43,469 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:56:03,037 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:56:24,727 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:56:43,500 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:57:01,764 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:57:23,018 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:57:41,518 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:57:59,707 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:58:18,689 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:58:39,779 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:58:58,165 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:59:16,834 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-06 09:59:38,175 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager

View File

@@ -0,0 +1,370 @@
2025-06-09 16:19:04,978 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 16:19:25,745 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 16:19:28,954 INFO [ClientConnectionEventListenerRegistry] registry listener - ConfigConnectionEventListener
2025-06-09 16:19:29,012 INFO Nacos GrpcSdkServer Rpc server starting at port 9848
2025-06-09 16:19:29,469 INFO Load ProtocolNegotiatorBuilder com.alibaba.nacos.core.remote.grpc.negotiator.tls.SdkDefaultTlsProtocolNegotiatorBuilder for type DEFAULT_TLS
2025-06-09 16:19:29,471 INFO Load ProtocolNegotiatorBuilder com.alibaba.nacos.core.remote.grpc.negotiator.tls.ClusterDefaultTlsProtocolNegotiatorBuilder for type CLUSTER_DEFAULT_TLS
2025-06-09 16:19:29,472 WARN Not found ProtocolNegotiatorBuilder for type nacos.remote.server.rpc.protocol.negotiator.type, will use default type nacos.remote.server.rpc.protocol.negotiator.type
2025-06-09 16:19:29,479 WARN Recommended use 'nacos.remote.server.grpc.sdk.max-inbound-message-size' property instead 'nacos.remote.server.grpc.maxinbound.message.size', now property value is 10485760
2025-06-09 16:19:29,857 INFO Ssl Context auto refresh is not supported.
2025-06-09 16:19:29,858 INFO Ssl Context auto refresh is not supported.
2025-06-09 16:19:29,859 INFO RpcServerSslContextRefresher initialization completed.
2025-06-09 16:19:29,859 INFO Nacos GrpcSdkServer Rpc server started at port 9848
2025-06-09 16:19:29,862 INFO Nacos GrpcClusterServer Rpc server starting at port 9849
2025-06-09 16:19:29,865 WARN Not found ProtocolNegotiatorBuilder for type nacos.remote.cluster.server.rpc.protocol.negotiator.type, will use default type nacos.remote.cluster.server.rpc.protocol.negotiator.type
2025-06-09 16:19:29,866 WARN Recommended use 'nacos.remote.server.grpc.cluster.max-inbound-message-size' property instead 'nacos.remote.server.grpc.maxinbound.message.size', now property value is 10485760
2025-06-09 16:19:29,870 INFO Nacos GrpcClusterServer Rpc server started at port 9849
2025-06-09 16:19:29,916 INFO [ClientConnectionEventListenerRegistry] registry listener - RpcAckCallbackInitorOrCleaner
2025-06-09 16:26:36,784 INFO Nacos GrpcClusterServer Rpc server stopping
2025-06-09 16:26:36,785 INFO Nacos GrpcSdkServer Rpc server stopping
2025-06-09 16:26:36,816 INFO Nacos GrpcSdkServer Rpc server stopped successfully...
2025-06-09 16:26:36,816 INFO Nacos GrpcClusterServer Rpc server stopped successfully...
2025-06-09 16:26:47,304 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 16:26:50,555 INFO [ClientConnectionEventListenerRegistry] registry listener - ConfigConnectionEventListener
2025-06-09 16:26:50,615 INFO Nacos GrpcSdkServer Rpc server starting at port 9848
2025-06-09 16:26:50,927 INFO Load ProtocolNegotiatorBuilder com.alibaba.nacos.core.remote.grpc.negotiator.tls.SdkDefaultTlsProtocolNegotiatorBuilder for type DEFAULT_TLS
2025-06-09 16:26:50,929 INFO Load ProtocolNegotiatorBuilder com.alibaba.nacos.core.remote.grpc.negotiator.tls.ClusterDefaultTlsProtocolNegotiatorBuilder for type CLUSTER_DEFAULT_TLS
2025-06-09 16:26:50,930 WARN Not found ProtocolNegotiatorBuilder for type nacos.remote.server.rpc.protocol.negotiator.type, will use default type nacos.remote.server.rpc.protocol.negotiator.type
2025-06-09 16:26:50,940 WARN Recommended use 'nacos.remote.server.grpc.sdk.max-inbound-message-size' property instead 'nacos.remote.server.grpc.maxinbound.message.size', now property value is 10485760
2025-06-09 16:26:51,255 INFO Ssl Context auto refresh is not supported.
2025-06-09 16:26:51,257 INFO Ssl Context auto refresh is not supported.
2025-06-09 16:26:51,257 INFO RpcServerSslContextRefresher initialization completed.
2025-06-09 16:26:51,258 INFO Nacos GrpcSdkServer Rpc server started at port 9848
2025-06-09 16:26:51,262 INFO Nacos GrpcClusterServer Rpc server starting at port 9849
2025-06-09 16:26:51,264 WARN Not found ProtocolNegotiatorBuilder for type nacos.remote.cluster.server.rpc.protocol.negotiator.type, will use default type nacos.remote.cluster.server.rpc.protocol.negotiator.type
2025-06-09 16:26:51,266 WARN Recommended use 'nacos.remote.server.grpc.cluster.max-inbound-message-size' property instead 'nacos.remote.server.grpc.maxinbound.message.size', now property value is 10485760
2025-06-09 16:26:51,272 INFO Nacos GrpcClusterServer Rpc server started at port 9849
2025-06-09 16:26:51,319 INFO [ClientConnectionEventListenerRegistry] registry listener - RpcAckCallbackInitorOrCleaner
2025-06-09 16:34:53,651 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 16:35:14,579 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 16:35:35,343 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 16:35:38,980 INFO [ClientConnectionEventListenerRegistry] registry listener - ConfigConnectionEventListener
2025-06-09 16:35:39,046 INFO Nacos GrpcSdkServer Rpc server starting at port 9848
2025-06-09 16:35:39,449 INFO Load ProtocolNegotiatorBuilder com.alibaba.nacos.core.remote.grpc.negotiator.tls.SdkDefaultTlsProtocolNegotiatorBuilder for type DEFAULT_TLS
2025-06-09 16:35:39,451 INFO Load ProtocolNegotiatorBuilder com.alibaba.nacos.core.remote.grpc.negotiator.tls.ClusterDefaultTlsProtocolNegotiatorBuilder for type CLUSTER_DEFAULT_TLS
2025-06-09 16:35:39,452 WARN Not found ProtocolNegotiatorBuilder for type nacos.remote.server.rpc.protocol.negotiator.type, will use default type nacos.remote.server.rpc.protocol.negotiator.type
2025-06-09 16:35:39,458 WARN Recommended use 'nacos.remote.server.grpc.sdk.max-inbound-message-size' property instead 'nacos.remote.server.grpc.maxinbound.message.size', now property value is 10485760
2025-06-09 16:35:39,460 INFO Ssl Context auto refresh is not supported.
2025-06-09 16:35:39,461 INFO Ssl Context auto refresh is not supported.
2025-06-09 16:35:39,462 INFO RpcServerSslContextRefresher initialization completed.
2025-06-09 16:35:39,463 INFO Nacos GrpcSdkServer Rpc server started at port 9848
2025-06-09 16:35:39,467 INFO Nacos GrpcClusterServer Rpc server starting at port 9849
2025-06-09 16:35:39,469 WARN Not found ProtocolNegotiatorBuilder for type nacos.remote.cluster.server.rpc.protocol.negotiator.type, will use default type nacos.remote.cluster.server.rpc.protocol.negotiator.type
2025-06-09 16:35:39,470 WARN Recommended use 'nacos.remote.server.grpc.cluster.max-inbound-message-size' property instead 'nacos.remote.server.grpc.maxinbound.message.size', now property value is 10485760
2025-06-09 16:35:39,474 INFO Nacos GrpcClusterServer Rpc server started at port 9849
2025-06-09 16:35:39,516 INFO [ClientConnectionEventListenerRegistry] registry listener - RpcAckCallbackInitorOrCleaner
2025-06-09 18:07:34,708 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:07:56,453 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:08:17,019 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:08:38,609 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:08:59,849 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:09:19,998 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:09:40,041 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:09:59,961 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:10:19,964 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:10:39,683 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:11:00,528 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:11:20,565 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:11:40,810 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:12:00,449 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:12:20,407 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:12:40,902 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:13:01,136 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:13:29,960 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:13:50,055 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:14:16,633 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:14:44,957 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:17:47,725 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:18:18,752 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:18:41,835 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:19:01,647 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:19:21,431 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:19:41,476 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:20:02,111 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:20:23,752 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:20:43,837 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:21:03,516 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:21:23,364 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:21:43,057 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:22:02,785 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:22:22,985 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:22:42,971 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:23:02,698 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:23:22,484 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:23:42,413 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:24:02,184 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:24:21,842 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:24:41,690 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:25:01,443 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:25:21,202 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:25:41,124 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:26:00,891 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:26:20,766 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:26:40,639 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:27:00,419 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:27:20,117 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:27:39,765 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:27:59,497 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:28:19,493 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:28:39,265 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:28:59,167 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:29:19,385 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:29:39,305 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:29:59,168 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:30:19,028 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:30:38,607 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:30:58,373 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:31:18,300 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:31:38,192 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:31:57,870 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:32:17,354 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:32:37,165 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:32:56,955 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:33:16,774 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:33:36,401 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:33:56,051 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:34:15,822 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:34:35,562 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:34:55,346 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:35:15,261 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:35:34,932 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:35:54,535 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:36:14,393 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:36:34,036 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:36:53,671 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:37:13,514 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:37:33,468 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:37:36,636 INFO [ClientConnectionEventListenerRegistry] registry listener - ConfigConnectionEventListener
2025-06-09 18:37:36,687 INFO Nacos GrpcSdkServer Rpc server starting at port 9848
2025-06-09 18:37:37,076 INFO Load ProtocolNegotiatorBuilder com.alibaba.nacos.core.remote.grpc.negotiator.tls.SdkDefaultTlsProtocolNegotiatorBuilder for type DEFAULT_TLS
2025-06-09 18:37:37,078 INFO Load ProtocolNegotiatorBuilder com.alibaba.nacos.core.remote.grpc.negotiator.tls.ClusterDefaultTlsProtocolNegotiatorBuilder for type CLUSTER_DEFAULT_TLS
2025-06-09 18:37:37,079 WARN Not found ProtocolNegotiatorBuilder for type nacos.remote.server.rpc.protocol.negotiator.type, will use default type nacos.remote.server.rpc.protocol.negotiator.type
2025-06-09 18:37:37,083 WARN Recommended use 'nacos.remote.server.grpc.sdk.max-inbound-message-size' property instead 'nacos.remote.server.grpc.maxinbound.message.size', now property value is 10485760
2025-06-09 18:37:37,417 INFO Ssl Context auto refresh is not supported.
2025-06-09 18:37:37,418 INFO Ssl Context auto refresh is not supported.
2025-06-09 18:37:37,418 INFO RpcServerSslContextRefresher initialization completed.
2025-06-09 18:37:37,419 INFO Nacos GrpcSdkServer Rpc server started at port 9848
2025-06-09 18:37:37,423 INFO Nacos GrpcClusterServer Rpc server starting at port 9849
2025-06-09 18:37:37,425 WARN Not found ProtocolNegotiatorBuilder for type nacos.remote.cluster.server.rpc.protocol.negotiator.type, will use default type nacos.remote.cluster.server.rpc.protocol.negotiator.type
2025-06-09 18:37:37,427 WARN Recommended use 'nacos.remote.server.grpc.cluster.max-inbound-message-size' property instead 'nacos.remote.server.grpc.maxinbound.message.size', now property value is 10485760
2025-06-09 18:37:37,431 INFO Nacos GrpcClusterServer Rpc server started at port 9849
2025-06-09 18:37:37,481 INFO [ClientConnectionEventListenerRegistry] registry listener - RpcAckCallbackInitorOrCleaner
2025-06-09 18:56:39,417 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:56:57,628 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:57:17,990 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:57:36,280 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:57:54,220 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:58:11,079 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:58:28,224 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:58:45,996 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:59:02,667 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:59:20,436 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:59:37,618 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 18:59:54,577 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 19:00:12,478 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 19:00:29,264 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 19:00:47,471 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 19:01:04,545 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 19:01:22,148 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 19:01:40,811 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 19:01:58,111 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 19:02:16,158 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 19:02:33,336 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 19:02:50,370 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 19:03:08,585 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 19:03:25,754 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 19:03:44,135 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 19:04:00,843 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 19:04:17,778 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 19:04:35,517 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 19:04:52,352 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 19:05:10,748 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 19:05:28,076 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 19:05:46,491 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 19:06:04,891 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager
2025-06-09 19:06:24,330 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager