在缓存任务键值中增加集群信息

This commit is contained in:
GoEdgeLab
2024-03-10 11:24:50 +08:00
parent ad26498a8d
commit 57f22f4fb2
3 changed files with 56 additions and 34 deletions

View File

@@ -799,7 +799,9 @@
"responseMessageName": "FindAdminWithUsernameResponse",
"code": "rpc findAdminWithUsername(FindAdminWithUsernameRequest) returns (FindAdminWithUsernameResponse);",
"doc": "使用用管理员户名查找管理员信息",
"roles": [],
"roles": [
"admin"
],
"isDeprecated": false
},
{
@@ -20580,7 +20582,7 @@
},
{
"name": "HTTPCacheTaskKey",
"code": "message HTTPCacheTaskKey {\n\tint64 id = 1; // 缓存键ID\n\tint64 taskId = 2; // 任务ID\n\tstring key = 3; // 缓存键\n\tstring type = 4; // 操作类型purge|fetch\n\tstring keyType = 5; // 键类型key|prefix\n\tbool isDone = 6; // 是否已完成\n\tbool isDoing = 9; // 是否执行中\n\tbytes errorsJSON = 7; // 错误信息\n\tint64 nodeClusterId = 8; // 所属集群ID\n}",
"code": "message HTTPCacheTaskKey {\n\tint64 id = 1; // 缓存键ID\n\tint64 taskId = 2; // 任务ID\n\tstring key = 3; // 缓存键\n\tstring type = 4; // 操作类型purge|fetch\n\tstring keyType = 5; // 键类型key|prefix\n\tbool isDone = 6; // 是否已完成\n\tbool isDoing = 9; // 是否执行中\n\tbytes errorsJSON = 7; // 错误信息\n\tint64 nodeClusterId = 8; // 所属集群ID\n\n\tNodeCluster nodeCluster = 30; // 所属集群,不一定有内容\n}",
"doc": ""
},
{