feat: 实现 IoT 卡轮询系统(支持千万级卡规模)
All checks were successful
构建并部署到测试环境(无 SSH) / build-and-deploy (push) Successful in 6m35s
All checks were successful
构建并部署到测试环境(无 SSH) / build-and-deploy (push) Successful in 6m35s
实现功能: - 实名状态检查轮询(可配置间隔) - 卡流量检查轮询(支持跨月流量追踪) - 套餐检查与超额自动停机 - 分布式并发控制(Redis 信号量) - 手动触发轮询(单卡/批量/条件筛选) - 数据清理配置与执行 - 告警规则与历史记录 - 实时监控统计(队列/性能/并发) 性能优化: - Redis 缓存卡信息,减少 DB 查询 - Pipeline 批量写入 Redis - 异步流量记录写入 - 渐进式初始化(10万卡/批) 压测工具(scripts/benchmark/): - Mock Gateway 模拟上游服务 - 测试卡生成器 - 配置初始化脚本 - 实时监控脚本 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
63
internal/routes/polling_manual_trigger.go
Normal file
63
internal/routes/polling_manual_trigger.go
Normal file
@@ -0,0 +1,63 @@
|
||||
package routes
|
||||
|
||||
import (
|
||||
"github.com/gofiber/fiber/v2"
|
||||
|
||||
"github.com/break/junhong_cmp_fiber/internal/handler/admin"
|
||||
"github.com/break/junhong_cmp_fiber/internal/model/dto"
|
||||
"github.com/break/junhong_cmp_fiber/pkg/openapi"
|
||||
)
|
||||
|
||||
// registerPollingManualTriggerRoutes 注册轮询手动触发路由
|
||||
func registerPollingManualTriggerRoutes(router fiber.Router, handler *admin.PollingManualTriggerHandler, doc *openapi.Generator, basePath string) {
|
||||
group := router.Group("/polling-manual-trigger")
|
||||
groupPath := basePath + "/polling-manual-trigger"
|
||||
|
||||
Register(group, doc, groupPath, "POST", "/single", handler.TriggerSingle, RouteSpec{
|
||||
Summary: "单卡手动触发",
|
||||
Tags: []string{"轮询管理-手动触发"},
|
||||
Input: new(dto.TriggerSingleReq),
|
||||
Output: nil,
|
||||
Auth: true,
|
||||
})
|
||||
|
||||
Register(group, doc, groupPath, "POST", "/batch", handler.TriggerBatch, RouteSpec{
|
||||
Summary: "批量手动触发",
|
||||
Tags: []string{"轮询管理-手动触发"},
|
||||
Input: new(dto.TriggerBatchReq),
|
||||
Output: new(dto.ManualTriggerLogResp),
|
||||
Auth: true,
|
||||
})
|
||||
|
||||
Register(group, doc, groupPath, "POST", "/by-condition", handler.TriggerByCondition, RouteSpec{
|
||||
Summary: "条件筛选触发",
|
||||
Tags: []string{"轮询管理-手动触发"},
|
||||
Input: new(dto.TriggerByConditionReq),
|
||||
Output: new(dto.ManualTriggerLogResp),
|
||||
Auth: true,
|
||||
})
|
||||
|
||||
Register(group, doc, groupPath, "GET", "/status", handler.GetStatus, RouteSpec{
|
||||
Summary: "获取手动触发状态",
|
||||
Tags: []string{"轮询管理-手动触发"},
|
||||
Input: nil,
|
||||
Output: new(dto.ManualTriggerStatusResp),
|
||||
Auth: true,
|
||||
})
|
||||
|
||||
Register(group, doc, groupPath, "GET", "/history", handler.ListHistory, RouteSpec{
|
||||
Summary: "获取手动触发历史",
|
||||
Tags: []string{"轮询管理-手动触发"},
|
||||
Input: new(dto.ListManualTriggerLogReq),
|
||||
Output: new(dto.ManualTriggerLogListResp),
|
||||
Auth: true,
|
||||
})
|
||||
|
||||
Register(group, doc, groupPath, "POST", "/cancel", handler.CancelTrigger, RouteSpec{
|
||||
Summary: "取消手动触发任务",
|
||||
Tags: []string{"轮询管理-手动触发"},
|
||||
Input: new(dto.CancelTriggerReq),
|
||||
Output: nil,
|
||||
Auth: true,
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user